/* =============================================
   BEIGE DIAMOND THEME - Luxury Minimal Jewellery
   White · Ivory · Black · Warm Gold
   Inspired by MJK Jewellers editorial aesthetic
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* =============================================
   BDH HERO — Full-Bleed Cinematic Redesign
   ============================================= */

/* ── Outer section ── */
.bdh-hero {
    position: relative;
    background: var(--bd-white);
    max-width: 1360px;
    margin: 20px auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

/* ── Slider container ── */
.bdh-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

/* ── Individual slide ── */
.bdh-slide {
    display: none;
    position: relative;
    height: 65vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.bdh-slide.active {
    display: flex;
    align-items: center;
}

/* ── Split Layout ── */
.bdh-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.bdh-split-left {
    flex: 1;
    background: var(--bd-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10% 8%;
    position: relative;
    z-index: 2;
}

.bdh-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bd-beige);
    padding: 28px 28px 22px 28px;
    gap: 16px;
}

.bdh-bg-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
    display: block;
    transition: transform 8s ease;
    transform: scale(1.04);
}

.bdh-slide.active .bdh-bg-img {
    transform: scale(1);
}

/* ── Split Overlays & Watermark ── */
.bdh-img-overlay-text {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding: 4px 0 0 0;
    text-align: center;
    color: var(--bd-black);
}

