/* ============================================================
   BUSINESS VIEW 6  ·  DARK LUXURY EDITORIAL
   Fonts : DM Serif Display (headings) + Outfit (body)
   Palette: Deep navy · Charcoal · Gold accent (#d4a537)
   Layout: Full-bleed hero → clean content sections
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    --gold: #d4a537;
    --gold-l: #e8bc55;
    --gold-d: #b8892a;
    --gold-faint: rgba(212, 165, 55, .08);
    --gold-faint2: rgba(212, 165, 55, .14);
    --gold-glow: rgba(212, 165, 55, .25);
    --gold-brd: rgba(212, 165, 55, .28);

    --navy: #0d1117;
    --navy-2: #161b24;
    --navy-3: #1e2535;
    --navy-4: #252d3d;
    --navy-5: #2e3a50;

    --slate: #3a4560;
    --slate-l: #4d5a78;

    --ink: #f0eeea;
    --ink-2: #d5d0c8;
    --ink-3: #a9a49c;
    --ink-4: #716d67;
    --ink-5: #454240;

    --white: #ffffff;
    --brd: rgba(255, 255, 255, .07);
    --brd-2: rgba(255, 255, 255, .12);
    --brd-3: rgba(255, 255, 255, .18);

    --green: #22c55e;
    --red: #ef4444;

    --sh-sm: 0 2px 12px rgba(0, 0, 0, .3);
    --sh-md: 0 6px 28px rgba(0, 0, 0, .4);
    --sh-lg: 0 12px 48px rgba(0, 0, 0, .5);
    --sh-xl: 0 20px 72px rgba(0, 0, 0, .55);
    --sh-gold: 0 6px 24px rgba(212, 165, 55, .3);

    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 22px;
    --r-2xl: 32px;
    --r-full: 9999px;

    --ts: all .3s cubic-bezier(.4, 0, .2, 1);
    --t: all .2s ease;

    --fh: 'DM Serif Display', Georgia, serif;
    --fb: 'Outfit', -apple-system, sans-serif;

    --hero-h: 100vh;
    --topbar-h: 68px;
    --container: 1240px;
    --gap: 2rem;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar-h) + 16px);
}

body {
    font-family: var(--fb);
    background: var(--navy);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--fb);
    cursor: pointer;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-5);
    border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-d);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* ── ROOT WRAPPER ────────────────────────────────────────────── */
.bv6-root {
    min-height: 100vh;
}

.bv6-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.bv6-hero {
    position: relative;
    height: var(--hero-h);
    min-height: 600px;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background layers */
.bv6-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bv6-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 12s ease;
    animation: slowZoom 14s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

.bv6-hero-bg iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.1);
}

.bv6-hero-bg-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--navy-2) 0%, var(--navy-4) 50%, var(--navy-3) 100%);
}

/* Gradient vignette */
.bv6-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(13, 17, 23, .88) 0%, rgba(13, 17, 23, .35) 55%, rgba(13, 17, 23, .2) 100%),
    linear-gradient(to top, rgba(13, 17, 23, .9) 0%, rgba(13, 17, 23, .1) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(13, 17, 23, .55) 0%, transparent 22%);
}

/* Film grain overlay */
.bv6-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.bv6-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease;
    border-bottom: 1px solid transparent;
}

.bv6-topbar.scrolled {
    background: rgba(13, 17, 23, .92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--brd);
    box-shadow: var(--sh-md);
}

.bv6-topbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

.bv6-topbar-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 1.5px solid var(--gold-brd);
    background: var(--navy-3);
    flex-shrink: 0;
}

.bv6-topbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv6-topbar-info {
    display: flex;
    flex-direction: column;
}

.bv6-topbar-name {
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: .01em;
}

.bv6-topbar-verified {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* Nav */
.bv6-topbar-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex: 1;
    justify-content: center;
}

.bv6-nav-lnk {
    position: relative;
    padding: .45rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .5px;
    transition: color .2s;
    white-space: nowrap;
}

.bv6-nav-lnk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 1.5px;
    background: var(--gold);
    border-radius: var(--r-full);
    transition: transform .25s ease;
}

.bv6-nav-lnk:hover {
    color: rgba(255, 255, 255, .85);
}

.bv6-nav-lnk.active {
    color: var(--gold);
}

.bv6-nav-lnk.active::after {
    transform: translateX(-50%) scaleX(1);
}

.bv6-nav-sup {
    font-size: .5rem;
    font-weight: 800;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--r-full);
    padding: .05rem .32rem;
    margin-left: .15rem;
    vertical-align: super;
}

/* Topbar actions */
.bv6-topbar-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
    margin-left: auto;
}

.bv6-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    border: 1px solid var(--brd-2);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: var(--ts);
    flex-shrink: 0;
}

.bv6-icon-btn:hover {
    background: var(--gold-faint2);
    border-color: var(--gold-brd);
    color: var(--gold);
    transform: scale(1.07);
}

.bv6-icon-btn.saved {
    background: rgba(239, 68, 68, .15);
    border-color: rgba(239, 68, 68, .3);
    color: #ef4444;
}

.bv6-book-btn {
    padding: .5rem 1.3rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--ts);
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
}

.bv6-book-btn:hover {
    background: var(--gold-l);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

/* Share */
.bv6-share-wrap {
    position: relative;
}

.bv6-share-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--navy-3);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-lg);
    padding: .75rem;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.96);
    transition: var(--ts);
    z-index: 400;
    box-shadow: var(--sh-xl);
}

.bv6-share-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bv6-share-label {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: .5rem;
    padding: 0 .4rem;
}

.bv6-share-opt {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .55rem .6rem;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t);
    color: var(--ink-2);
    font-size: .8rem;
}

.bv6-share-opt:hover {
    background: var(--gold-faint2);
    color: var(--gold);
}

.bv6-share-opt i {
    width: 14px;
    text-align: center;
    font-size: .85rem;
}

.bv6-share-opt span {
    font-size: .78rem;
    font-weight: 500;
}

/* Mobile menu btn */
.bv6-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4.5px;
    width: 38px;
    height: 38px;
    padding: 0 9px;
    border: 1px solid var(--brd-2);
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .06);
    align-items: center;
    justify-content: center;
}

.bv6-mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, .7);
    border-radius: var(--r-full);
    transition: var(--t);
}

/* ── HERO CONTENT ───────────────────────────────────────────── */
.bv6-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--topbar-h) + 2rem) 4rem 5rem;
    max-width: 100%;
}

.bv6-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 1.2rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.bv6-eyebrow-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    border-radius: var(--r-full);
}

.bv6-eyebrow-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
}

.bv6-hero-title {
    font-family: var(--fh);
    font-size: clamp(2.8rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -.02em;
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

.bv6-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
}

.bv6-hero-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.bv6-hero-meta-item i {
    color: var(--gold);
    font-size: .75rem;
}

.bv6-hero-meta-sep {
    color: rgba(255, 255, 255, .2);
}

.bv6-hero-ctas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    max-width: 400px;
}

.bv6-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    padding: .45rem .65rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--r-md);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .25px;
    text-transform: uppercase;
    transition: var(--ts);
    border: none;
    width: 100%;
    min-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv6-cta-primary:hover {
    background: var(--gold-l);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: var(--sh-gold);
}

.bv6-cta-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    padding: .45rem .65rem;
    border: 1.5px solid var(--brd-3);
    color: rgba(255, 255, 255, .75);
    border-radius: var(--r-md);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .25px;
    transition: var(--ts);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .04);
    width: 100%;
    min-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv6-cta-ghost:hover {
    border-color: var(--gold-brd);
    color: var(--gold);
    background: var(--gold-faint);
}

.bv6-cta-ghost i {
    transition: transform .3s ease;
}

.bv6-cta-ghost:hover i {
    transform: translateY(1px);
}

/* ── HERO RIBBON ────────────────────────────────────────────── */
.bv6-hero-ribbon {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 4rem;
    background: linear-gradient(
        180deg,
        rgba(13, 17, 23, .95) 0%,
        rgba(13, 17, 23, .85) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(212, 165, 55, .15);
    border-bottom: 1px solid rgba(212, 165, 55, .12);
    flex-shrink: 0;
    flex-wrap: wrap;
    box-shadow: inset 0 1px 12px rgba(212, 165, 55, .08),
    0 4px 24px rgba(0, 0, 0, .3);
    transition: all .4s ease;
    box-sizing: border-box;
    width: 100%;
}

.bv6-ribbon-item {
    padding: 1.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    text-align: center;
    position: relative;
    transition: transform .3s ease, filter .3s ease;
}

.bv6-ribbon-item:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.bv6-ribbon-div {
    width: 1.5px;
    height: 36px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 165, 55, .25) 40%,
        rgba(212, 165, 55, .25) 60%,
        transparent 100%
    );
    flex-shrink: 0;
    border-radius: 1px;
}

