/* ════════════════════════════════════
   CUSTOM SCROLLBARS
════════════════════════════════════ */
html, body {
    scrollbar-width: thin;
    scrollbar-color: #C9933A transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #C9933A;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #A97328;
}

/* ════════════════════════════════════
   BUTTON FIXES — ensure text is visible
════════════════════════════════════ */
.btn-gold {
    background: #C9933A !important;
    color: #fff !important;
    font-weight: 700;
}

.btn-gold:hover {
    background: #A97328 !important;
    color: #fff !important;
}

/* ════════════════════════════════════
   VISIBILITY FIXES
════════════════════════════════════ */

/* Gold CTA buttons — always white text */
.btn-gold,
a.btn-gold {
    color: #fff !important;
    background-color: #C9933A !important;
}

.btn-gold:hover,
a.btn-gold:hover {
    color: #fff !important;
    background-color: #A97328 !important;
}

/* Outline button in navbar — white border and text on dark bg */
.btn-outline {
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    background: transparent !important;
    transition: all .2s;
}

.btn-outline:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* ════════════════════════════════════
   NAVBAR — SOLID STATE
════════════════════════════════════ */

/* Solid navbar — used on light background pages (shop, product, etc.) */
#navbar.solid,
#navbar.scrolled {
    background: #0B1628 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Scrolled state — added via JS when user scrolls down */
#navbar.scrolled .btn-outline {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.35) !important;
}

/* ── Secondary Nav ── */
.subnav-link {
    display: inline-flex;
    align-items: center;
    padding: .65rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.subnav-link:hover {
    color: #0B1628;
    border-bottom-color: #C9933A;
}
.subnav-link.active {
    color: #0B1628;
    border-bottom-color: #C9933A;
    font-weight: 700;
}