.bdh-brand-title {
    font-family: var(--bd-font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.bdh-brand-sub {
    font-family: var(--bd-font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bdh-coll-title {
    display: block;
    font-family: var(--bd-font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.bdh-coll-year {
    display: block;
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
}

.bdh-watermark {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-family: var(--bd-font-sans);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.bdh-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bd-black);
    color: var(--bd-white);
    padding: 15px 35px;
    font-family: var(--bd-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.bdh-btn-solid:hover {
    background: var(--bd-charcoal);
    color: var(--bd-white);
}

.bdh-title-sep {
    width: 40px;
    height: 1px;
    background: var(--bd-black);
    margin: 20px 0;
}

/* ── Content area ── */
.bdh-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    align-items: center;
}

.bdh-content-inner {
    max-width: 580px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.bdh-slide.active .bdh-content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* ── Eyebrow tag ── */
.bdh-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.bdh-slide.active .bdh-tag {
    opacity: 1;
    transform: translateY(0);
}

.bdh-tag-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--bd-gold);
    flex-shrink: 0;
}

.bdh-tag-text {
    font-family: var(--bd-font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bd-gold);
}

/* ── Headline ── */
.bdh-title {
    font-family: var(--bd-font-serif);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.06;
    color: var(--bd-black);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s ease 0.55s, transform 0.75s ease 0.55s;
}

.bdh-slide.active .bdh-title {
    opacity: 1;
    transform: translateY(0);
}

.bdh-title em {
    font-style: italic;
    color: var(--bd-gold);
}

/* ── Description ── */
.bdh-desc {
    font-family: var(--bd-font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--bd-charcoal);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.bdh-slide.active .bdh-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── Action buttons ── */
.bdh-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.85s, transform 0.7s ease 0.85s;
}

.bdh-slide.active .bdh-actions {
    opacity: 1;
    transform: translateY(0);
}

.bdh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bd-gold);
    color: #0a0806;
    padding: 15px 32px;
    font-family: var(--bd-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--bd-gold);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.bdh-btn-primary:hover {
    background: var(--bd-gold-light);
    transform: translateY(-2px);
}

.bdh-btn-primary i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.bdh-btn-primary:hover i {
    transform: translateX(4px);
}

.bdh-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--bd-font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 3px;
    transition: color 0.25s, border-color 0.25s;
}

.bdh-btn-ghost:hover {
    color: #fff;
    border-color: var(--bd-gold);
}

/* ── Slide corner meta badge ── */
.bdh-slide-meta {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 3;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.bdh-slide.active .bdh-slide-meta {
    opacity: 1;
}

.bdh-meta-label {
    display: block;
    font-family: var(--bd-font-sans);
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}

.bdh-meta-year {
    display: block;
    font-family: var(--bd-font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    letter-spacing: -1px;
}

/* ── Progress bar ── */
.bdh-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.bdh-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--bd-gold);
}

/* ── Navigation arrows ── */
.bdh-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: var(--bd-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--bd-black);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdh-arrow:hover {
    background: var(--bd-charcoal);
    color: var(--bd-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%) scale(1.08);
}

.bdh-arrow-prev { left: 24px; }
.bdh-arrow-next { right: 24px; }

/* ── Dots + counter control bar ── */
.bdh-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bdh-dots {
    display: flex;
    gap: 8px;
}

.bdh-dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}

.bdh-dot.active {
    background: var(--bd-gold);
    width: 44px;
}

.bdh-counter {
    font-family: var(--bd-font-sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Trust badges strip ── */
.bdh-badges {
    background: var(--bd-white);
    border-top: 1px solid var(--bd-border-light);
    border-bottom: 1px solid var(--bd-border-light);
    padding: 18px 0;
}

.bdh-badges-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.bdh-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
    font-family: var(--bd-font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--bd-charcoal);
    white-space: nowrap;
}

.bdh-badge i {
    color: var(--bd-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bdh-badge-sep {
    width: 1px;
    height: 24px;
    background: var(--bd-border);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bdh-slide {
        height: auto;
        min-height: 100vh;
    }
    .bdh-split {
        flex-direction: column;
    }
    .bdh-split-left {
        padding: 50px 6% 40px 6%;
        flex: 1 1 auto;
        justify-content: flex-start;
        text-align: center;
    }
    .bdh-actions {
        justify-content: center;
    }
    .bdh-split-right {
        flex: 1 1 50vh;
        min-height: 380px;
    }
    .bdh-watermark {
        font-size: 45vw;
        bottom: 5%;
    }
    .bdh-title {
        font-size: clamp(2.4rem, 9vw, 3.6rem);
        margin-bottom: 15px;
    }
    .bdh-arrow { width: 38px; height: 38px; }
    .bdh-arrow-prev { left: 12px; }
    .bdh-arrow-next { right: 12px; }
}

/* --- CSS Variables --- */
:root {
    /* Core palette: white, ivory, black, warm gold */
    --bd-white:        #ffffff;
    --bd-ivory:        #f9f6f0;
    --bd-ivory-mid:    #f4f1ea;
    --bd-ivory-deep:   #ede8de;
    --bd-beige:        #e8dfd0;
    --bd-black:        #111111;
    --bd-black-mid:    #1a1a1a;
    --bd-charcoal:     #333333;
    --bd-grey:         #666666;
    --bd-grey-light:   #999999;
    --bd-border:       #e5e0d8;
    --bd-border-light: #f0ece5;
    --bd-gold:         #b8902a;
    --bd-gold-light:   #d4a83a;
    --bd-shadow:       rgba(0,0,0,0.06);
    /* Typography */
    --bd-font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --bd-font-sans:    'Inter', -apple-system, sans-serif;
    /* Spacing */
    --bd-radius:       2px;
    --bd-transition:   0.3s ease;
    /* Aliases for customiser compatibility */
    --bd-navy:         var(--bd-ivory);
    --bd-navy-mid:     var(--bd-ivory-mid);
    --bd-navy-light:   var(--bd-white);
    --bd-blue:         var(--bd-ivory-deep);
    --bd-cyan:         var(--bd-gold);
    --bd-silver:       var(--bd-grey);
    --bd-silver-light: var(--bd-charcoal);
    --bd-silver-dark:  var(--bd-grey-light);
    --bd-grey-mid:     var(--bd-ivory-mid);
    --bd-grey-light-var: #f5f3ef;
    --bd-text:         var(--bd-black);
    --bd-text-muted:   var(--bd-grey);
    --bd-black-light:  var(--bd-charcoal);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bd-font-sans);
    font-weight: 400;
    color: var(--bd-black);
    background: var(--bd-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.bd-container, .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Fade-in Animation (scroll reveal) --- */
.bd-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.bd-fade-in.visible {
    opacity: 1;
    transform: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bd-font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--bd-black);
}

.bd-section-label {
    font-size: 0.7rem;
    font-family: var(--bd-font-sans);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 14px;
    display: block;
}

.bd-section-title {
    font-family: var(--bd-font-serif);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 400;
    color: var(--bd-black);
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0;
    line-height: 1.15;
}

.bd-section-subtitle {
    font-size: 0.88rem;
    color: var(--bd-grey);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Thin decorative line */
.bd-thin-line {
    width: 32px;
    height: 1px;
    background: var(--bd-gold);
    margin: 16px auto 48px;
    opacity: 0.7;
}

.bd-section {
    padding: 90px 0;
}

.bd-section-alt {
    background: var(--bd-ivory);
}

/* ========================================
   TOP BAR - Minimal ticker strip
======================================== */
.bd-top-bar {
    background: var(--bd-bg, #fdfbf7);
    color: var(--bd-text, #111);
    font-family: var(--bd-font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 8px 0;
    overflow: hidden;
}

.bd-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bd-ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.bd-ticker {
    display: flex;
    gap: 56px;
    animation: bdTickerScroll 35s linear infinite;
    white-space: nowrap;
}

.bd-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
}

.bd-ticker i {
    color: var(--bd-gold);
    font-size: 0.65rem;
}

@keyframes bdTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bd-top-links {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.bd-top-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--bd-transition);
}

.bd-top-links a:hover {
    color: var(--bd-gold);
}

/* ========================================
   MAIN HEADER - Clean white, logo + search + icons
======================================== */
.bd-header {
    background: var(--bd-white);
    border-bottom: 1px solid var(--bd-border-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--bd-transition), box-shadow var(--bd-transition);
}

.bd-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.bd-header-main {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
}

/* Logo */
.bd-logo {
    flex-shrink: 0;
}

.bd-logo a {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.bd-logo-icon {
    display: none;
}

.bd-logo-text h1 {
    font-family: var(--bd-font-serif);
    font-size: 1.6rem;
    color: var(--bd-black);
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: none;
}

.bd-logo-text h1 span {
    color: var(--bd-black);
    font-weight: 700;
}

.bd-logo-text small {
    font-family: var(--bd-font-sans);
    font-size: 0.58rem;
    color: var(--bd-grey);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 3px;
    display: block;
}

/* Search */
.bd-search-box {
    flex: 1;
    min-width: 0;
    max-width: 420px;
}

.bd-search-box form {
    display: flex;
    position: relative;
    border: 1px solid var(--bd-border);
    border-radius: 40px;
    overflow: hidden;
    transition: border-color var(--bd-transition), box-shadow var(--bd-transition);
}

.bd-search-box form:focus-within {
    border-color: var(--bd-black);
    box-shadow: 0 0 0 2px rgba(17,17,17,0.06);
}

.bd-search-box input {
    width: 100%;
    padding: 11px 20px;
    border: none;
    outline: none;
    background: var(--bd-white);
    font-family: var(--bd-font-sans);
    font-size: 0.83rem;
    color: var(--bd-black);
    font-weight: 300;
}

.bd-search-box input::placeholder {
    color: var(--bd-grey-light);
    font-weight: 300;
    transition: color 0.4s;
}

.bd-search-box button[type="submit"] {
    padding: 11px 20px;
    background: var(--bd-black);
    color: var(--bd-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: var(--bd-font-sans);
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--bd-transition);
    flex-shrink: 0;
}

.bd-search-box button[type="submit"]:hover {
    background: var(--bd-charcoal);
}

.bd-search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bd-white);
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    z-index: 999;
    overflow: hidden;
}

.bd-suggestion-item {
    padding: 11px 20px;
    font-size: 0.86rem;
    cursor: pointer;
    transition: background var(--bd-transition);
    color: var(--bd-black);
    font-weight: 300;
    border-bottom: 1px solid var(--bd-border-light);
}

.bd-suggestion-item:last-child { border-bottom: none; }

.bd-suggestion-item:hover {
    background: var(--bd-ivory);
    color: var(--bd-gold);
}

/* Header Actions */
.bd-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bd-silver-wallet {
    display: none;
}

.bd-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--bd-black);
    gap: 3px;
    position: relative;
    transition: color var(--bd-transition);
    padding: 6px 10px;
}

.bd-header-action i {
    font-size: 1.1rem;
    color: var(--bd-black);
}

.bd-header-action:hover {
    color: var(--bd-gold);
}

.bd-header-action:hover i {
    color: var(--bd-gold);
}

.bd-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--bd-black);
    color: var(--bd-white);
    font-size: 0.6rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.bd-btn-login {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--bd-black);
    padding: 9px 20px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 1px solid var(--bd-black);
    transition: all var(--bd-transition);
    font-family: var(--bd-font-sans);
}

.bd-btn-login:hover {
    background: var(--bd-black);
    color: var(--bd-white);
}

.bd-account-dropdown {
    position: relative;
}

.bd-header-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: var(--bd-black);
    gap: 3px;
    cursor: pointer;
    transition: color var(--bd-transition);
    padding: 6px 10px;
}

.bd-header-link:hover { color: var(--bd-gold); }

.bd-header-link i {
    font-size: 1.1rem;
}

.bd-auth-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bd-white);
    border: 1px solid var(--bd-border);
    padding: 8px 0;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 24px var(--bd-shadow);
}