.bv6-ribbon-val {
    font-family: var(--fh);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-shadow: 0 2px 8px rgba(212, 165, 55, .15);
    transition: color .3s ease;
}

.bv6-ribbon-key {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    transition: color .3s ease;
}

.bv6-ribbon-item:hover .bv6-ribbon-val {
    color: var(--gold-l);
    text-shadow: 0 4px 16px rgba(212, 165, 55, .3);
}

.bv6-ribbon-item:hover .bv6-ribbon-key {
    color: rgba(255, 255, 255, .75);
}

.open-today {
    color: var(--green);
    text-shadow: 0 2px 12px rgba(34, 197, 94, .25);
}

.closed-today {
    color: var(--red);
    text-shadow: 0 2px 12px rgba(239, 68, 68, .25);
}

.bv6-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: livePulse 2s infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, .4);
}

/* Scroll cue */
.bv6-scroll-cue {
    position: absolute;
    bottom: 90px;
    right: 4rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: .5;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.bv6-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: var(--r-full);
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.bv6-scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: var(--r-full);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* ── MOBILE NAV OVERLAY ─────────────────────────────────────── */
.bv6-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--navy-2);
    z-index: 500;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    border-left: 1px solid var(--brd);
}

.bv6-mobile-nav.open {
    transform: translateX(0);
}

.bv6-mobile-nav-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 38px;
    height: 38px;
    border: 1px solid var(--brd-2);
    border-radius: var(--r-full);
    background: transparent;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--t);
}

.bv6-mobile-nav-close:hover {
    background: var(--gold-faint2);
    color: var(--gold);
    border-color: var(--gold-brd);
}

.bv6-mobile-nav-lnk {
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    border-radius: var(--r-sm);
    transition: var(--t);
}

.bv6-mobile-nav-lnk:hover {
    background: var(--gold-faint);
    color: var(--gold);
}

.bv6-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 499;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
}

.bv6-mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════ */
.bv6-main {
    background: var(--navy);
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.bv6-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--brd);
}

.bv6-section:last-child {
    border-bottom: none;
}

.bv6-sec-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .55rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bv6-sec-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    border-radius: var(--r-full);
}

.bv6-sec-heading {
    font-family: var(--fh);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.bv6-sec-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.bv6-link-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--t);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
}

.bv6-link-btn:hover {
    border-bottom-color: var(--gold);
    gap: .65rem;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.bv6-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.bv6-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   OVERVIEW
   ═══════════════════════════════════════════════════════════════ */
.bv6-overview-section {
    background: var(--navy);
}

.bv6-overview-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bv6-about-text {
    color: var(--ink-2);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.bv6-about-text p {
    margin-bottom: 1rem;
}

/* Facilities */
.bv6-facilities-block {
    margin-top: 2rem;
}

.bv6-fac-title {
    font-family: var(--fh);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.bv6-fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: .75rem;
}

.bv6-fac-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    padding: 1rem .65rem;
    border: 1px solid var(--brd);
    border-radius: var(--r-lg);
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--navy-3);
    transition: var(--ts);
}

.bv6-fac-item:hover {
    border-color: var(--gold-brd);
    background: var(--gold-faint);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--sh-sm);
}

.bv6-fac-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--navy-4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--t);
}

.bv6-fac-item:hover .bv6-fac-icon {
    background: var(--gold);
}

.bv6-fac-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(.9);
    transition: filter .2s;
}

.bv6-fac-item:hover .bv6-fac-icon img {
    filter: brightness(0) invert(1);
}

/* ── CONTACT CARD ───────────────────────────────────────────── */
.bv6-contact-card {
    background: var(--navy-2);
    border: 1px solid var(--brd);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
    margin-bottom: 1.2rem;
}

.bv6-contact-card-head {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--brd);
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
}

.bv6-contact-logo {
    width: 54px;
    height: 54px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 2px solid var(--gold-brd);
    flex-shrink: 0;
    background: var(--navy-4);
}

.bv6-contact-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv6-contact-name {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
}

.bv6-hero-company-content {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.bv6-hero-company-content p {
    display: inline;
    margin: 0;
}

.bv6-hero-company-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.bv6-hero-company-content a:hover {
    color: var(--gold-l);
    text-decoration: underline;
}

.bv6-contact-type {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.bv6-contact-list {
    padding: .5rem 0;
}

.bv6-inner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--navy-4);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-sm);
}

.bv6-inner-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.bv6-inner-qr-head {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.bv6-inner-qr-head i {
    font-size: 0.75rem;
    color: var(--gold);
}

.bv6-inner-qr img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid var(--gold-brd);
    border-radius: var(--r-sm);
    padding: 0.2rem;
    background: var(--white);
}

.bv6-inner-info {
    font-size: 0.78rem;
    color: var(--ink-2);
    line-height: 1.6;
    text-align: center;
}

.bv6-inner-info p {
    margin: 0 0 0.25rem 0;
}

.bv6-inner-info p:last-child {
    margin-bottom: 0;
}

.bv6-inner-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.bv6-inner-info a:hover {
    color: var(--gold-l);
    text-decoration: underline;
}

.bv6-inner-info strong {
    color: var(--ink);
}

.bv6-contact-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .75rem 1.5rem;
    transition: background .15s;
    position: relative;
}

.bv6-contact-row:hover {
    background: var(--gold-faint);
}

.bv6-contact-ico {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--navy-4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .78rem;
    flex-shrink: 0;
    border: 1px solid var(--brd);
    transition: var(--t);
}

.bv6-contact-row:hover .bv6-contact-ico {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.bv6-contact-detail {
    flex: 1;
    min-width: 0;
}

.bv6-contact-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: .1rem;
}

.bv6-contact-value {
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink-2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    transition: color .2s;
}

.bv6-contact-row:hover .bv6-contact-value {
    color: var(--gold);
}

.bv6-contact-arr {
    color: var(--ink-4);
    font-size: .72rem;
    transition: transform .2s;
}

.bv6-contact-row:hover .bv6-contact-arr {
    transform: translateX(3px);
    color: var(--gold);
}

.bv6-contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--ts);
    border: none;
    cursor: pointer;
    width: 100%;
}

.bv6-contact-cta:hover {
    background: var(--gold-l);
    color: var(--navy);
}

/* ── HOURS WIDGET ───────────────────────────────────────────── */
.bv6-hours-widget {
    background: var(--navy-2);
    border: 1px solid var(--brd);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.bv6-hours-widget-head {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-3);
    border-bottom: 1px solid var(--brd);
    background: var(--navy-3);
}

.bv6-hours-widget-head i {
    color: var(--gold);
}

.bv6-hours-widget-list {
    display: flex;
    flex-direction: column;
}

.bv6-hours-widget-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1.25rem;
    border-bottom: 1px solid var(--brd);
    transition: background .14s;
    gap: .5rem;
}

.bv6-hours-widget-row:last-child {
    border-bottom: none;
}

.bv6-hours-widget-row:hover {
    background: var(--navy-3);
}

.bv6-hours-widget-row.is-today {
    background: var(--gold-faint);
}

.bv6-hw-day {
    font-size: .75rem;
    font-weight: 600;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-shrink: 0;
}

.bv6-hours-widget-row.is-today .bv6-hw-day {
    color: var(--gold);
    font-weight: 700;
}

.bv6-hw-time {
    font-size: .73rem;
    color: var(--ink-3);
    text-align: right;
}

.bv6-hours-widget-row.is-today .bv6-hw-time {
    color: var(--ink-2);
    font-weight: 600;
}

.bv6-hw-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(212, 165, 55, .6);
}

.bv6-hw-badge {
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: .1rem .35rem;
    border-radius: var(--r-full);
}

.bv6-hw-closed {
    font-size: .68rem;
    font-weight: 700;
    color: var(--red);
}

.bv6-hw-na {
    font-size: .68rem;
    color: var(--ink-4);
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════════ */
.bv6-cats-section {
    background: var(--navy-2);
}

.bv6-cats-section .bv6-sec-row {
    padding: 0 var(--gap);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.bv6-cats-track-wrap {
    position: relative;
    overflow: visible;
    padding: .5rem 0 1.5rem;
}

.bv6-cats-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .5rem var(--gap) 1rem;
    max-width: calc(var(--container) + 2 * var(--gap));
    margin: 0 auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 165, 55, 0.3) rgba(212, 165, 55, 0.1);
    -webkit-overflow-scrolling: touch;
}

