.table-responsive.dynamic table,
.table-responsive.dynamic table th,
.table-responsive.dynamic table td,
.table-responsive.dynamic table strong {
    color: white !important;
}

/* Shopify Collection Product Styling */
.shopify-buy__product {
    width: 100% !important;
    max-width: 100% !important;
}

.shopify-buy__product__variant-img {
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive grid for collections */
.shopify-buy__product-set {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Single product should use full width */
.shopify-buy__product-set:has(.shopify-buy__product:only-child) {
    grid-template-columns: 1fr;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .shopify-buy__product-set {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}