.bd-account-dropdown:hover .bd-auth-dropdown {
    display: block;
}

.bd-auth-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: var(--bd-black);
    font-weight: 300;
    transition: background var(--bd-transition);
}

.bd-auth-dropdown a:hover {
    background: var(--bd-ivory);
}

.bd-auth-dropdown a i {
    width: 16px;
    color: var(--bd-gold);
}

.bd-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.bd-mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--bd-black);
    border-radius: 1px;
    transition: var(--bd-transition);
}

/* ========================================
   NAVIGATION - Uppercase, centered, minimal
======================================== */
.bd-nav {
    background: var(--bd-white);
    border-bottom: 1px solid var(--bd-border-light);
    position: relative;
    z-index: 900;
}

.bd-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.bd-nav-list > li {
    position: relative;
}

.bd-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 13px;
    font-family: var(--bd-font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--bd-black);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--bd-transition);
    position: relative;
    white-space: nowrap;
}

/* Thin underline on hover/active */
.bd-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--bd-gold);
    transform: scaleX(0);
    transition: transform var(--bd-transition);
    transform-origin: center;
}

.bd-nav-list > li:hover .bd-nav-link {
    color: var(--bd-black);
}

.bd-nav-list > li:hover .bd-nav-link::after {
    transform: scaleX(1);
}

.bd-nav-link i {
    font-size: 0.65rem;
    color: var(--bd-grey);
    margin-left: 2px;
    transition: transform var(--bd-transition);
}

.bd-nav-list > li:hover .bd-nav-link i {
    transform: rotate(180deg);
}

.bd-nav-new {
    color: var(--bd-gold) !important;
}

.bd-nav-offers {
    color: var(--bd-black) !important;
    border: 1px solid var(--bd-border);
    border-radius: 40px;
    padding: 6px 18px !important;
    margin: 10px 4px;
    font-size: 0.68rem !important;
    letter-spacing: 2.5px;
    background: transparent;
}

.bd-nav-offers:hover {
    background: var(--bd-black) !important;
    color: var(--bd-white) !important;
}

.bd-nav-offers::after { display: none !important; }

/* Dropdown */
.bd-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
}
.bd-dropdown::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}
.bd-dropdown {
    background: var(--bd-white);
    border: 1px solid var(--bd-border);
    border-top: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    padding: 20px;
    z-index: 800;
    animation: bdDropFade 0.18s ease;
}

@keyframes bdDropFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bd-has-dropdown:hover .bd-dropdown {
    display: block;
}

.bd-mega-content {
    display: flex;
    gap: 24px;
    min-width: 520px;
}

.bd-mega-links {
    flex: 1;
}

.bd-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bd-dropdown-grid a {
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--bd-charcoal);
    letter-spacing: 0.3px;
    transition: all var(--bd-transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--bd-border-light);
}

.bd-dropdown-grid a:hover {
    color: var(--bd-black);
    padding-left: 18px;
}

.bd-mega-image {
    position: relative;
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.bd-mega-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-mega-image:hover img {
    transform: scale(1.04);
}

.bd-mega-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.45);
    padding: 10px 12px;
    color: var(--bd-white);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

/* Mobile Drawer */
.bd-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
}

.bd-mobile-overlay.active {
    display: block;
}

.bd-mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 290px;
    height: 100vh;
    background: var(--bd-white);
    z-index: 1200;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.bd-mobile-drawer.active {
    left: 0;
}

.bd-mobile-header {
    background: var(--bd-white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bd-border-light);
}

.bd-mobile-logo {
    color: var(--bd-black);
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.bd-mobile-close {
    color: var(--bd-grey);
    font-size: 1rem;
    padding: 4px;
}

.bd-mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bd-black);
    border-bottom: 1px solid var(--bd-border-light);
    transition: background var(--bd-transition);
}

.bd-mobile-menu li a:hover {
    background: var(--bd-ivory);
}

.bd-mobile-menu li a i {
    color: var(--bd-gold);
    width: 16px;
    font-size: 0.85rem;
}

.bd-mobile-footer {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--bd-border-light);
}

.bd-mobile-footer a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bd-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: color var(--bd-transition);
}

