/* Sephora-Style Slider */
.slider-section {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.slider-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.sephora-slide {
    height: 500px;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.sephora-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.slide-badge .badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.discount-box {
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.discount-text {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.discount-code {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.slide-info {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 250px;
    max-width: 450px;
    margin: 0 auto;
}

.slide-title {
    font-size: 2rem;
    color: #333;
    line-height: 1.2;
    font-weight: 700;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #666;
}

.slide-note small {
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Navigation Buttons */
.slider-main .swiper-button-next,
.slider-main .swiper-button-prev {
    color: #333;
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: none;
}

.slider-main .swiper-button-next:hover,
.slider-main .swiper-button-prev:hover {
    background-color: transparent;
    transform: scale(1.1);
    box-shadow: none;
}

.slider-main .swiper-pagination {
    bottom: 20px;
}

.slider-main .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.slider-main .swiper-pagination-bullet-active {
    background: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .slider-main {
        height: 400px;
    }
    
    .sephora-slide {
        height: 400px;
        background-position: center center;
    }
    
    .sephora-slide::before {
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(255, 255, 255, 0.1) 30%, 
            rgba(255, 255, 255, 0.8) 60%, 
            rgba(255, 255, 255, 0.95) 100%);
    }
    
    .slide-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 1.4rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .discount-text {
        font-size: 1.5rem;
    }
.sephora-slide.no-gradient::before {
    display: none !important;
    background: transparent !important;
}

.sephora-slide.no-gradient .slide-info {
    display: none !important;
}

    
    .slide-info {
        padding: 1.5rem;
    }
}