/**
 * Frontend product images - contain within frame, professional scale
 */

/* Product card: image container = fixed frame, image = contained inside */
.product-card__thumb {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.product-card__thumb img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: transform 0.2s ease;
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.05);
}

/* Product details page: main image & thumbnails - fixed frame, image inside only */
.product-details__thumb-slider .product-details__thumb {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 16px;
}

.product-details__thumb-slider .product-details__thumb img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.product-details__images-slider .product-details__thumb,
.product-details__images-slider .flex-center {
    overflow: hidden;
}

.product-details__images-slider img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Home deal week / banner product images */
.deal-week-box img[alt]:not([alt=""]),
.deal-week-box .banner-product-img,
.banner-item-two__thumb img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.deal-week-box .d-lg-block img {
    max-height: 200px;
}

/* Flash deals & promo banners */
.flash-sales-item__bg,
.promotional-banner img[src*="storage"] {
    object-fit: cover;
}

.promotional-banner .pe-xxl-2 img {
    object-fit: contain;
    max-width: 100%;
    max-height: 180px;
}

/* Home vendors logos */
.popular-products .product-card__thumb img {
    object-fit: contain;
    max-width: 100%;
    max-height: 80px;
}

/* Shop grid: ensure all product card images respect the frame */
.shop .product-card__thumb,
.top-selling-products .product-card__thumb,
.deals-week-slider .product-card__thumb,
.new-arrival__slider .product-card__thumb,
.featured-product-slider .product-card__thumb,
.top-selling-product-slider .product-card__thumb {
    overflow: hidden;
}

.shop .product-card__thumb img,
.top-selling-products .product-card__thumb img,
.deals-week-slider .product-card__thumb img,
.new-arrival__slider .product-card__thumb img,
.featured-product-slider .product-card__thumb img,
.top-selling-product-slider .product-card__thumb img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

@media screen and (max-width: 1199px) {
    .product-card__thumb {
        min-height: 180px;
    }
}

@media screen and (max-width: 575px) {
    .product-card__thumb {
        min-height: 160px;
    }
}