.bv6-cats-track::-webkit-scrollbar {
    height: 6px;
}

.bv6-cats-track::-webkit-scrollbar-track {
    background: rgba(212, 165, 55, 0.1);
    border-radius: 3px;
}

.bv6-cats-track::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 55, 0.3);
    border-radius: 3px;
}

.bv6-cats-track::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 165, 55, 0.5);
}

.bv6-track-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--navy-2);
    border: 1px solid var(--brd-2);
    color: var(--ink-2);
    font-size: .82rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: var(--ts);
    box-shadow: var(--sh-sm);
}

.bv6-track-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--sh-gold);
}

.bv6-track-prev {
    left: 1rem;
}

.bv6-track-next {
    right: 1rem;
}

/* Category tile */
.bv6-cat-tile {
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border: 1px solid var(--brd);
    transition: var(--ts);
    position: relative;
    background: var(--navy-3);
}

.bv6-cat-tile:hover {
    border-color: var(--gold-brd);
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.bv6-cat-tile-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: var(--navy-4);
}

.bv6-cat-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.bv6-cat-tile:hover .bv6-cat-tile-img img {
    transform: scale(1.08);
}

.bv6-cat-tile-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ink-4);
    opacity: .4;
}

.bv6-cat-tile-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .5) 100%);
}

.bv6-cat-tile-body {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    position: relative;
}

.bv6-cat-tile-idx {
    font-family: var(--fh);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    opacity: .15;
    position: absolute;
    top: .5rem;
    right: .85rem;
    line-height: 1;
    transition: opacity .3s;
}

.bv6-cat-tile:hover .bv6-cat-tile-idx {
    opacity: .25;
}

.bv6-cat-tile-name {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
}

.bv6-cat-tile-cnt {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--ink-3);
}

.bv6-cat-tile-arrow {
    position: absolute;
    bottom: 1rem;
    right: .9rem;
    width: 28px;
    height: 28px;
    border-radius: var(--r-full);
    background: transparent;
    border: 1px solid var(--brd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-4);
    font-size: .7rem;
    transition: var(--ts);
}

.bv6-cat-tile:hover .bv6-cat-tile-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH / FILTER
   ═══════════════════════════════════════════════════════════════ */
.bv6-search-section {
    background: var(--navy);
}

.bv6-search-box {
    background: var(--navy-2);
    border: 1px solid var(--brd);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-md);
}

.bv6-search-box-inner {
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
    padding: 2rem;
    position: relative;
}

.bv6-search-box-inner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.bv6-sform-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.bv6-sform-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.bv6-sform-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.bv6-sform-label i {
    color: var(--gold);
    font-size: .75rem;
}

.bv6-sform-input {
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-md);
    color: var(--ink);
    font-family: var(--fb);
    font-size: .85rem;
    outline: none;
    transition: var(--t);
    appearance: none;
    width: 100%;
}

.bv6-sform-input::placeholder {
    color: rgba(255, 255, 255, .22);
}

.bv6-sform-input:focus, .bv6-sform-input:hover {
    border-color: var(--gold-brd);
    background: var(--gold-faint);
    box-shadow: 0 0 0 3px var(--gold-faint2);
}

.bv6-sform-input option {
    background: var(--navy-3);
    color: var(--ink);
}

.bv6-sform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .3px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--ts);
    min-width: 120px;
}

.bv6-sform-btn:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

/* Occupancy */
.bv6-occ-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
}

.bv6-occ-trigger {
    width: 100%;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-md);
    color: var(--ink);
    font-family: var(--fb);
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--t);
}

.bv6-occ-trigger:hover {
    border-color: var(--gold-brd);
    background: var(--gold-faint);
}

.bv6-occ-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 280px;
    background: var(--navy-2);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-xl);
    padding: 1.25rem;
    box-shadow: var(--sh-xl);
    z-index: 100;
    display: none;
}

.bv6-occ-panel.open {
    display: block;
    animation: panelFadeIn .2s ease;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.bv6-occ-panel-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brd);
}

.bv6-occ-panel-hd h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
}

.bv6-occ-panel-hd button {
    width: 28px;
    height: 28px;
    border-radius: var(--r-full);
    border: 1px solid var(--brd);
    background: transparent;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    cursor: pointer;
    transition: var(--t);
}

.bv6-occ-panel-hd button:hover {
    background: var(--gold-faint);
    color: var(--gold);
    border-color: var(--gold-brd);
}

.bv6-occ-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 0;
    border-bottom: 1px solid var(--brd);
}

.bv6-occ-row:last-of-type {
    border-bottom: none;
}

.bv6-occ-row label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink-2);
    text-transform: capitalize;
}

.bv6-counter {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.bv6-ctr-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--r-full);
    border: 1px solid var(--brd-2);
    background: var(--navy-4);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    transition: var(--ts);
}

.bv6-ctr-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.1);
}

.bv6-counter span {
    font-weight: 700;
    color: var(--ink);
    min-width: 1.8rem;
    text-align: center;
    font-size: .92rem;
}

.bv6-occ-apply {
    width: 100%;
    padding: .75rem;
    margin-top: 1rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ts);
}

.bv6-occ-apply:hover {
    background: var(--gold-l);
    transform: translateY(-1px);
}

/* Filter row */
.bv6-filter-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid var(--brd);
}

.bv6-filter-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-4);
    white-space: nowrap;
}

.bv6-chips-wrap {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    flex: 1;
}

.bv6-chip {
    padding: .38rem .9rem;
    border: 1px solid var(--brd-2);
    border-radius: var(--r-full);
    background: transparent;
    color: var(--ink-3);
    font-family: var(--fb);
    font-size: .73rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ts);
    white-space: nowrap;
}

.bv6-chip:hover {
    border-color: var(--gold-brd);
    background: var(--gold-faint);
    color: var(--gold);
}

.bv6-chip.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(212, 165, 55, .3);
}

/* Quick search */
.bv6-qs-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    margin-left: auto;
}

.bv6-qs-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-4);
    font-size: .75rem;
    pointer-events: none;
}

.bv6-qs-input {
    width: 100%;
    padding: .48rem 1rem .48rem 2.25rem;
    border: 1px solid var(--brd-2);
    border-radius: var(--r-full);
    background: var(--navy-3);
    color: var(--ink);
    font-family: var(--fb);
    font-size: .78rem;
    outline: none;
    transition: var(--t);
}

.bv6-qs-input::placeholder {
    color: var(--ink-4);
}

.bv6-qs-input:focus, .bv6-qs-input:hover {
    border-color: var(--gold-brd);
    box-shadow: 0 0 0 3px var(--gold-faint2);
}

/* Suggestions */
.bv6-sugg-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--navy-2);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    z-index: 60;
    max-height: 240px;
    overflow-y: auto;
    animation: panelFadeIn .2s ease;
}

.bv6-sugg-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem .9rem;
    cursor: pointer;
    border-bottom: 1px solid var(--brd);
    transition: background .14s;
}

.bv6-sugg-item:last-child {
    border-bottom: none;
}

.bv6-sugg-item:hover {
    background: var(--gold-faint);
}

.bv6-sugg-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
}

.bv6-sugg-cat {
    font-size: .65rem;
    color: var(--ink-3);
}

.bv6-sugg-empty {
    padding: 1rem;
    text-align: center;
    color: var(--ink-4);
    font-size: .78rem;
}

/* Active filters */
.bv6-active-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .65rem 2rem;
    background: var(--gold-faint);
    border-top: 1px solid var(--gold-brd);
}

.bv6-active-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.bv6-active-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.bv6-active-tag {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .18rem .55rem;
    background: var(--navy-2);
    border: 1px solid var(--brd-2);
    border-radius: var(--r-full);
    font-size: .72rem;
    color: var(--ink-2);
}

.bv6-active-tag i {
    cursor: pointer;
    color: var(--ink-4);
    transition: color .15s;
}

.bv6-active-tag i:hover {
    color: var(--red);
}

.bv6-clear-all {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .3rem;
    border: none;
    background: none;
    color: var(--red);
    font-family: var(--fb);
    font-size: .72rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}

.bv6-clear-all:hover {
    opacity: .7;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════════════ */
.bv6-products-section {
    background: var(--navy-2);
}

.bv6-count-badge {
    padding: .35rem .85rem;
    background: var(--navy-4);
    border: 1px solid var(--brd);
    border-radius: var(--r-full);
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-3);
    flex-shrink: 0;
}

