/* Shop Hero Coverflow Styles */
.shop-hero-slider {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 50px;
    background: radial-gradient(circle at center, #424242 0%, #1a1a1a 100%);
    /* Luxury Grey Gradient */
    overflow: hidden;
}

.shop-hero-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    /* Reflection effect handled by Swiper or CSS if needed */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    filter: blur(4px);
    opacity: 0.6;
}

.shop-hero-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-slider .swiper-slide-active {
    filter: blur(0);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    /* Slight zoom for emphasis */
}

.shop-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.shop-hero-slider .swiper-slide:hover .shop-hero-content,
.shop-hero-slider .swiper-slide-active .shop-hero-content {
    transform: translateY(0);
}

.shop-hero-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.shop-hero-price {
    color: #f1683a;
    font-weight: 500;
    font-size: 1rem;
}

/* Pagination */
.shop-hero-slider .swiper-pagination-bullet {
    background: #555;
    opacity: 0.5;
}

.shop-hero-slider .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}