#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s, border-color .35s;
}

#mainNav.nav--scrolled {
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text);
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    transition: color .2s;
    position: relative;
}

.nav-icon-btn:hover { color: var(--text); }

.cart-badge {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--gold);
    color: #0c0c0c;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-links-wrap { display: none; }
    .nav-toggle { display: block; }
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: .05em;
}

.mobile-menu-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.nav-mobile-account {
    font-size: 16px !important;
    color: var(--gold) !important;
    letter-spacing: .2em;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 16px;
}