/* Product grid */
.bv6-prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Product card */
.bv6-card {
    background: var(--navy-3);
    border: 1px solid var(--brd);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--ts);
    position: relative;
}

.bv6-card:hover {
    border-color: var(--gold-brd);
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
}

.bv6-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--navy-4);
    flex-shrink: 0;
}

.bv6-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.bv6-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.bv6-card:hover .bv6-card-img img {
    transform: scale(1.07);
}

.bv6-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--ink-4);
    opacity: .35;
}

.bv6-product-no-image i {
    font-size: 2.5rem;
}

.bv6-product-no-image span {
    font-size: .72rem;
    font-weight: 500;
}

/* Card image hover overlay */
.bv6-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    z-index: 1;
}

.bv6-card:hover .bv6-card-overlay {
    background: rgba(0, 0, 0, .35);
}

.bv6-card-view {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(212, 165, 55, .9);
    color: var(--navy);
    padding: .5rem 1.2rem;
    border-radius: var(--r-full);
    font-size: .76rem;
    font-weight: 800;
    transform: scale(.9);
    opacity: 0;
    transition: var(--ts);
    letter-spacing: .3px;
}

.bv6-card:hover .bv6-card-view {
    transform: scale(1);
    opacity: 1;
}

.bv6-card-badges {
    position: absolute;
    top: .7rem;
    left: .7rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    z-index: 2;
}

.bv6-badge-discount {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .2rem .5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--r-full);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .5px;
}

.bv6-badge-featured {
    display: inline-flex;
    align-items: center;
    padding: .2rem .5rem;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--r-full);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.bv6-card-avail-dot {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    z-index: 2;
    border: 2px solid rgba(0, 0, 0, .35);
}

.bv6-card-avail-dot.on {
    background: var(--green);
}

.bv6-card-avail-dot.off {
    background: var(--red);
}

/* Card body */
.bv6-card-body {
    padding: 1.1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bv6-card-cat-lbl {
    display: inline-block;
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-faint);
    border: 1px solid var(--gold-brd);
    padding: .12rem .48rem;
    border-radius: var(--r-full);
    margin-bottom: .55rem;
    width: fit-content;
}

.bv6-card-title {
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: .7rem;
    word-break: break-word;
}

.bv6-card-title a {
    transition: color .2s;
}

.bv6-card-title a:hover {
    color: var(--gold);
}

.bv6-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: .6rem;
    border-top: 1px solid var(--brd);
}

.bv6-card-price {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
}

.bv6-card-price-old {
    font-size: .75rem;
    color: var(--ink-4);
    text-decoration: line-through;
    margin-left: .2rem;
}

.bv6-card-status {
    font-size: .6rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: var(--r-full);
    letter-spacing: .3px;
    white-space: nowrap;
}

.bv6-card-status.avail {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, .25);
}

.bv6-card-status.unavail {
    background: rgba(239, 68, 68, .1);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, .2);
}

.bv6-card-meta-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .55rem;
}

.bv6-card-meta-row span {
    display: flex;
    align-items: center;
    gap: .22rem;
    font-size: .7rem;
    color: var(--ink-4);
}

.bv6-card-meta-row span i {
    color: var(--gold);
    font-size: .65rem;
}

.bv6-card-desc {
    font-size: .77rem;
    color: var(--ink-3);
    line-height: 1.55;
    margin-top: .4rem;
}

/* Card footer */
.bv6-card-footer {
    padding: 0 1.2rem 1.2rem;
}

.bv6-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .7rem;
    background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: var(--navy);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-position .4s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.bv6-card-cta:hover {
    background-position: 0% 0;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.bv6-card-cta-dis {
    background: var(--navy-5) !important;
    color: var(--ink-4) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--brd) !important;
    opacity: .6 !important;
}

.bv6-card-cta-dis:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Empty state */
.bv6-empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.bv6-empty-icon {
    font-size: 3.5rem;
    color: var(--ink-5);
    margin-bottom: 1.25rem;
}

.bv6-empty-state h3 {
    font-family: var(--fh);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink-3);
    margin-bottom: .5rem;
}

.bv6-empty-state p {
    font-size: .88rem;
    color: var(--ink-4);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.bv6-gallery-section {
    background: var(--navy);
}

.bv6-gallery-section .bv6-container {
    margin-bottom: 1.5rem;
}

.bv6-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: .85rem;
    padding: 0 var(--gap);
    max-width: calc(var(--container) + 2 * var(--gap));
    margin: 0 auto;
}

.bv6-mosaic-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--navy-3);
    border: 1px solid var(--brd);
    transition: var(--ts);
}

.bv6-mosaic-item:hover {
    border-color: var(--gold-brd);
    box-shadow: var(--sh-md);
}

.bv6-mosaic-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.bv6-mosaic-4 {
    grid-column: span 2;
}

.bv6-mosaic-7 {
    grid-column: span 2;
}

.bv6-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.bv6-mosaic-item:hover img {
    transform: scale(1.06);
}

.bv6-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}

.bv6-mosaic-item:hover .bv6-mosaic-overlay {
    background: rgba(0, 0, 0, .45);
}

.bv6-mosaic-zoom {
    width: 48px;
    height: 48px;
    border-radius: var(--r-full);
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transform: scale(0) rotate(-20deg);
    transition: var(--ts);
    box-shadow: var(--sh-gold);
}

.bv6-mosaic-item:hover .bv6-mosaic-zoom {
    transform: scale(1) rotate(0);
}

/* Lightbox */
.bv6-lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    padding: 1rem;
}

.bv6-lb.active {
    opacity: 1;
    visibility: visible;
}

.bv6-lb-stage {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lbZoom .3s ease;
}

@keyframes lbZoom {
    from {
        transform: scale(.88);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.bv6-lb-stage img {
    max-width: 100%;
    max-height: 87vh;
    border-radius: var(--r-lg);
    object-fit: contain;
    box-shadow: var(--sh-xl);
}

.bv6-lb-count {
    text-align: center;
    margin-top: .65rem;
    color: rgba(255, 255, 255, .35);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bv6-lb-close {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    z-index: 10;
}

.bv6-lb-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.bv6-lb-prev, .bv6-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    z-index: 10;
}

.bv6-lb-prev {
    left: 1.2rem;
}

.bv6-lb-next {
    right: 1.2rem;
}

.bv6-lb-prev:hover, .bv6-lb-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════
   INFO: MAP + HOURS
   ═══════════════════════════════════════════════════════════════ */
.bv6-info-section {
    background: var(--navy-2);
}

.bv6-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.bv6-map-panel {
    background: var(--navy-3);
    border: 1px solid var(--brd);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.bv6-map-el {
    height: 320px;
    width: 100%;
    display: block;
}

.bv6-map-foot {
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--brd);
    background: var(--navy-4);
}

.bv6-map-addr {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--ink-3);
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.bv6-map-addr i {
    color: var(--gold);
    flex-shrink: 0;
}

.bv6-dir-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.1rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--fb);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ts);
    white-space: nowrap;
    flex-shrink: 0;
}

.bv6-dir-btn:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.bv6-hours-panel {
    background: var(--navy-3);
    border: 1px solid var(--brd);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.bv6-hours-panel-head {
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--navy-4);
    border-bottom: 1px solid var(--brd);
}

.bv6-hours-panel-head i {
    color: var(--gold);
    font-size: 1.1rem;
}

.bv6-hours-panel-head h3 {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
}

.bv6-hours-panel-list {
    display: flex;
    flex-direction: column;
}

.bv6-hours-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 1.5rem;
    border-bottom: 1px solid var(--brd);
    transition: background .14s;
    gap: .5rem;
}

.bv6-hours-panel-row:last-child {
    border-bottom: none;
}

.bv6-hours-panel-row:hover {
    background: var(--navy-4);
}

.bv6-hours-panel-row.is-today {
    background: var(--gold-faint);
    border-color: var(--gold-brd);
}

.bv6-hp-day {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.bv6-hours-panel-row.is-today .bv6-hp-day {
    color: var(--gold);
    font-weight: 700;
}

.bv6-hp-time {
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-3);
    text-align: right;
}

.bv6-hours-panel-row.is-today .bv6-hp-time {
    color: var(--ink-2);
    font-weight: 600;
}

.bv6-hp-closed {
    font-size: .65rem;
    font-weight: 700;
    color: var(--red);
}

.bv6-hp-na {
    font-size: .65rem;
    color: var(--ink-4);
}

