/* Collection Banner Swiper */
.collection-banners {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 60px 0;
}

.banner-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #C27BA0;
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}

.banner-btn:hover {
    background: #a66889;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 123, 160, 0.4);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.banner-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.banner-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active,
.banner-dot:hover {
    background: #C27BA0;
    transform: scale(1.2);
}

/* Placeholder backgrounds for banners */
.banner-slide[data-bg="assets/images/golden-hour-banner.jpg"] {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.banner-slide[data-bg="assets/images/luxury-banner.jpg"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-slide[data-bg="assets/images/holiday-banner.jpg"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .collection-banners {
        height: 300px;
        margin: 40px 0;
    }
    
    .banner-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .banner-nav {
        padding: 0 20px;
    }
    
    .banner-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .collection-banners {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
}