.swiper-featured-container { padding: 0; max-width: 100%; margin: 0 auto; position: relative; }

/* Product Card Styling */
.swiper-featured-container .product-card { text-align: center; background: transparent; padding: 10px; width: 100%; }

/* Image Wrapper & Swap Logic */
.swiper-featured-container .product-card .image-wrapper {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    display: block;
    position: relative;
    height: 250px;
}

.swiper-featured-container .swiper-slide img {
    max-height: 250px !important;
    max-width: unset !important;
}

.swiper-featured-container .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

/* Secondary image (Featured) hidden by default */
.swiper-featured-container .product-card .img-featured {
    opacity: 0;
    z-index: 2;
}

/* Lifestyle image visible by default */
.swiper-featured-container .product-card .img-lifestyle {
    opacity: 1;
    z-index: 1;
}

/* Hover State: Swap Images & Zoom */
.swiper-featured-container .product-card:hover .img-featured {
    opacity: 1;
    transform: scale(1.08);
    max-height: 250px !important;
    object-fit: scale-down;
}
.swiper-featured-container .product-card:hover .img-lifestyle {
    opacity: 0;
    transform: scale(1.08);
}

.swiper-featured-container .product-card h3 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin: 10px 0 5px 0;
    font-family: inherit;
    line-height: 1.2;
}

.swiper-featured-container .product-card .price {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    display: block;
}
.swiper-featured-container .product-card .price ins { text-decoration: none; font-weight: 600; color: #000; }
.swiper-featured-container .product-card .price del { font-size: 12px; margin-right: 5px; opacity: 0.6; }

.swiper-featured-container .swiper-slide { height: auto; margin-right: 0px; }

/* Navigation Controls */
.swiper-featured-container .swiper-button-next,
.swiper-featured-container .swiper-button-prev { color: #333; width: 30px; height: 30px; top: 40%; }
.swiper-featured-container .swiper-button-next::after,
.swiper-featured-container .swiper-button-prev::after { font-size: 16px; font-weight: bold; }

.swiper-featured-container .swiper-pagination { position: relative; margin-top: 30px; bottom: 0 !important; display: none; }
.swiper-featured-container .swiper-pagination-bullet { width: 7px; height: 7px; background: #ccc; opacity: 1; margin: 0 4px !important; }
.swiper-featured-container .swiper-pagination-bullet-active { background: #333; }

@media (max-width: 768px) {
    .swiper-featured-container .swiper-button-next,
    .swiper-featured-container .swiper-button-prev { display: none; }
}