/* ═══════════════════════════════════════════════════════════════
   SELECT2 OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 42px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: var(--r-md) !important;
    background: rgba(255, 255, 255, .06) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 1rem !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--gold-brd) !important;
    box-shadow: 0 0 0 3px var(--gold-faint2) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ink) !important;
    font-family: var(--fb) !important;
    font-size: .85rem !important;
    padding-left: 0 !important;
    line-height: normal !important;
}

.select2-dropdown {
    border: 1px solid var(--brd-2) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: var(--sh-xl) !important;
    font-family: var(--fb) !important;
    background: var(--navy-3) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--gold-faint) !important;
    color: var(--gold) !important;
}

.select2-container--default .select2-results__option {
    color: var(--ink-2) !important;
}

.select2-search--dropdown .select2-search__field {
    background: var(--navy-4) !important;
    border-color: var(--brd) !important;
    color: var(--ink) !important;
}

/* ═══════════════════════════════════════════════════════════════
   DATERANGEPICKER OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
.daterangepicker {
    font-family: var(--fb) !important;
    background: var(--navy-3) !important;
    border: 1px solid var(--brd-2) !important;
    border-radius: var(--r-xl) !important;
    box-shadow: var(--sh-xl) !important;
    color: var(--ink) !important;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-color: var(--gold) !important;
}

.daterangepicker td.in-range {
    background: var(--gold-faint2) !important;
}

.daterangepicker .calendar-table {
    background: var(--navy-3) !important;
    border-color: var(--brd) !important;
}

.daterangepicker td, .daterangepicker th {
    color: var(--ink-2) !important;
}

.daterangepicker .drp-buttons {
    border-top-color: var(--brd) !important;
    background: var(--navy-4) !important;
}

.daterangepicker .drp-buttons .applyBtn {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
    font-family: var(--fb) !important;
    font-weight: 700 !important;
    border-radius: var(--r-sm) !important;
}

.daterangepicker .drp-buttons .cancelBtn {
    background: transparent !important;
    border-color: var(--brd-2) !important;
    color: var(--ink-2) !important;
    font-family: var(--fb) !important;
    border-radius: var(--r-sm) !important;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    background: var(--navy-4) !important;
    border-color: var(--brd) !important;
    color: var(--ink) !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --hero-h: 80vh;
    }

    .bv6-hero-content {
        padding: calc(var(--topbar-h) + 1.5rem) 2.5rem 4rem;
    }

    .bv6-hero-ribbon {
        padding: 1.6rem 3rem;
    }

    .bv6-ribbon-item {
        padding: 1rem 1.75rem;
    }

    .bv6-ribbon-val {
        font-size: 1.35rem;
    }

    .bv6-scroll-cue {
        right: 2rem;
    }

    .bv6-overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .bv6-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bv6-gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .bv6-mosaic-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bv6-mosaic-4 {
        grid-column: span 1;
    }

    .bv6-mosaic-7 {
        grid-column: span 1;
    }

    .bv6-topbar-nav {
        display: none;
    }

    .bv6-mobile-menu-btn {
        display: flex;
    }

    .bv6-book-btn {
        display: none;
    }

    .bv6-nav-lnk {
        padding: .4rem .55rem;
        font-size: .72rem;
    }
    .bv6-cats-track{
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --hero-h: 75vh;
        min-height: 520px;
        --gap: 1.25rem;
        --topbar-h: 60px;
    }

    .bv6-topbar {
        padding: 0 1.25rem;
    }

    .bv6-topbar-nav {
        display: none;
    }

    .bv6-mobile-menu-btn {
        display: flex;
    }

    .bv6-book-btn {
        display: none;
    }

    .bv6-hero-content {
        padding: calc(var(--topbar-h) + 1rem) 1.5rem 3.5rem;
        max-width: 100%;
    }

    .bv6-hero-title {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .bv6-hero-ctas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .55rem;
        max-width: 360px;
    }

    .bv6-cta-primary, .bv6-cta-ghost {
        padding: .4rem .6rem;
        font-size: .62rem;
        min-height: 32px;
    }

    .bv6-hero-ribbon {
        padding: 1.4rem 1.5rem;
    }

    .bv6-ribbon-item {
        padding: 0.85rem 1rem;
    }

    .bv6-ribbon-div {
        height: 24px;
    }

    .bv6-ribbon-val {
        font-size: 1.2rem;
    }

    .bv6-ribbon-key {
        font-size: .58rem;
    }

    .bv6-scroll-cue {
        display: none;
    }

    .bv6-section {
        padding: 3.5rem 0;
    }

    .bv6-overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .bv6-fac-grid {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    }

    .bv6-cats-section .bv6-sec-row {
        padding: 0 var(--gap);
    }

    .bv6-cats-track {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .bv6-prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bv6-gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        padding: 0 var(--gap);
    }

    .bv6-mosaic-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bv6-mosaic-4, .bv6-mosaic-7 {
        grid-column: span 1;
    }

    .bv6-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bv6-sform-row {
        flex-direction: column;
        gap: .75rem;
    }

    .bv6-sform-field {
        min-width: 100%;
    }

    .bv6-sform-btn {
        width: 100%;
        justify-content: center;
    }

    .bv6-filter-row {
        padding: .85rem 1.25rem;
        gap: .5rem;
    }

    .bv6-qs-wrap {
        max-width: 100%;
        min-width: 100%;
        margin-left: 0;
        margin-top: .4rem;
    }

    .bv6-search-box-inner {
        padding: 1.5rem;
    }

    .bv6-active-row {
        padding: .6rem 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 425px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 425px) {
    :root {
        --hero-h: 70vh;
        --gap: 1rem;
        --topbar-h: 56px;
    }

    .bv6-topbar {
        padding: 0 1rem;
        gap: .75rem;
    }

    .bv6-topbar-info .bv6-topbar-verified {
        display: none;
    }

    .bv6-topbar-name {
        font-size: .82rem;
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bv6-hero-content {
        padding: calc(var(--topbar-h) + .2rem) 0.1rem 0.5rem;
    }

    .bv6-hero-title {
        font-size: clamp(1.7rem, 9vw, 2.5rem);
    }

    .bv6-hero-meta {
        font-size: .72rem;
    }
    .bv6-hero-ctas{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .45rem;
        max-width: 100%;
        width: 100%;
    }

    .bv6-cta-primary {
        padding: .35rem .5rem;
        font-size: .55rem;
        min-height: 30px;
    }

    .bv6-cta-ghost {
        padding: .35rem .5rem;
        font-size: .55rem;
        min-height: 30px;
    }

    .bv6-hero-ribbon {
        padding: 1.2rem 1.1rem;
    }

    .bv6-ribbon-item {
        padding: 0.7rem 0.85rem;
    }

    .bv6-ribbon-val {
        font-size: 1rem;
    }

    .bv6-ribbon-key {
        font-size: .54rem;
    }

    .bv6-ribbon-div {
        height: 18px;
    }

    .bv6-section {
        padding: 2.8rem 0;
    }

    .bv6-sec-heading {
        font-size: 1.65rem;
    }

    .bv6-sec-row {
        margin-bottom: 1.8rem;
    }

    .bv6-info-grid {
        grid-template-columns: 1fr;
    }

    .bv6-overview-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .bv6-contact-card-head {
        padding: 1.1rem;
        gap: .75rem;
    }

    .bv6-hero{
        min-height: 10px;
    }

    .bv6-contact-logo {
        width: 44px;
        height: 44px;
    }

    .bv6-contact-row {
        padding: .6rem 1rem;
    }

    .bv6-prod-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: .75rem;
    }

    .bv6-card-body {
        padding: .85rem .9rem;
    }

    .bv6-card-footer {
        padding: 0 .9rem .9rem;
    }

    .bv6-card-img {
        height: 155px;
    }

    .bv6-card-title {
        font-size: .86rem;
    }

    .bv6-card-price {
        font-size: .96rem;
    }

    .bv6-card-cta {
        padding: .6rem;
        font-size: .72rem;
    }

    .bv6-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }

    .bv6-mosaic-1 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bv6-map-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .bv6-chips-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .bv6-chips-wrap::-webkit-scrollbar {
        display: none;
    }

    .bv6-lb-prev {
        left: .4rem;
    }

    .bv6-lb-next {
        right: .4rem;
    }

    .bv6-lb-prev, .bv6-lb-next {
        width: 38px;
        height: 38px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 320px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 320px) {
    :root {
        --hero-h: 65vh;
        --gap: .85rem;
    }

    .bv6-topbar {
        padding: 0 .85rem;
    }

    .bv6-topbar-logo {
        width: 34px;
        height: 34px;
    }

    .bv6-topbar-name {
        font-size: .75rem;
        max-width: 100px;
    }

    .bv6-hero-content {
        padding: calc(var(--topbar-h) + .5rem) .9rem 3.2rem;
    }

    .bv6-hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }

    .bv6-hero-eyebrow {
        font-size: .56rem;
    }

    .bv6-cta-primary {
        padding: .6rem 1rem;
        font-size: .7rem;
    }

    .bv6-hero-ribbon {
        padding: 1rem .9rem;
    }

    .bv6-ribbon-item {
        padding: 0.6rem 0.7rem;
    }

    .bv6-ribbon-val {
        font-size: 0.9rem;
    }

    .bv6-ribbon-key {
        font-size: .5rem;
    }

    .bv6-ribbon-div {
        height: 14px;
    }

    .bv6-prod-grid {
        grid-template-columns: 1fr;
    }

    .bv6-card-img {
        height: 180px;
    }

    .bv6-gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .bv6-mosaic-1, .bv6-mosaic-4, .bv6-mosaic-7 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bv6-sec-heading {
        font-size: 1.45rem;
    }

    .bv6-section {
        padding: 2.2rem 0;
    }

    .bv6-sec-row {
        margin-bottom: 1.4rem;
    }

    .bv6-fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bv6-hours-panel-row {
        padding: .6rem 1rem;
    }

    .bv6-map-el {
        height: 240px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOMER REVIEWS SLIDER — BV6 Dark Luxury Theme
   Palette: Deep navy · Gold accent · Cream text
   ═══════════════════════════════════════════════════════════════ */

