/**
 * Product images always on white — fixes transparent PNG/WebP in browser dark mode.
 */
html {
    color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
    html,
    body {
        background-color: #fafafa !important;
        color: #2c2c2c;
    }
}

/* Image wrappers */
.product_image,
.product_image_minimal,
.img_product,
.main_image,
.product_details_container .main_image,
.product_details_container .thumbnail,
.thumbnail,
.reels-modal__product-img-wrap,
.home-card .img_product {
    background-color: #ffffff !important;
}

/* White behind transparent pixels */
.product_image img,
.product_image_minimal img,
.img_product img,
.main_image img,
.product_details_container .main_image img,
.product_details_container .thumbnail img,
.thumbnail img,
.home-product-card__img,
.reels-modal__product-img,
.cart .items_cart img,
.cart .items_in_cart .items_cart img,
.checkout .ordersummary .item_cart img {
    background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
    .product_image,
    .product_image_minimal,
    .img_product,
    .main_image,
    .product_details_container .main_image,
    .product_details_container .thumbnail,
    .thumbnail,
    .reels-modal__product-img-wrap,
    .home-card .img_product {
        background-color: #ffffff !important;
    }

    .product_image img,
    .product_image_minimal img,
    .img_product img,
    .main_image img,
    .product_details_container .main_image img,
    .product_details_container .thumbnail img,
    .thumbnail img,
    .home-product-card__img,
    .reels-modal__product-img,
    .cart .items_cart img,
    .cart .items_in_cart .items_cart img,
    .checkout .ordersummary .item_cart img {
        background-color: #ffffff !important;
    }
}
