/* Collections Section - Professional 3D Carousel */
.vbbk-home-collections {
    padding: 80px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.collections-header {
    text-align: center;
    margin-bottom: 60px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
}

.collections-header h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
}

.collections-slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px; /* Space for the arrows */
}

.collections-swiper {
    width: 100%;
    padding: 60px 0 100px;
    perspective: 1500px;
    overflow: visible !important; /* Allow the 3D depth to be fully seen */
}

.collections-swiper .swiper-slide {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #fff;
    backface-visibility: hidden;
    will-change: transform;
}

/* Active Slide Focus (Larger & Bordered) */
.collections-swiper .swiper-slide-active {
    z-index: 50 !important;
    transform: scale(1.15) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    border: 3px solid #005696;
}

.collections-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collections-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Fix Arrow Positioning - Match PNJ Design */
.vbbk-home-collections .swiper-button-next,
.vbbk-home-collections .swiper-button-prev {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #444;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.vbbk-home-collections .swiper-button-prev {
    left: 0;
}

.vbbk-home-collections .swiper-button-next {
    right: 0;
}

/* Pagination Fix */
.vbbk-home-collections .swiper-pagination {
    bottom: 30px !important;
}

/* Pagination Dots */
.collections-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px !important;
}

.collections-swiper .swiper-pagination-bullet-active {
    background: #005696;
    width: 24px;
    border-radius: 4px;
}

/* Response for Mobile */
@media (max-width: 992px) {
    .collections-swiper .swiper-slide {
        width: 480px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .collections-swiper {
        padding: 20px 0 60px;
    }
    .collections-swiper .swiper-slide {
        width: 85%;
        height: auto;
        aspect-ratio: 1/1;
        opacity: 1;
        transform: scale(1) !important;
    }
    .collections-swiper .swiper-slide-active {
        border-width: 2px;
    }
}
