/* WordPress-specific fixes that preserve the original static template layout */
body { margin: 0; }
.category-nav .current-menu-item > a, .category-nav a.nav-active { color: #00b36b; }
.article-main .toc { margin-top: 24px; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 18px; margin: 24px 0; background:#000; }
.video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.products-grid .company-product-card[style*="display: none"] { display: none !important; }
img { max-width: 100%; height: auto; }
.screen-reader-text { position:absolute; left:-9999px; }


/* v3.2.4: Products page alignment fix - keep CMS product cards same as static template */
.products-main .product-shop-layout{
    align-items:start;
}
.products-main .product-results{
    min-width:0;
}
.products-main .product-results h2{
    font-size:22px;
    margin:0 0 18px;
}
.products-main #productsGrid.company-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
    align-items:stretch;
}
.products-main .company-product-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
}
.products-main .company-product-info{
    display:flex;
    flex-direction:column;
    flex:1;
}
.products-main .company-product-info p{
    flex:1;
}
.products-main .company-product-img img{
    max-width:90%;
    width:auto;
}
@media(max-width:900px){
    .products-main .product-shop-layout{
        grid-template-columns:1fr;
    }
    .products-main .product-filter-panel{
        position:static;
    }
}

.thumb-placeholder,.product-image-placeholder{display:flex;align-items:center;justify-content:center;min-height:180px;border:1px dashed #ddd;border-radius:14px;font-weight:700;color:#777;background:#fafafa;}