.bd-mobile-footer a:hover { color: var(--bd-black); }

.bd-mobile-footer a i {
    font-size: 0.9rem;
    color: var(--bd-gold);
}

/* ========================================
   HERO SLIDER - Minimal editorial
======================================== */
.bd-hero {
    position: relative;
    overflow: hidden;
    background: var(--bd-white);
    min-height: 580px;
}

.bd-hero-slider {
    position: relative;
}

.bd-hero-slide {
    display: none;
    position: relative;
    min-height: 75vh;
    align-items: stretch;
}

.bd-hero-slide.active {
    display: flex;
    animation: bdHeroFade 0.7s ease;
}

@keyframes bdHeroFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Slide backgrounds per slide */
.bd-hero-slide .bd-hero-bg { background: var(--bd-white); }

.bd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bd-hero-bg-pattern {
    display: none;
}

.bd-hero-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 75vh;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.bd-hero-text {
    flex: 1;
    padding: 80px 8%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.bd-hero-visual {
    flex: 1.2;
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.bd-hero-eyebrow {
    font-family: var(--bd-font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bd-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--bd-gold);
}

.bd-hero-title {
    font-family: var(--bd-font-serif);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 400;
    color: var(--bd-black);
    line-height: 1.08;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.bd-hero-title em {
    font-style: italic;
    color: var(--bd-black);
}

.bd-hero-divider {
    width: 24px;
    height: 2px;
    background: var(--bd-black);
    margin: 22px 0;
    opacity: 0.35;
}

.bd-hero-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--bd-grey);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 340px;
}

.bd-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Buttons */
.bd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bd-black);
    color: var(--bd-white);
    padding: 14px 32px;
    font-family: var(--bd-font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--bd-transition);
    border: 1px solid var(--bd-black);
}

.bd-btn-primary:hover {
    background: var(--bd-charcoal);
    border-color: var(--bd-charcoal);
    transform: translateY(-1px);
}

.bd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--bd-black);
    padding: 13px 28px;
    font-family: var(--bd-font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--bd-black);
    transition: all var(--bd-transition);
}

.bd-btn-outline:hover {
    background: var(--bd-black);
    color: var(--bd-white);
}

/* Hero visual / image panel — merged into primary .bd-hero-visual rule above */

/* Hero image panel — styled as editorial card with label */
.bd-hero-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    overflow: hidden;
    background: var(--bd-ivory-mid);
    border: none;
}

.bd-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bd-hero-image-wrap:hover img {
    transform: scale(1.03);
}

/* Brand label in top-right of hero image */
.bd-hero-brand-label { display: none; 
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    line-height: 1.3;
}

.bd-hero-brand-label .bd-brand-name {
    font-family: var(--bd-font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bd-black);
    display: block;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.92);
    padding: 8px 14px 2px;
}

.bd-hero-brand-label .bd-brand-sub {
    font-family: var(--bd-font-sans);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bd-charcoal);
    display: block;
    background: rgba(255,255,255,0.92);
    padding: 2px 14px 8px;
}

/* Collection label at bottom of hero image */
.bd-hero-coll-label { display: none; 
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    line-height: 1.4;
}

.bd-hero-coll-label .bd-coll-year-title {
    font-family: var(--bd-font-sans);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bd-charcoal);
    display: block;
}

.bd-hero-coll-label .bd-coll-year-num {
    font-family: var(--bd-font-serif);
    font-size: 0.9rem;
    color: var(--bd-black);
    display: block;
}

/* Arrow buttons */
.bd-hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--bd-white) !important;
    border: 1px solid var(--bd-border) !important;
    color: var(--bd-black) !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.bd-hero-arrow-btn:hover {
    background: var(--bd-black) !important;
    color: var(--bd-white) !important;
    border-color: var(--bd-black) !important;
}

.bd-prev { left: 20px; }
.bd-next { right: 20px; }

/* Slider dots */
.bd-hero-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bd-hero-dot {
    width: 22px;
    height: 2px;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background var(--bd-transition), width var(--bd-transition);
}

.bd-hero-dot.active {
    background: var(--bd-black);
    width: 36px;
}

/* ========================================
   FEATURES STRIP - Trust strip with dividers
======================================== */
.bd-features-strip {
    background: var(--bd-white);
    border-top: 1px solid var(--bd-border-light);
    border-bottom: 1px solid var(--bd-border-light);
    padding: 28px 0;
}

.bd-features-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.bd-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-right: 1px solid var(--bd-border-light);
}

.bd-feature-item:last-child {
    border-right: none;
}

.bd-feature-icon {
    color: var(--bd-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bd-feature-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--bd-black);
    margin-bottom: 2px;
    font-family: var(--bd-font-sans);
}

.bd-feature-text span {
    font-size: 0.71rem;
    color: var(--bd-grey);
    font-weight: 300;
}

/* ========================================
   CATEGORIES - Horizontal card grid
======================================== */
.bd-cats {
    background: var(--bd-white);
    padding: 90px 0;
}

.bd-cats-slider-wrap {
    position: relative;
    width: 100%;
}

.bd-cat-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bd-white);
    color: var(--bd-black);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.bd-cat-btn:hover {
    background: var(--bd-black);
    color: var(--bd-white);
    transform: translateY(-50%) scale(1.05);
}

.bd-cat-prev { left: -22px; }
.bd-cat-next { right: -22px; }

@media (max-width: 1200px) {
    .bd-cat-prev { left: 0; }
    .bd-cat-next { right: 0; }
}

.bd-cats-grid {
    --cat-gap: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--cat-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.bd-cats-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.bd-cat-item {
    flex: 0 0 160px;
    min-width: 160px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bd-cat-item:hover {
    transform: translateY(-4px);
}

.bd-cat-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bd-ivory-mid);
    border-radius: 0;
    position: relative;
}

