/* ===================================== */
/* GLOBAL IMAGE FIX (ALL PAGES) */
/* ===================================== */

/* Make all cards flexible */
.prestige-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===================================== */
/* IMAGE CONTAINER (LIST + HOME) */
/* ===================================== */

.img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    overflow: hidden;
    border-radius: 8px;
}

.img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
}

/* ===================================== */
/* PRODUCT LIST PAGE FIX */
/* ===================================== */

.s-products-list .prestige-card {
    height: 100%;
}

.s-products-list .img {
    height: 220px;
}

/* ===================================== */
/* PRODUCT DETAILS PAGE (MAIN IMAGE) */
/* ===================================== */

[id^="details-slider-"] {
    width: 100%;
}

[id^="details-slider-"] .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

[id^="details-slider-"] img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
}

/* ===================================== */
/* FIX IMAGE STRETCH ANYWHERE */
/* ===================================== */

img {
    max-width: 100%;
    height: auto;
}

/* ===================================== */
/* CONTENT ALIGNMENT */
/* ===================================== */

.prestige-card > .flex {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product_title_color {
    min-height: 48px;
    overflow: hidden;
}

.s-product-card-price {
    margin-top: auto;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media (max-width: 768px) {

    .img {
        height: 180px;
    }

    [id^="details-slider-"] .swiper-slide {
        height: 300px;
    }

    .product_title_color {
        min-height: 40px;
        font-size: 14px;
    }
}