/* Section */
.bv6-reviews-section {
    background: var(--navy-2);
    position: relative;
    overflow: hidden;
}

.bv6-reviews-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212, 165, 55, .06) 0%, transparent 68%);
    pointer-events: none;
}

.bv6-reviews-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 165, 55, .04) 0%, transparent 65%);
    pointer-events: none;
}

/* Section row (header row) */
.bv6-rv-sec-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Header badge */
.bv6-rv-hd-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212, 165, 55, .08);
    border: 1px solid var(--gold-brd);
    border-radius: var(--r-full);
    padding: .5rem 1.1rem;
    flex-shrink: 0;
}

.bv6-rv-hd-stars {
    display: flex;
    gap: .2rem;
}

.bv6-rv-hd-stars i {
    font-size: .72rem;
    color: var(--gold);
}

.bv6-rv-hd-score {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.bv6-rv-hd-sep {
    color: var(--brd-2);
    font-size: .8rem;
}

.bv6-rv-hd-count {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .3px;
}

/* ── Overview Panel ── */
.bv6-rv-overview {
    display: flex;
    align-items: stretch;
    gap: 2.2rem;
    padding: 2.2rem 2.8rem;
    background: var(--navy-3);
    border: 1px solid var(--brd);
    border-radius: var(--r-2xl);
    margin-bottom: 2.2rem;
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
}

/* Grain texture overlay */
.bv6-rv-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 55, .04) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

/* Decorative gold corner accent */
.bv6-rv-overview::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(212, 165, 55, .12) 0%, transparent 65%);
    pointer-events: none;
}

/* Score Column */
.bv6-rv-score-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.bv6-rv-score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 5px rgba(212, 165, 55, .12), 0 12px 40px rgba(212, 165, 55, .35);
    animation: bv6-rv-float 4.5s ease-in-out infinite;
    position: relative;
}

.bv6-rv-score-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(13, 17, 23, .25);
}

@keyframes bv6-rv-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.bv6-rv-score-num {
    font-family: var(--fh);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.bv6-rv-score-sub {
    font-size: .58rem;
    font-weight: 600;
    color: rgba(13, 17, 23, .65);
    margin-top: .2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.bv6-rv-stars-row {
    display: flex;
    gap: .3rem;
    margin-bottom: .55rem;
}

.bv6-rv-stars-row i {
    font-size: 1rem;
    color: var(--gold);
    filter: drop-shadow(0 0 4px rgba(212, 165, 55, .4));
}

.bv6-rv-star-half  { color: var(--gold-l) !important; }
.bv6-rv-star-empty { color: rgba(255, 255, 255, .15) !important; filter: none !important; }

.bv6-rv-based-on {
    font-size: .68rem;
    color: var(--ink-4);
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: .3px;
}

/* Divider */
.bv6-rv-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--brd-2) 40%, var(--brd-2) 60%, transparent 100%);
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

/* Bars Column */
.bv6-rv-bars-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .9rem;
    min-width: 180px;
    position: relative;
    z-index: 1;
}

.bv6-rv-bar-row {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.bv6-rv-bar-lbl {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 700;
    color: var(--ink-3);
    min-width: 30px;
}

.bv6-rv-bar-lbl i {
    font-size: .58rem;
    color: var(--gold);
}

.bv6-rv-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--r-full);
    overflow: visible;
    position: relative;
}

.bv6-rv-bar-fill {
    height: 100%;
    border-radius: var(--r-full);
    background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold) 60%, var(--gold-l) 100%);
    width: 0%;
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.bv6-rv-bar-fill::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-l);
    box-shadow: 0 0 8px rgba(212, 165, 55, .6);
}

.bv6-rv-bar-count {
    font-size: .65rem;
    font-weight: 700;
    color: var(--ink-4);
    min-width: 16px;
    text-align: right;
}

/* Stats Column */
.bv6-rv-stats-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: .75rem;
    flex-shrink: 0;
    min-width: 118px;
    position: relative;
    z-index: 1;
}

.bv6-rv-stat {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--brd);
    border-radius: var(--r-md);
    padding: .88rem 1rem;
    text-align: center;
    transition: var(--t);
}

.bv6-rv-stat:hover {
    background: var(--gold-faint);
    border-color: var(--gold-brd);
}

.bv6-rv-stat-val {
    font-family: var(--fh);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: .22rem;
    text-shadow: 0 2px 10px rgba(212, 165, 55, .2);
}

.bv6-rv-stat-lbl {
    font-size: .56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--ink-4);
}

/* ── Featured Review ── */
.bv6-rv-featured {
    position: relative;
    background: var(--navy-3);
    border: 1px solid var(--gold-brd);
    border-radius: var(--r-xl);
    padding: 2rem 2.4rem;
    margin-bottom: 2.2rem;
    overflow: hidden;
}

.bv6-rv-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.bv6-rv-featured::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at top right, rgba(212, 165, 55, .07) 0%, transparent 65%);
    pointer-events: none;
}

.bv6-rv-feat-crown {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--gold);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.bv6-rv-feat-crown i {
    font-size: .82rem;
    color: var(--gold-l);
    filter: drop-shadow(0 0 5px rgba(212, 165, 55, .4));
}

.bv6-rv-feat-quote {
    position: absolute;
    top: 2.8rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--gold);
    opacity: .06;
    line-height: 1;
    pointer-events: none;
}

.bv6-rv-feat-text {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink-2);
    line-height: 1.75;
    padding-left: 1.6rem;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv6-rv-feat-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.bv6-rv-feat-avatar {
    width: 46px;
    height: 46px;
    border-radius: var(--r-full);
    object-fit: cover;
    border: 2px solid var(--gold-brd);
    box-shadow: 0 4px 14px rgba(212, 165, 55, .2);
    flex-shrink: 0;
}

.bv6-rv-feat-info {
    flex: 1;
}

.bv6-rv-feat-name {
    font-family: var(--fb);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: .28rem;
}

.bv6-rv-feat-stars {
    display: flex;
    align-items: center;
    gap: .22rem;
}

.bv6-rv-feat-stars i {
    font-size: .68rem;
    color: var(--gold);
}

.bv6-rv-feat-stars span {
    font-size: .66rem;
    font-weight: 700;
    color: var(--gold);
    margin-left: .3rem;
    letter-spacing: .3px;
}

.bv6-rv-feat-pkg {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--ink-3);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--brd);
    padding: .38rem .9rem;
    border-radius: var(--r-full);
    margin-left: auto;
    flex-shrink: 0;
    transition: var(--t);
}

.bv6-rv-feat-pkg:hover {
    background: var(--gold-faint);
    border-color: var(--gold-brd);
    color: var(--gold);
}

.bv6-rv-feat-pkg i {
    color: var(--gold);
    font-size: .68rem;
}

/* ── Slider Header ── */
.bv6-rv-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.bv6-rv-slider-title {
    font-family: var(--fb);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink-3);
    position: relative;
    padding-left: 15px;
    margin: 0;
    letter-spacing: .2px;
}

.bv6-rv-slider-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: var(--r-full);
    background: linear-gradient(180deg, var(--gold-d) 0%, var(--gold-l) 100%);
}