.bd-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-cat-item:hover .bd-cat-img-wrap img {
    transform: scale(1.06);
}

.bd-cat-name {
    font-family: var(--bd-font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bd-black);
}

/* ========================================
   PRODUCTS GRID
======================================== */
.bd-featured {
    padding: 90px 0;
    background: var(--bd-ivory);
}

.bd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bd-product-card {
    background: var(--bd-white);
    border: 1px solid var(--bd-border-light);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bd-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.bd-product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bd-ivory-mid);
}

.bd-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bd-product-card:hover .bd-product-img img {
    transform: scale(1.05);
}

.bd-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bd-black);
    color: #ffffff !important;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    text-transform: uppercase;
    font-family: var(--bd-font-sans);
    z-index: 2;
    line-height: 1;
}

.bd-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bd-white);
    border: 1px solid var(--bd-border);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--bd-grey);
    z-index: 2;
    transition: all var(--bd-transition);
    border-radius: 50%;
}

.bd-wishlist-btn:hover,
.bd-wishlist-btn.active {
    background: var(--bd-black);
    color: var(--bd-white);
    border-color: var(--bd-black);
}

.bd-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.bd-product-card:hover .bd-product-actions {
    transform: translateY(0);
}

.bd-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--bd-black);
    color: var(--bd-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--bd-font-sans);
    transition: background var(--bd-transition);
}

.bd-btn-cart:hover {
    background: var(--bd-charcoal);
}

.bd-product-info {
    padding: 16px;
    border-top: 1px solid var(--bd-border-light);
}

.bd-product-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bd-black);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--bd-font-sans);
    text-transform: capitalize;
}

.bd-product-meta,
.bd-product-weight {
    font-size: 0.76rem;
    color: var(--bd-grey);
    font-weight: 300;
    margin-bottom: 4px;
}

.bd-product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bd-product-price {
    font-family: var(--bd-font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--bd-black);
}

.bd-product-price-orig {
    font-size: 0.78rem;
    color: var(--bd-grey-light);
    text-decoration: line-through;
    font-weight: 300;
}

/* ========================================
   COLLECTION BANNERS — Editorial horizontal cards
   (image left, text right) matching reference image 4
======================================== */
.bd-colls {
    padding: 60px 0 80px;
    background: var(--bd-ivory);
}

.bd-colls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* Each card: image left, text right, beige bg */
.bd-coll-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--bd-ivory);
    overflow: hidden;
    transition: background var(--bd-transition);
    position: relative;
    min-height: 240px;
}

.bd-coll-card:hover {
    background: var(--bd-ivory-mid);
}

/* Image occupies left half */
.bd-coll-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bd-ivory-mid);
}

.bd-coll-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bd-coll-card:hover .bd-coll-img-wrap img {
    transform: scale(1.04);
}

/* Text occupies right half */
.bd-coll-text {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-coll-title {
    font-family: var(--bd-font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bd-black);
    line-height: 1.3;
}

.bd-coll-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--bd-charcoal);
    line-height: 1.65;
}

.bd-coll-btn {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bd-black);
    font-family: var(--bd-font-sans);
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1.5px solid var(--bd-black);
    transition: all var(--bd-transition);
    margin-top: 6px;
    width: fit-content;
}

.bd-coll-card:hover .bd-coll-btn {
    color: var(--bd-gold);
    border-color: var(--bd-gold);
}

/* ========================================
   PROMO BAND - Gold plan (redesigned)
======================================== */
.bd-promo-band {
    background: var(--bd-black);
    padding: 64px 0;
}

.bd-promo-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.bd-promo-eyebrow {
    display: block;
    font-family: var(--bd-font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bd-gold);
    margin-bottom: 16px;
}

