/* Collections Section - Boutique Sync */
.vbbk-home-collections {
    padding: var(--section-padding);
    background-color: #fdfaf7; /* Soft luxury beige to match About page */
    overflow: hidden;
}

.collections-header {
    text-align: center;
}

.collections-header h2 {
    font-family: var(--font-heading) !important;
    font-size: 38px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
}

.collections-slider-wrapper {
    position: relative;
    padding: 0;
    max-width: 1320px; /* Reduced for more compact look */
    margin: 0 auto;
    overflow: hidden;
}

.collections-swiper {
    width: 100%;
    padding: 40px 0 100px;
}

.collection-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(199, 160, 100, 0.2);
    background: #fff;
}

.collections-swiper .swiper-slide {
    width: 320px;
    height: 320px;
    transition: transform 0.8s ease;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 68, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active .collection-overlay {
    opacity: 1;
}

/* Luxury Navigation */
.collections-slider-wrapper .swiper-button-next,
.collections-slider-wrapper .swiper-button-prev {
    color: var(--brand-navy);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.collections-slider-wrapper .swiper-button-next::after,
.collections-slider-wrapper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.collections-slider-wrapper .swiper-button-next:hover,
.collections-slider-wrapper .swiper-button-prev:hover {
    background: var(--brand-navy);
    color: #fff;
    transform: scale(1.1) translateY(-50%);
}

.collections-slider-wrapper .swiper-button-next { right: 20px; }
.collections-slider-wrapper .swiper-button-prev { left: 20px; }

/* Luxury Pagination */
.collections-slider-wrapper .swiper-pagination-bullet {
    background: var(--brand-navy);
    opacity: 0.3;
}

.collections-slider-wrapper .swiper-pagination-bullet-active {
    background: var(--gold-gradient);
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}

/* Response for Mobile */
@media (max-width: 1024px) {
    .collections-swiper .swiper-slide { width: 320px; height: 320px; }
    .collections-slider-wrapper .swiper-button-next,
    .collections-slider-wrapper .swiper-button-prev { display: none; }
}

@media (max-width: 768px) {
    .collections-header h2 { font-size: 30px; }
    .collections-swiper { padding: 40px 0 80px; }
    .collections-swiper .swiper-slide {
        width: 85%;
        height: auto;
        aspect-ratio: 1/1;
    }
}
