.fashion-slider-container { 
    position: relative; 
    max-width: 1200px; 
    margin: 30px auto; 
    overflow: hidden; 
    border-radius: 12px; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.slider-track { 
    display: flex; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    height: 500px;
}

.fashion-slider-container .slide { 
    min-width: 100%; 
    position: relative; 
    overflow: hidden;
}

.image-container { 
    position: relative; 
    width: 100%; 
    height: 100%;
}

.fashion-slider-container .slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
}

.color-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0.3; 
    mix-blend-mode: multiply;
}

/* Content styling */
.slide-content { 
    position: absolute; 
    top: 50%; 
    left: 10%; 
    transform: translateY(-50%); 
    max-width: 450px; 
    padding: 30px; 
    background: rgba(255,255,255,0.85); 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
    backdrop-filter: blur(5px);
}

.trend-badge { 
    display: inline-block; 
    padding: 6px 12px; 
    background: #ff6b81; 
    color: white; 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 1px; 
    border-radius: 20px; 
    margin-bottom: 20px; 
    text-transform: uppercase;
}

.fashion-slider-container h3 { 
    font-size: 2.5rem; 
    color: #333; 
    margin-bottom: 15px; 
    line-height: 1.2; 
    font-weight: 700; 
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.fashion-slider-container p { 
    font-size: 1.1rem; 
    color: #555; 
    margin-bottom: 25px; 
    line-height: 1.5;
}

.fashion-slider-container .cta-button { 
    display: inline-flex; 
    align-items: center; 
    padding: 12px 30px; 
    background: #ff6b81; 
    color: white; 
    text-decoration: none; 
    border-radius: 30px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(255,107,129,0.3);
}

.fashion-slider-container .cta-button:hover { 
    background: #ff4757; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(255,107,129,0.4);
}

.fashion-slider-container .cta-button::after { 
    content: '→'; 
    margin-left: 8px; 
    transition: transform 0.3s ease;
}

.fashion-slider-container .cta-button:hover::after { 
    transform: translateX(3px);
}

/* Navigation arrows */
.slider-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 50px; 
    height: 50px; 
    background: rgba(255,255,255,0.8); 
    border: none; 
    border-radius: 50%; 
    font-size: 1.5rem; 
    color: #ff6b81; 
    cursor: pointer; 
    z-index: 10; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    transition: all 0.3s ease;
}

.slider-nav:hover { 
    background: white; 
    color: #ff4757; 
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev { 
    left: 20px;
}

.slider-nav.next { 
    right: 20px;
}

/* Dots navigation */
.slider-dots { 
    position: absolute; 
    bottom: 20px; 
    left: 0; 
    right: 0; 
    text-align: center;
}

.slider-dots .dot { 
    display: inline-block; 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.6); 
    margin: 0 8px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    border: 2px solid transparent;
}

.slider-dots .dot.active { 
    background: white; 
    transform: scale(1.2); 
    border-color: #ff6b81;
}

.slider-dots .dot:hover { 
    background: white;
}

/* Animation */
@keyframes fadeInUp { 
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.slide-content > * { 
    animation: fadeInUp 0.6s ease forwards;
}

.slide-content h3 { 
    animation-delay: 0.2s;
}

.slide-content p { 
    animation-delay: 0.4s;
}

.slide-content .cta-button { 
    animation-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 992px) { 
    .slider-track { 
        height: 450px; 
    } 
    .slide-content { 
        left: 5%; 
        max-width: 400px; 
    } 
    .fashion-slider-container h3 { 
        font-size: 2rem; 
    }
}

@media (max-width: 768px) { 
    .slider-track { 
        height: 400px; 
    } 
    .slide-content { 
        padding: 20px; 
        max-width: 350px; 
    } 
    .fashion-slider-container h3 { 
        font-size: 1.8rem; 
    } 
    .fashion-slider-container p { 
        font-size: 1rem; 
    }
}

@media (max-width: 576px) { 
    .slider-track { 
        height: 350px; 
    } 
    .slide-content { 
        left: 50%; 
        transform: translate(-50%, -50%); 
        width: 85%; 
        max-width: none; 
        text-align: center; 
    } 
    .fashion-slider-container h3 { 
        font-size: 1.6rem; 
    } 
    .slider-nav { 
        width: 40px; 
        height: 40px; 
        font-size: 1.2rem; 
    }
}