.bd-promo-title {
    font-family: var(--bd-font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 18px;
}

.bd-promo-title em {
    font-style: italic;
    color: var(--bd-gold);
}

.bd-promo-desc {
    font-size: 0.86rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.bd-promo-desc strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.bd-promo-divider {
    width: 1px;
    height: 110px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.bd-promo-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bd-promo-stat {
    margin-bottom: 28px;
}

.bd-promo-stat-num {
    display: block;
    font-family: var(--bd-font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: var(--bd-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.bd-promo-stat-label {
    display: block;
    font-family: var(--bd-font-sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.bd-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--bd-gold);
    color: #0a0806;
    padding: 14px 30px;
    font-family: var(--bd-font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--bd-gold);
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 16px;
}

.bd-promo-btn:hover {
    background: var(--bd-gold-light);
    transform: translateY(-2px);
}

.bd-promo-live-rate {
    font-family: var(--bd-font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.5px;
}


/* ========================================
   TESTIMONIALS
======================================== */
.bd-testimonials {
    padding: 90px 0;
    background: var(--bd-ivory);
}

.bd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bd-review-card {
    background: var(--bd-white);
    border: 1px solid var(--bd-border-light);
    padding: 32px;
}

.bd-review-stars {
    color: var(--bd-gold);
    font-size: 0.8rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.bd-review-text {
    font-size: 0.88rem;
    color: var(--bd-charcoal);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 22px;
}

.bd-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-review-avatar {
    width: 36px;
    height: 36px;
    background: var(--bd-ivory-mid);
    border: 1px solid var(--bd-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-black);
    font-weight: 600;
    font-size: 0.9rem;
}

.bd-review-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bd-black);
}

.bd-review-city {
    font-size: 0.72rem;
    color: var(--bd-grey);
    font-weight: 300;
}

/* ========================================
   INNER PAGES (Contact, FAQ, About, etc.)
======================================== */
.page-header {
    background: var(--bd-beige);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-family: var(--bd-font-serif);
    font-size: 2.8rem;
    color: var(--bd-black);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--bd-black);
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--bd-black);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb span {
    margin: 0 8px;
}

.page-content {
    padding-bottom: 80px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.content-container h2,
.content-container h3 {
    font-family: var(--bd-font-serif);
    color: var(--bd-black);
    margin: 30px 0 15px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--bd-beige);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--bd-black);
}

.contact-form {
    margin-top: 30px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--bd-black);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Guides Styles */
.guide-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.guide-nav-link {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: var(--bd-black);
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 0.95rem;
}

.guide-nav-link:hover,
.guide-nav-link.active {
    background: var(--bd-black);
    color: #fff;
    border-color: var(--bd-black);
}

/* ========================================
   NEWSLETTER
======================================== */
.bd-newsletter {
    padding: 90px 0;
    background: var(--bd-white);
    text-align: center;
    border-top: 1px solid var(--bd-border-light);
}

.bd-newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--bd-black);
    border-radius: 40px;
    overflow: hidden;
}

.bd-newsletter-form input {
    flex: 1;
    padding: 13px 22px;
    background: var(--bd-white);
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-weight: 300;
    font-family: var(--bd-font-sans);
    color: var(--bd-black);
}

.bd-newsletter-form input::placeholder {
    color: var(--bd-grey-light);
}

.bd-newsletter-form button {
    padding: 13px 24px;
    background: var(--bd-black);
    color: var(--bd-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--bd-font-sans);
    white-space: nowrap;
    transition: background var(--bd-transition);
}

.bd-newsletter-form button:hover {
    background: var(--bd-charcoal);
}

/* ========================================
   BDF FOOTER — Dark Premium Redesign
   All selectors scoped under .bdf-footer
   to override global h/p/a color rules
======================================== */

.bdf-footer {
    background: #111111 !important;
    color: #e8e2d9 !important;
    font-family: var(--bd-font-sans);
}

/* ── Newsletter strip ── */
.bdf-footer .bdf-nl-strip {
    background: #1a1714;
    border-bottom: 1px solid rgba(184,144,42,0.2);
    padding: 48px 0;
}

.bdf-footer .bdf-nl-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.bdf-footer .bdf-nl-eyebrow {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bd-gold) !important;
    margin-bottom: 10px;
}

.bdf-footer .bdf-nl-eyebrow i { margin-right: 6px; font-size: 0.9rem; vertical-align: middle; color: var(--bd-gold) !important; }

.bdf-footer .bdf-nl-title {
    font-family: var(--bd-font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 6px;
    line-height: 1.2;
}

.bdf-footer .bdf-nl-sub {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.7;
}

.bdf-footer .bdf-nl-form {
    display: flex;
    flex-shrink: 0;
    min-width: 340px;
    border: 1px solid rgba(184,144,42,0.4);
    overflow: hidden;
}

.bdf-footer .bdf-nl-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: none;
    outline: none;
    font-size: 0.82rem;
    font-weight: 300;
    font-family: var(--bd-font-sans);
    color: #e8e2d9 !important;
}

.bdf-footer .bdf-nl-form input::placeholder { color: rgba(255,255,255,0.28); }

.bdf-footer .bdf-nl-form button {
    padding: 14px 22px;
    background: var(--bd-gold);
    color: #0a0806 !important;
    border: none;
    cursor: pointer;
    font-family: var(--bd-font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s;
    white-space: nowrap;
}

.bdf-footer .bdf-nl-form button:hover { background: var(--bd-gold-light); }
.bdf-footer .bdf-nl-form button i { 
    font-size: 0.65rem; 
    color: #0a0806 !important;
}

/* ── Main grid ── */
.bdf-footer .bdf-main {
    padding: 64px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bdf-footer .bdf-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

/* ── Brand column ── */
.bdf-footer .bdf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--bd-font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff !important;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.bdf-footer .bdf-logo i { color: var(--bd-gold) !important; font-size: 1rem; }
.bdf-footer .bdf-logo span { color: #ffffff !important; }

.bdf-footer p.bdf-brand-desc,
footer.bdf-footer p.bdf-brand-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6) !important;
    max-width: 300px;
    margin-bottom: 24px;
}

/* Contact list */
.bdf-footer .bdf-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.bdf-footer .bdf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.5;
}

.bdf-footer .bdf-contact-item i {
    color: var(--bd-gold) !important;
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 12px;
}

.bdf-footer .bdf-contact-item span {
    color: rgba(255,255,255,0.5) !important;
}

.bdf-footer .bdf-contact-item a {
    color: rgba(255,255,255,0.5) !important;
    transition: color 0.2s;
}

.bdf-footer .bdf-contact-item a:hover { color: var(--bd-gold) !important; }

/* Social icons */
.bdf-footer .bdf-social { display: flex; gap: 12px; }

.bdf-footer .bdf-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45) !important;
    transition: all 0.25s;
}

.bdf-footer .bdf-social a i {
    color: rgba(255,255,255,0.45) !important;
    transition: all 0.25s;
}

.bdf-footer .bdf-social a:hover,
.bdf-footer .bdf-social a:hover i {
    border-color: var(--bd-gold);
    color: var(--bd-gold) !important;
    background: rgba(184,144,42,0.08);
}

/* ── Link columns ── */
.bdf-footer .bdf-col-title {
    font-family: var(--bd-font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bdf-footer .bdf-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.bdf-footer .bdf-links li a {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255,255,255,0.48) !important;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.bdf-footer .bdf-links li a:hover {
    color: #ffffff !important;
    padding-left: 4px;
}

.bdf-footer .bdf-highlight {
    color: var(--bd-gold) !important;
    font-weight: 500;
}

/* ── Assurance bar ── */
.bdf-footer .bdf-assurance {
    background: #0e0d0b;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bdf-footer .bdf-assurance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bdf-footer .bdf-assurance-item {
    display: flex;
    align-items: center;
}

.bdf-footer .bdf-assurance-item i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3) !important;
    margin-right: 16px;
}

.bdf-footer .bdf-assurance-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.bdf-footer .bdf-assurance-item span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35) !important;
    font-weight: 300;
}