/* Nav Buttons */
.bv6-rv-nav {
    display: flex;
    gap: .55rem;
}

.bv6-rv-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--gold-brd);
    background: transparent;
    color: var(--gold);
    font-size: .82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ts);
    flex-shrink: 0;
}

.bv6-rv-nav-btn:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
    box-shadow: var(--sh-gold);
}

.bv6-rv-nav-btn:disabled {
    opacity: .25;
    cursor: not-allowed;
    transform: none;
}

/* Viewport */
.bv6-rv-viewport {
    overflow: hidden;
    border-radius: var(--r-lg);
    position: relative;
    cursor: grab;
}

.bv6-rv-viewport:active { cursor: grabbing; }

.bv6-rv-track {
    display: flex;
    transition: transform .54s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Review Card ── */
.bv6-rv-card {
    flex-shrink: 0;
    background: var(--navy-3);
    border: 1px solid var(--brd);
    border-radius: var(--r-lg);
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--ts);
    cursor: default;
}

/* Gold top line on hover */
.bv6-rv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
    opacity: 0;
    transition: opacity .32s;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* Subtle glow on hover */
.bv6-rv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(212, 165, 55, .06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .32s;
    pointer-events: none;
    border-radius: inherit;
}

.bv6-rv-card:hover {
    border-color: var(--gold-brd);
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
}

.bv6-rv-card:hover::before,
.bv6-rv-card:hover::after { opacity: 1; }

/* Verified badge */
.bv6-rv-verified {
    position: absolute;
    top: .9rem;
    right: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .56rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: var(--gold-faint2);
    border: 1px solid var(--gold-brd);
    padding: .22rem .55rem;
    border-radius: var(--r-full);
    z-index: 2;
}

.bv6-rv-verified i {
    font-size: .62rem;
}

/* Card top row */
.bv6-rv-card-top {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding-right: 4.8rem;
}

/* Avatar */
.bv6-rv-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.bv6-rv-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--r-full);
    object-fit: cover;
    border: 2px solid var(--gold-brd);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
    display: block;
}

/* Rating dot */
.bv6-rv-rdot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: var(--r-full);
    border: 2px solid var(--navy-3);
    font-size: .58rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    line-height: 1;
}

.bv6-rv-rdot-5 { background: var(--gold); }
.bv6-rv-rdot-4 { background: #3b82f6; color: #fff; }
.bv6-rv-rdot-3 { background: #d97706; color: #fff; }
.bv6-rv-rdot-2 { background: #ea580c; color: #fff; }
.bv6-rv-rdot-1 { background: #dc2626; color: #fff; }

/* Meta */
.bv6-rv-meta { flex: 1; min-width: 0; }

.bv6-rv-name {
    font-family: var(--fb);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 .28rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv6-rv-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: .28rem;
}

.bv6-rv-stars i {
    font-size: .68rem;
    color: var(--gold);
}

.bv6-rv-stars i.bv6-rv-star-empty {
    color: rgba(255, 255, 255, .12);
}

.bv6-rv-label {
    display: inline-flex;
    align-items: center;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .18rem .55rem;
    border-radius: var(--r-full);
    background: var(--gold-faint);
    color: var(--gold);
    border: 1px solid var(--gold-brd);
}

/* Date */
.bv6-rv-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .2rem;
    flex-shrink: 0;
    font-size: .64rem;
    font-weight: 500;
    color: var(--ink-4);
    white-space: nowrap;
}

.bv6-rv-date i {
    color: var(--gold);
    font-size: .68rem;
}

/* Comment */
.bv6-rv-comment {
    position: relative;
    padding: .95rem 1rem .95rem 2.2rem;
    background: rgba(255, 255, 255, .025);
    border-radius: var(--r-md);
    border-left: 2.5px solid var(--gold-d);
    flex: 1;
}

.bv6-rv-quote-ico {
    position: absolute;
    left: .65rem;
    top: .85rem;
    font-size: .72rem;
    color: var(--gold);
    opacity: .4;
}

.bv6-rv-comment p {
    margin: 0;
    font-size: .8rem;
    line-height: 1.7;
    color: var(--ink-3);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product tag */
.bv6-rv-product {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--ink-4);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--brd);
    padding: .38rem .88rem;
    border-radius: var(--r-full);
    align-self: flex-start;
    transition: var(--t);
}

.bv6-rv-product:hover {
    background: var(--gold-faint);
    border-color: var(--gold-brd);
    color: var(--gold);
}

.bv6-rv-product i {
    color: var(--gold);
    font-size: .68rem;
}

/* ── Dots ── */
.bv6-rv-dots {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 1.8rem;
}

.bv6-rv-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--r-full);
    background: var(--navy-5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .32s ease;
    flex-shrink: 0;
}

.bv6-rv-dot.active {
    width: 28px;
    background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold-l) 100%);
    box-shadow: 0 2px 10px rgba(212, 165, 55, .4);
}

