/* Collection Page Template Styling */

:root {
    --gold-primary: #c29941;
    --gold-dark: #a67f33;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #fbf9f4;
}

/* Hero Section */
.collections-hero {
    position: relative;
    height: 355px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: top;
}

.collections-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.collections-hero .container {
    position: relative;
    z-index: 2;
}

.collections-hero h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.collections-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.collections-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.collections-breadcrumbs span {
    opacity: 0.5;
}

/* Category Discovery Section */
.vbbk-category-discovery {
    padding: var(--section-padding);
    text-align: center;
}

.discovery-head {
    margin-bottom: 50px;
}

.discovery-head h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    color: var(--brand-navy);
}

.category-discovery-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.discovery-item {
    text-decoration: none;
    color: inherit;
    width: 180px;
    transition: transform 0.3s;
}

.discovery-item:hover {
    transform: translateY(-10px);
}

.discovery-thumb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.discovery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
    /* Slight padding for the PNJ look */
}

.discovery-item span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-navy);
}

/* Featured Split Section - Redesigned for Premium */
.vbbk-featured-collection-split {
    padding: var(--section-padding);
    background-color: #fff;
}

.featured-split-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fbf9f4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.fs-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
    color: #fff;
    position: relative;
}

.fs-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
    width: 40px;
    height: 40px;
    background: #111;
    z-index: 2;
}

.fs-content .sub-title {
    color: var(--gold-primary);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fs-content h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.promo-title {
    color: #fff;
}

.fs-content p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.fs-content .btn-discover {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    border-radius: 4px;
    transition: background 0.3s;
}

.fs-content .btn-discover:hover {
    background: var(--gold-dark);
}

.fs-image {
    height: 600px;
}

.fs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Responsive */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .featured-split-box {
        grid-template-columns: 1fr;
    }

    .fs-content {
        padding: 50px;
    }

    .fs-image {
        height: 400px;
    }
}

@media (max-width: 768px) {

    .collections-hero h1 {
        font-size: 32px !important;
    }

    .category-discovery-grid {
        gap: 15px;
    }

    .discovery-item {
        width: 100px;
    }

    .discovery-thumb {
        width: 100px;
        height: 100px;
    }
}