.bdf-footer .bdf-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ── Bottom bar ── */
.bdf-footer .bdf-bottom { background: #0a0906; padding: 16px 0; }

.bdf-footer .bdf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.bdf-footer .bdf-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.28) !important;
    letter-spacing: 0.3px;
}

.bdf-footer .bdf-payment-icons { display: flex; gap: 12px; align-items: center; }

.bdf-footer .bdf-payment-icons i {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.22) !important;
    transition: color 0.2s;
}

.bdf-footer .bdf-payment-icons i:hover { color: rgba(255,255,255,0.5) !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bdf-footer .bdf-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .bdf-footer .bdf-col-brand { grid-column: 1 / -1; }
    .bdf-footer .bdf-nl-inner { flex-direction: column; align-items: flex-start; }
    .bdf-footer .bdf-nl-form { min-width: 100%; width: 100%; }
}

@media (max-width: 640px) {
    .bdf-footer .bdf-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .bdf-footer .bdf-assurance-row { gap: 20px; }
    .bdf-footer .bdf-sep { display: none; }
    .bdf-footer .bdf-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}



   FOOTER — Light ivory editorial style
   matching reference image 2
======================================== */

.bd-footer {
    background: var(--bd-ivory);
    color: var(--bd-charcoal);
    border-top: 1px solid var(--bd-border);
    padding: 64px 0 0;
}

.bd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.bd-footer-brand h3 {
    font-family: var(--bd-font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--bd-black);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.bd-footer-brand p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--bd-grey);
    margin-top: 14px;
    max-width: 280px;
}

.bd-footer-col h4 {
    font-family: var(--bd-font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bd-black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bd-border);
}

.bd-footer-col ul { list-style: none; }

.bd-footer-col ul li {
    margin-bottom: 10px;
}

.bd-footer-col ul li a,
.bd-footer-links li a {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--bd-charcoal);
    transition: color var(--bd-transition);
    display: inline-block;
}

.bd-footer-col ul li a:hover,
.bd-footer-links li a:hover {
    color: var(--bd-black);
}

/* Remove chevron from footer links */
.bd-footer-links li a i { display: none; }

/* Footer logo */
.bd-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--bd-font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bd-black);
    letter-spacing: 1px;
}

.bd-footer-logo i {
    color: var(--bd-gold);
    font-size: 1rem;
}

/* Social icons — dark on light */
.bd-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.bd-social-icons a {
    color: var(--bd-grey);
    font-size: 0.9rem;
    transition: color var(--bd-transition);
}

.bd-social-icons a:hover { color: var(--bd-black); }

/* Contact info */
.bd-contact-info p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--bd-charcoal);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.bd-contact-info p i {
    color: var(--bd-gold);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Newsletter form in footer */
.bd-newsletter-form {
    display: flex;
    border: 1px solid var(--bd-black);
    border-radius: 0;
    overflow: hidden;
    margin-top: 10px;
}

.bd-newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    background: var(--bd-white);
    border: none;
    outline: none;
    font-size: 0.82rem;
    font-weight: 300;
    font-family: var(--bd-font-sans);
    color: var(--bd-black);
}

.bd-newsletter-form input::placeholder { color: var(--bd-grey-light); }

.bd-newsletter-form button {
    padding: 11px 18px;
    background: var(--bd-black);
    color: var(--bd-white);
    border: none;
    cursor: pointer;
    transition: background var(--bd-transition);
}

.bd-newsletter-form button:hover { background: var(--bd-charcoal); }

/* Assurance bar */
.bd-footer-assurance {
    background: var(--bd-white);
    border-top: 1px solid var(--bd-border);
    border-bottom: 1px solid var(--bd-border);
    padding: 28px 0;
    margin-top: 24px;
}

.bd-assurance-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bd-assurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-assurance-item i {
    color: var(--bd-gold);
    font-size: 1.1rem;
}

.bd-assurance-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bd-black);
    letter-spacing: 0.5px;
}

.bd-assurance-item span {
    font-size: 0.72rem;
    color: var(--bd-grey);
    font-weight: 300;
}

/* Footer bottom bar */
.bd-footer-bottom {
    background: var(--bd-ivory);
    border-top: 1px solid var(--bd-border);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--bd-grey);
}

.bd-footer-bottom p { color: var(--bd-grey); }

.bd-footer-social {
    display: flex;
    gap: 16px;
}

.bd-footer-social a {
    color: var(--bd-grey);
    font-size: 0.9rem;
    transition: color var(--bd-transition);
}

.bd-footer-social a:hover { color: var(--bd-black); }

.bd-footer-rates {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bd-border-light);
    font-size: 0.78rem;
    color: var(--bd-grey);
    flex-wrap: wrap;
}

.bd-footer-rates span i {
    color: var(--bd-gold);
    margin-right: 5px;
}

/* ========================================
   UTILITY / MISC
======================================== */
.bd-silver-line {
    width: 32px;
    height: 1px;
    background: var(--bd-gold);
    margin: 14px auto 48px;
    opacity: 0.6;
}

/* Breadcrumb, page sections */
.bd-page-wrapper {
    background: var(--bd-white);
    min-height: 60vh;
    padding: 60px 0;
}

.bd-section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* ========================================
   RESPONSIVE
======================================== */

.bd-hero .bd-container {
    max-width: 100%;
    padding: 0;
    width: 100%;
    height: 100%;
}
.bd-hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem) !important;
}
.bd-hero-desc {
    font-size: 1.1rem !important;
    max-width: 450px !important;
}