/* ── Empty State ── */
.bv6-rv-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.bv6-rv-empty-icon {
    width: 82px;
    height: 82px;
    background: var(--gold-faint);
    border: 2px dashed var(--gold-brd);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.bv6-rv-empty-icon i {
    font-size: 2.2rem;
    color: var(--gold);
    opacity: .55;
}

.bv6-rv-empty h4 {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .5rem;
}

.bv6-rv-empty p {
    font-size: .82rem;
    color: var(--ink-4);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS — 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bv6-rv-overview {
        padding: 1.8rem 2rem;
        gap: 1.8rem;
        border-radius: var(--r-xl);
    }

    .bv6-rv-score-col  { min-width: 130px; }

    .bv6-rv-score-ring { width: 104px; height: 104px; }

    .bv6-rv-score-num  { font-size: 2.4rem; }

    .bv6-rv-stats-col  { min-width: 105px; }

    .bv6-rv-stat-val   { font-size: 1.3rem; }

    .bv6-rv-card { padding: 1.35rem; }

    .bv6-rv-feat-text { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .bv6-rv-overview {
        flex-direction: column;
        align-items: center;
        padding: 1.6rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
        border-radius: var(--r-lg);
    }

    .bv6-rv-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--brd-2) 40%, var(--brd-2) 60%, transparent 100%);
        align-self: auto;
    }

    .bv6-rv-score-col { min-width: unset; width: 100%; }

    .bv6-rv-score-ring {
        width: 100px;
        height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .bv6-rv-score-num { font-size: 2.1rem; }

    .bv6-rv-stars-row  { justify-content: center; }

    .bv6-rv-bars-col {
        width: 100%;
        max-width: 380px;
    }

    .bv6-rv-stats-col {
        flex-direction: row;
        min-width: unset;
        width: 100%;
        max-width: 380px;
        gap: .7rem;
    }

    .bv6-rv-stat { flex: 1; padding: .72rem .6rem; }

    .bv6-rv-sec-row { gap: .75rem; }

    .bv6-rv-hd-badge { flex-wrap: wrap; }

    .bv6-rv-featured { padding: 1.6rem 1.7rem; }

    .bv6-rv-feat-text { font-size: .92rem; }

    .bv6-rv-feat-pkg { margin-left: 0; }

    .bv6-rv-slider-head { flex-wrap: wrap; gap: .75rem; }

    .bv6-rv-nav-btn { width: 36px; height: 36px; font-size: .75rem; }

    .bv6-rv-card { padding: 1.2rem; }

    .bv6-rv-avatar { width: 44px; height: 44px; }

    .bv6-rv-comment p { font-size: .76rem; -webkit-line-clamp: 3; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS — 425px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 425px) {
    .bv6-rv-overview {
        padding: 1.3rem;
        gap: 1.2rem;
        border-radius: var(--r-md);
    }

    .bv6-rv-score-ring { width: 90px; height: 90px; }

    .bv6-rv-score-num  { font-size: 1.9rem; }

    .bv6-rv-score-sub  { font-size: .52rem; }

    .bv6-rv-stars-row i { font-size: .85rem; }

    .bv6-rv-based-on { font-size: .63rem; }

    .bv6-rv-bar-row { gap: .6rem; }

    .bv6-rv-bar-lbl { font-size: .63rem; min-width: 26px; }

    .bv6-rv-bar-track { height: 5px; }

    .bv6-rv-bar-count { font-size: .6rem; }

    .bv6-rv-stat-val  { font-size: 1.1rem; }

    .bv6-rv-stat-lbl  { font-size: .52rem; }

    .bv6-rv-featured  { padding: 1.2rem 1.3rem; border-radius: var(--r-lg); }

    .bv6-rv-feat-quote { font-size: 2.2rem; }

    .bv6-rv-feat-text { font-size: .84rem; padding-left: 1.2rem; -webkit-line-clamp: 3; }

    .bv6-rv-feat-avatar { width: 38px; height: 38px; }

    .bv6-rv-feat-name  { font-size: .82rem; }

    .bv6-rv-feat-pkg   { font-size: .65rem; padding: .3rem .7rem; }

    .bv6-rv-card { padding: 1.05rem; gap: .8rem; border-radius: var(--r-md); }

    .bv6-rv-card-top { gap: .72rem; padding-right: 4rem; }

    .bv6-rv-avatar { width: 42px; height: 42px; }

    .bv6-rv-rdot { width: 17px; height: 17px; font-size: .52rem; }

    .bv6-rv-name   { font-size: .82rem; }

    .bv6-rv-stars i { font-size: .62rem; }

    .bv6-rv-label  { font-size: .56rem; padding: .16rem .5rem; }

    .bv6-rv-comment { padding: .8rem .9rem .8rem 1.9rem; border-radius: var(--r-sm); }

    .bv6-rv-quote-ico { font-size: .64rem; left: .6rem; top: .78rem; }

    .bv6-rv-comment p { font-size: .73rem; -webkit-line-clamp: 3; }

    .bv6-rv-date  { font-size: .6rem; }

    .bv6-rv-date i { font-size: .62rem; }

    .bv6-rv-product { font-size: .65rem; padding: .3rem .75rem; }

    .bv6-rv-verified { font-size: .52rem; padding: .18rem .5rem; }

    .bv6-rv-nav-btn { width: 33px; height: 33px; font-size: .72rem; }

    .bv6-rv-slider-title { font-size: .8rem; padding-left: 12px; }

    .bv6-rv-slider-title::before { width: 3px; height: 15px; }

    .bv6-rv-dots { margin-top: 1.3rem; }

    .bv6-rv-hd-score { font-size: .92rem; }

    .bv6-rv-hd-count { font-size: .65rem; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS — 375px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 375px) {
    .bv6-rv-overview { padding: 1.1rem; gap: 1rem; }

    .bv6-rv-score-ring { width: 82px; height: 82px; }

    .bv6-rv-score-num  { font-size: 1.7rem; }

    .bv6-rv-stats-col  { gap: .5rem; }

    .bv6-rv-stat { padding: .65rem .5rem; }

    .bv6-rv-stat-val { font-size: 1rem; }

    .bv6-rv-featured { padding: 1.1rem 1.2rem; }

    .bv6-rv-feat-text { font-size: .78rem; }

    .bv6-rv-card { padding: .9rem; gap: .7rem; }

    .bv6-rv-card-top { gap: .62rem; padding-right: 3.5rem; }

    .bv6-rv-avatar { width: 38px; height: 38px; border-width: 1.5px; }

    .bv6-rv-rdot { width: 15px; height: 15px; font-size: .48rem; bottom: -2px; right: -2px; }

    .bv6-rv-name { font-size: .78rem; }

    .bv6-rv-stars i { font-size: .58rem; }

    .bv6-rv-comment { padding: .72rem .82rem .72rem 1.75rem; }

    .bv6-rv-quote-ico { font-size: .56rem; left: .55rem; top: .7rem; }

    .bv6-rv-comment p { font-size: .68rem; line-height: 1.55; }

    /* Hide date text, keep icon */
    .bv6-rv-date span { display: none; }
    .bv6-rv-date i    { font-size: .82rem; }
    .bv6-rv-date      { flex-direction: row; gap: 0; }

    .bv6-rv-product { font-size: .6rem; padding: .26rem .65rem; }

    .bv6-rv-nav-btn { width: 30px; height: 30px; font-size: .68rem; border-width: 1.5px; }

    .bv6-rv-slider-title { font-size: .75rem; }

    .bv6-rv-dots { gap: .48rem; margin-top: 1.1rem; }

    .bv6-rv-dot { width: 6px; height: 6px; }

    .bv6-rv-dot.active { width: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS — 320px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 320px) {
    .bv6-rv-overview { padding: .92rem; gap: .88rem; border-radius: var(--r-sm); }

    .bv6-rv-score-ring {
        width: 72px;
        height: 72px;
        box-shadow: 0 0 0 4px rgba(212,165,55,.1), 0 8px 24px rgba(212,165,55,.3);
    }

    .bv6-rv-score-num { font-size: 1.5rem; }

    .bv6-rv-score-sub { font-size: .5rem; }

    .bv6-rv-stars-row i { font-size: .72rem; }

    .bv6-rv-based-on { font-size: .58rem; }

    .bv6-rv-bar-row { gap: .45rem; }

    .bv6-rv-bar-lbl { font-size: .58rem; min-width: 22px; }

    .bv6-rv-bar-track { height: 4px; }

    .bv6-rv-bar-fill::after { width: 8px; height: 8px; }

    .bv6-rv-bar-count { font-size: .56rem; min-width: 12px; }

    .bv6-rv-stats-col { gap: .4rem; }

    .bv6-rv-stat { padding: .58rem .42rem; }

    .bv6-rv-stat-val { font-size: .9rem; }

    .bv6-rv-stat-lbl { font-size: .48rem; letter-spacing: 1.2px; }

    .bv6-rv-featured { padding: .9rem 1rem; border-radius: var(--r-md); }

    .bv6-rv-feat-crown { font-size: .54rem; margin-bottom: 1rem; }

    .bv6-rv-feat-quote { font-size: 1.8rem; top: 2.2rem; left: .9rem; }

    .bv6-rv-feat-text { font-size: .72rem; padding-left: .9rem; -webkit-line-clamp: 3; margin-bottom: 1.1rem; }

    .bv6-rv-feat-avatar { width: 32px; height: 32px; }

    .bv6-rv-feat-name  { font-size: .74rem; }

    .bv6-rv-feat-stars i { font-size: .6rem; }

    .bv6-rv-feat-pkg { font-size: .58rem; padding: .22rem .55rem; gap: .32rem; }

    .bv6-rv-slider-title { font-size: .7rem; padding-left: 10px; }

    .bv6-rv-slider-title::before { width: 3px; height: 13px; }

    .bv6-rv-nav-btn { width: 27px; height: 27px; font-size: .62rem; border-width: 1.5px; }

    .bv6-rv-card { padding: .78rem; gap: .58rem; border-radius: var(--r-sm); }

    .bv6-rv-card-top { gap: .5rem; padding-right: 3.1rem; }

    .bv6-rv-avatar { width: 33px; height: 33px; border-width: 1.5px; }

    .bv6-rv-rdot { width: 13px; height: 13px; font-size: .44rem; border-width: 1.5px; bottom: -1px; right: -1px; }

    .bv6-rv-name   { font-size: .72rem; }

    .bv6-rv-stars i { font-size: .54rem; }

    .bv6-rv-label  { font-size: .5rem; padding: .12rem .42rem; }

    .bv6-rv-comment { padding: .62rem .72rem .62rem 1.6rem; border-radius: 7px; border-left-width: 2px; }

    .bv6-rv-quote-ico { font-size: .52rem; left: .45rem; top: .58rem; }

    .bv6-rv-comment p { font-size: .64rem; line-height: 1.5; -webkit-line-clamp: 3; }

    .bv6-rv-product { font-size: .58rem; padding: .22rem .58rem; gap: .34rem; }

    .bv6-rv-product i { font-size: .58rem; }

    .bv6-rv-verified { font-size: .46rem; padding: .16rem .4rem; top: .7rem; right: .7rem; }

    .bv6-rv-dots { gap: .4rem; margin-top: .95rem; }

    .bv6-rv-dot { width: 5px; height: 5px; }

    .bv6-rv-dot.active { width: 17px; }

    .bv6-rv-empty { padding: 2.8rem 1rem; }

    .bv6-rv-empty-icon { width: 62px; height: 62px; }

    .bv6-rv-empty-icon i { font-size: 1.6rem; }

    .bv6-rv-empty h4 { font-size: 1rem; }

    .bv6-rv-empty p  { font-size: .72rem; }

    .bv6-rv-hd-badge { padding: .38rem .75rem; gap: .35rem; }

    .bv6-rv-hd-score { font-size: .82rem; }

    .bv6-rv-hd-count { font-size: .6rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .bv6-topbar, .bv6-scroll-cue, .bv6-hero-ctas, .bv6-card-overlay, .bv6-track-btn, .bv6-lb {
        display: none !important;
    }

    .bv6-hero {
        height: 300px !important;
        max-height: 300px !important;
    }

    .bv6-section {
        break-inside: avoid;
    }
}