@media (max-width: 1100px) {
    /* cats grid fixed width works at all sizes */

    .bd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .bd-container, .container {
        padding: 0 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }

    .bd-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 50px 0;
    }

    .bd-hero-image-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .bd-hero-badge-float {
        display: none;
    }

    .bd-hero-eyebrow {
        justify-content: center;
    }

    .bd-hero-desc {
        margin: 0 auto 28px;
    }

    .bd-hero-actions {
        justify-content: center;
    }

    .bd-features-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .bd-feature-item:nth-child(3) {
        border-right: none;
    }

    .bd-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* cats grid fixed width works at all sizes */

    .bd-colls-grid {
        grid-template-columns: 1fr;
    }

    .bd-reviews-grid {
        grid-template-columns: 1fr;
    }

    .bd-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bd-promo-divider {
        display: none;
    }

    .bd-nav {
        display: none;
    }

    .bd-mobile-menu-btn {
        display: flex;
    }

    .bd-search-box {
        display: none;
    }
}

@media (max-width: 600px) {
    .bd-container, .container {
        padding: 0 16px;
    }

    .bd-hero {
        min-height: 480px;
    }

    .bd-hero-slide {
        min-height: 480px;
    }

    .bd-hero-title {
        font-size: 2.2rem;
    }

    .bd-features-row {
        grid-template-columns: 1fr 1fr;
    }

    .bd-feature-item:nth-child(2n) {
        border-right: none;
    }

    .bd-cats-grid {
        --cat-gap: 12px;
    }

    .bd-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bd-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bd-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bd-section {
        padding: 60px 0;
    }
}
/* ============================================================== */
/* NEW MJK MEGA MENU STYLES */
/* ============================================================== */
.bd-header-single {
    padding: 15px 0 !important;
}

.bd-mega-hover:hover .mega {
    display: block !important;
    animation: bdDropFade 0.2s ease;
}

.bd-nav-list > li.bd-mega-hover {
    position: static;
}

.bd-dropdown-fullwidth {
    width: 100%;
    left: 0;
    box-sizing: border-box;
    padding: 30px 0;
    border-top: 1px solid var(--bd-border-light);
    border-bottom: 1px solid var(--bd-border-light);
    background: #faf8f5 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

.bd-mega-mjk {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 30px;
}

/* Sidebar */
.bd-mjk-sidebar {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bd-mjk-side-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.bd-mjk-side-link:hover {
    background: #fdfdfd;
    border-color: #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    color: var(--bd-gold);
}

.bd-mjk-side-link .bd-menu-icon {
    width: 20px;
    margin-right: 12px;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

.bd-mjk-side-link:hover .bd-menu-icon {
    color: var(--bd-gold);
}

.bd-mjk-side-link .bd-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: #ccc;
}

.bd-mjk-side-has-sub {
    position: relative;
    margin-top: 10px;
    background: #f3efe8;
    border-radius: 6px;
    padding: 5px;
}

.bd-mjk-side-has-sub > .bd-mjk-side-link {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.bd-mjk-side-submenu {
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 45px;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bd-mjk-side-has-sub.open .bd-mjk-side-submenu {
    max-height: 200px;
    padding: 5px 15px 10px 45px;
}

/* Rotate the + icon to × when open */
.bd-mjk-side-has-sub .bd-arrow {
    transition: transform 0.25s ease;
}

.bd-mjk-side-has-sub.open .bd-arrow {
    transform: rotate(45deg);
}

.bd-mjk-side-submenu a {
    font-size: 0.75rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.bd-mjk-side-submenu a:hover {
    color: var(--bd-gold);
}

/* Columns */
.bd-mjk-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.bd-mjk-border-left {
    border-left: 1px solid #eaeaea;
}

.bd-mjk-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bd-mjk-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #444;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.bd-mjk-link:hover {
    color: var(--bd-gold);
}

.bd-mjk-link .bd-menu-icon {
    width: 20px;
    margin-right: 12px;
    color: #777;
    font-size: 1rem;
    text-align: center;
}

.bd-mjk-link:hover .bd-menu-icon {
    color: var(--bd-gold);
}

/* Promo Banner */
.bd-mjk-promo {
    flex: 0 0 350px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.bd-mjk-promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.bd-mjk-promo-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px 30px 40px 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 60%);
}

.bd-mjk-promo-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #111;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s;
}

.bd-mjk-promo-btn:hover {
    background: var(--bd-gold);
    color: #fff;
}



/* --- LUXURY HERO FIXES --- */
.bd-hero-slide .bd-hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 75vh !important;
}

.bd-hero-slide .bd-hero-visual {
    display: block !important;
    flex: 1.2 !important;
    height: 100% !important;
    width: auto !important;
    position: relative !important;
}

.bd-hero-slide .bd-hero-image-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    background: transparent !important;
    display: block !important;
}

.bd-hero-slide .bd-hero-text {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 80px 8% !important;
    height: auto !important;
}

.bd-hero-brand-label, .bd-hero-coll-label {
    display: none !important;
}




/* --- LUXURY HERO FIXES V2 --- */
.bd-hero-slide .bd-hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 75vh !important;
}

.bd-hero-slide .bd-hero-visual {
    display: block !important;
    flex: 1 !important;
    min-width: 50% !important;
    height: 100% !important;
    position: relative !important;
}

.bd-hero-slide .bd-hero-image-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    background: #f4f1ea !important;
    display: block !important;
}

.bd-hero-image-wrap img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.bd-hero-slide .bd-hero-text {
    flex: 1 !important;
    min-width: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 80px 8% !important;
    height: auto !important;
}

.bd-hero-brand-label, .bd-hero-coll-label {
    display: none !important;
}

/* --- BULLETPROOF FONTAWESOME FIX --- */
.bdf-footer i.fas, .bdf-footer i.fab, .bdf-footer i.fa, .bdf-footer i.fa-solid, .bdf-footer i.fa-brands,
footer * i.fas, footer * i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
}
.bdf-footer i.fas, .bdf-footer i.fa-solid, footer * i.fas {
    font-weight: 900 !important;
}
.bdf-footer i.fab, .bdf-footer i.fa-brands, footer * i.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

