/* ================================================================
   NAV THEMES — 10 Unique Designs for JRodCode Portfolio
   Applied via body class: nav-theme-1 through nav-theme-10
   Each theme fully overrides the default navbar + footer styles.
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   THEME 1: Glassmorphism Float
   Frosted glass navbar that hovers above content with depth.
   ───────────────────────────────────────────────────────────── */

.nav-theme-1 .navbar {
    /* Backdrop-filter lives on ::before to avoid creating a fixed-position containing block */
}

.nav-theme-1 .navbar::before {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(28px);
    -webkit-backdrop-filter: saturate(180%) blur(28px);
    border-bottom-color: transparent;
    box-shadow: none;
}

.nav-theme-1 .navbar.is-scrolled::before {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav-theme-1 .navbar-brand {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    color: #111;
    background: linear-gradient(135deg, var(--brand-primary), #111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-theme-1 .navbar-menu {
    gap: 4px;
}

.nav-theme-1 .navbar-menu a {
    color: #444;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.42rem 1rem;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-theme-1 .navbar-menu a:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #111;
}

.nav-theme-1 .navbar-menu a.nav-link-active {
    background: rgba(0, 0, 0, 0.07);
    color: var(--brand-primary);
}

.nav-theme-1 .navbar-menu a.nav-link-active::after {
    display: none;
}

.nav-theme-1 .navbar-cart-link {
    background: var(--brand-primary) !important;
    color: #fff !important;
    width: auto !important;
    padding: 0.42rem 1rem !important;
    border-radius: 50px !important;
    gap: 6px;
}

.nav-theme-1 .navbar-cart-link:hover {
    background: var(--brand-accent, #ff7d41) !important;
    opacity: 0.9;
}

.nav-theme-1 .navbar-cart-icon {
    color: #fff !important;
    font-size: 18px !important;
}

.nav-theme-1 .navbar-cart-badge {
    top: -6px;
    right: -6px;
    background: #fff !important;
    color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

/* Theme 1 Footer */
.nav-theme-1 .footer {
    background: #0d0d12;
    color: rgba(255, 255, 255, 0.72);
    border-top: none;
    position: relative;
}

.nav-theme-1 .footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(43, 135, 184, 0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 100%, rgba(255, 125, 65, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.nav-theme-1 .footer-brand-row,
.nav-theme-1 .footer-content,
.nav-theme-1 .footer-bottom {
    position: relative;
    z-index: 1;
}

/* Brand row */
.nav-theme-1 .footer-brand-row {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav-theme-1 .footer-brand-name {
    color: #ffffff;
}

.nav-theme-1 .footer-brand-tagline {
    color: rgba(255, 255, 255, 0.38);
}

.nav-theme-1 .footer-social-link {
    color: rgba(255, 255, 255, 0.35);
}

.nav-theme-1 .footer-social-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-theme-1 .footer-brand-link img {
    filter: brightness(0) invert(1);
}

/* Columns */
.nav-theme-1 .footer-column-title {
    color: rgba(255, 255, 255, 0.35);
}

.nav-theme-1 .footer-links a {
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.2s ease;
}

.nav-theme-1 .footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Divider */
.nav-theme-1 .footer-divider {
    background: rgba(255, 255, 255, 0.07);
}

/* Bottom bar */
.nav-theme-1 .footer-bottom {
    border-top: none;
}

.nav-theme-1 .footer-copyright {
    color: rgba(255, 255, 255, 0.22);
}

.nav-theme-1 .footer-legal a {
    color: rgba(255, 255, 255, 0.22);
}

.nav-theme-1 .footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile menu for theme 1 */
@media (max-width: 768px) {
    .nav-theme-1 .navbar-menu {
        background: #ffffff;
    }

    .nav-theme-1 .navbar-link {
        color: #1d1d1f;
        border-bottom-color: rgba(0, 0, 0, 0.07);
    }

    .nav-theme-1 .navbar-link.is-active {
        color: var(--brand-primary);
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 2: Vertical Sidebar
   Fixed left sidebar on desktop, top-bar on mobile.
   ───────────────────────────────────────────────────────────── */

@media (min-width: 769px) {
    .nav-theme-2 .navbar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 72px;
        height: 100vh;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        background: #fff;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
        padding: 0;
        z-index: 1000;
        display: flex;
        align-items: stretch;
    }

    .nav-theme-2 .navbar-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 24px 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    .nav-theme-2 .navbar-brand {
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        color: var(--brand-primary);
        margin-bottom: 32px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

    .nav-theme-2 .mobile-menu-toggle {
        display: none !important;
    }

    .nav-theme-2 .navbar-menu {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        width: 100%;
        flex: 1;
        padding: 8px 0;
    }

    .nav-theme-2 .navbar-menu li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-theme-2 .navbar-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #888;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        text-align: center;
        line-height: 1.2;
    }

    .nav-theme-2 .navbar-menu a:hover,
    .nav-theme-2 .navbar-menu a.nav-link-active {
        background: rgba(0, 0, 0, 0.05);
        color: var(--brand-primary);
    }

    .nav-theme-2 .navbar-menu a.nav-link-active::after {
        display: none;
    }

    .nav-theme-2 .navbar-cart-link {
        width: 52px !important;
        height: 52px !important;
        border-radius: 12px !important;
        background: rgba(0, 0, 0, 0.04) !important;
        flex-direction: column;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .nav-theme-2 .mini-cart-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-theme-2 .mini-cart-dropdown {
        left: 72px;
        top: 0;
        right: auto;
    }

    /* Push content to the right of sidebar */
    .nav-theme-2 main,
    .nav-theme-2 .footer {
        margin-left: 72px;
    }

    .nav-theme-2 .has-public-admin-bar .navbar {
        top: 44px;
        height: calc(100vh - 44px);
    }
}

@media (max-width: 768px) {
    .nav-theme-2 .navbar {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        background: #fff;
        padding: 16px 0;
    }

    .nav-theme-2 .navbar-container {
        flex-direction: row;
        padding: 0 24px;
    }

    .nav-theme-2 .navbar-brand {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--brand-primary);
        margin-bottom: 0;
        padding: 0;
        border-bottom: none;
        width: auto;
    }

    .nav-theme-2 .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-theme-2 main,
    .nav-theme-2 .footer {
        margin-left: 0;
    }
}

/* Theme 2 Footer */
.nav-theme-2 .footer {
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-theme-2 .footer-section h3 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 700;
}

.nav-theme-2 .footer-section a {
    color: #555;
}

.nav-theme-2 .footer-section a:hover {
    color: var(--brand-primary);
}

.nav-theme-2 .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #aaa;
}


/* ─────────────────────────────────────────────────────────────
   THEME 3: Split Contrast Bar
   Left half dark brand, right half light links — diagonal footer.
   ───────────────────────────────────────────────────────────── */

.nav-theme-3 .navbar {
    background: linear-gradient(to right, #111 0%, #111 30%, #f8f8f8 30%);
    border-bottom: none;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.nav-theme-3 .navbar-container {
    padding: 0;
    gap: 0;
}

.nav-theme-3 .navbar-brand {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: -0.02em;
    padding: 20px 48px;
    flex-shrink: 0;
    background: #111;
    text-decoration: none;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    padding-right: 64px;
}

.nav-theme-3 .mobile-menu-toggle {
    margin-right: 16px;
}

.nav-theme-3 .hamburger,
.nav-theme-3 .hamburger::before,
.nav-theme-3 .hamburger::after {
    background: #111;
}

.nav-theme-3 .navbar-menu {
    gap: 8px;
    padding: 0 32px 0 16px;
}

.nav-theme-3 .navbar-menu a {
    color: #333;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-theme-3 .navbar-menu a:hover {
    background: rgba(0, 0, 0, 0.07);
    color: #000;
}

.nav-theme-3 .navbar-menu a.nav-link-active {
    color: var(--brand-primary);
}

.nav-theme-3 .navbar-menu a.nav-link-active::after {
    background: var(--brand-primary);
}

.nav-theme-3 .navbar-cart-link {
    background: #111 !important;
    border-radius: 6px !important;
}

.nav-theme-3 .navbar-cart-icon {
    color: #fff !important;
}

/* Theme 3 Footer */
.nav-theme-3 .footer {
    background: #fff;
    border-top: none;
    margin-top: 0;
    padding: 0;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

.nav-theme-3 .footer .container {
    padding-top: 80px;
    padding-bottom: 40px;
}

.nav-theme-3 .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.nav-theme-3 .footer-section:first-child {
    background: #111;
    color: #fff;
    padding: 32px;
    border-radius: 8px;
}

.nav-theme-3 .footer-section:first-child h3,
.nav-theme-3 .footer-section:first-child p {
    color: rgba(255,255,255,0.8);
}

.nav-theme-3 .footer-section h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111;
    font-weight: 800;
}

.nav-theme-3 .footer-section a {
    color: #555;
    font-size: 0.9rem;
}

.nav-theme-3 .footer-section a:hover {
    color: var(--brand-primary);
}

.nav-theme-3 .footer-bottom {
    background: #111;
    color: rgba(255,255,255,0.4);
    border-top: none;
    margin: 24px -48px -40px;
    padding: 16px 48px;
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .nav-theme-3 .navbar {
        background: #111;
    }

    .nav-theme-3 .navbar-brand {
        clip-path: none;
        padding: 20px 24px;
    }

    .nav-theme-3 .hamburger,
    .nav-theme-3 .hamburger::before,
    .nav-theme-3 .hamburger::after {
        background: #fff;
    }

    .nav-theme-3 .navbar-menu.active {
        background: #111;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-theme-3 .navbar-menu.active a {
        color: rgba(255,255,255,0.8);
    }

    .nav-theme-3 .footer {
        clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    }

    .nav-theme-3 .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-theme-3 .footer-bottom {
        margin: 24px -24px -28px;
        padding: 16px 24px;
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 4: Ultra-Minimal Underline
   Zero decoration, content-first, single-line border nav.
   ───────────────────────────────────────────────────────────── */

.nav-theme-4 .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    padding: 20px 0;
}

.nav-theme-4 .navbar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-theme-4 .navbar-menu {
    gap: 36px;
}

.nav-theme-4 .navbar-menu a {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    padding: 0;
}

.nav-theme-4 .navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #111;
    transition: width 0.25s ease;
}

.nav-theme-4 .navbar-menu a:hover {
    color: #111;
}

.nav-theme-4 .navbar-menu a:hover::after,
.nav-theme-4 .navbar-menu a.nav-link-active::after {
    width: 100%;
}

.nav-theme-4 .navbar-menu a.nav-link-active {
    color: #111;
}

.nav-theme-4 .navbar-cart-link {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.nav-theme-4 .navbar-cart-link:hover {
    background: transparent !important;
}

.nav-theme-4 .navbar-cart-icon {
    font-size: 20px !important;
    color: #555 !important;
}

/* Theme 4 Footer */
.nav-theme-4 .footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 48px 0 36px;
}

.nav-theme-4 .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.nav-theme-4 .footer-section {
    text-align: center;
}

.nav-theme-4 .footer-section:first-child {
    margin-bottom: 8px;
}

.nav-theme-4 .footer-section h3 {
    display: none;
}

.nav-theme-4 .footer-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.nav-theme-4 .footer-section ul li {
    margin: 0;
}

.nav-theme-4 .footer-section ul li::after {
    content: '·';
    margin: 0 10px;
    color: #ccc;
}

.nav-theme-4 .footer-section ul li:last-child::after {
    display: none;
}

.nav-theme-4 .footer-section a {
    color: #777;
    font-size: 0.85rem;
    text-decoration: none;
}

.nav-theme-4 .footer-section a:hover {
    color: #111;
}

.nav-theme-4 .footer-section p {
    font-size: 0.85rem;
    color: #999;
}

.nav-theme-4 .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    color: #bbb;
    margin-top: 16px;
    font-size: 0.78rem;
}


/* ─────────────────────────────────────────────────────────────
   THEME 5: Neon / Cyberpunk
   Dark terminal aesthetic with neon glow accents.
   ───────────────────────────────────────────────────────────── */

.nav-theme-5 .navbar {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(0, 255, 200, 0.15);
    box-shadow: 0 0 40px rgba(0, 255, 200, 0.04);
    padding: 16px 0;
}

.nav-theme-5 .navbar-brand {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffc8;
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.6), 0 0 40px rgba(0, 255, 200, 0.3);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-theme-5 .navbar-menu {
    gap: 4px;
}

.nav-theme-5 .navbar-menu a {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s, text-shadow 0.2s;
}

.nav-theme-5 .navbar-menu a:hover {
    color: #00ffc8;
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.5);
    background: rgba(0, 255, 200, 0.06);
}

.nav-theme-5 .navbar-menu a.nav-link-active {
    color: #00ffc8;
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.5);
}

.nav-theme-5 .navbar-menu a.nav-link-active::after {
    background: #00ffc8;
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.8);
}

/* Store link gets neon-orange treatment */
.nav-theme-5 .navbar-menu li:has(a[href="/shop"]) a,
.nav-theme-5 .navbar-menu li:has(a[href*="shop"]) a {
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}

.nav-theme-5 .navbar-menu li:has(a[href="/shop"]) a:hover,
.nav-theme-5 .navbar-menu li:has(a[href*="shop"]) a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
}

.nav-theme-5 .navbar-cart-link {
    background: rgba(255, 107, 53, 0.12) !important;
    border: 1px solid rgba(255, 107, 53, 0.35) !important;
    border-radius: 6px !important;
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.15) !important;
}

.nav-theme-5 .navbar-cart-link:hover {
    background: rgba(255, 107, 53, 0.2) !important;
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.3) !important;
}

.nav-theme-5 .navbar-cart-icon {
    color: #ff6b35 !important;
    text-shadow: 0 0 12px rgba(255, 107, 53, 0.7);
}

.nav-theme-5 .navbar-cart-badge.has-items {
    background: #ff6b35 !important;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.nav-theme-5 .hamburger,
.nav-theme-5 .hamburger::before,
.nav-theme-5 .hamburger::after {
    background: #00ffc8;
}

/* Theme 5 Footer */
.nav-theme-5 .footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 255, 200, 0.12);
    position: relative;
    overflow: hidden;
}

.nav-theme-5 .footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,200,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,200,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.nav-theme-5 .footer-section h3 {
    font-family: 'SF Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #00ffc8;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.nav-theme-5 .footer-section h3::before {
    content: '▸ ';
    opacity: 0.7;
}

.nav-theme-5 .footer-section p {
    color: rgba(255,255,255,0.4);
    font-family: 'SF Mono', monospace;
    font-size: 0.8rem;
}

.nav-theme-5 .footer-section a {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    transition: color 0.2s, text-shadow 0.2s;
}

.nav-theme-5 .footer-section a:hover {
    color: #00ffc8;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.nav-theme-5 .footer-bottom {
    border-top: 1px solid rgba(0, 255, 200, 0.08);
    color: rgba(255, 255, 255, 0.2);
    font-family: 'SF Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .nav-theme-5 .navbar-menu.active {
        background: #0a0a0a;
        border-bottom: 1px solid rgba(0, 255, 200, 0.12);
    }

    .nav-theme-5 .navbar-menu.active a {
        color: rgba(255,255,255,0.6);
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 6: Centered Logo Split Nav
   Brand centered, links pushed right. Elegant & symmetrical.
   ───────────────────────────────────────────────────────────── */

.nav-theme-6 .navbar {
    background: #fff;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-theme-6 .navbar-container {
    position: relative;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 72px;
}

.nav-theme-6 .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.03em;
    text-decoration: none;
    white-space: nowrap;
    z-index: 1;
    pointer-events: auto;
}

.nav-theme-6 .navbar-brand img {
    max-height: 36px;
}

.nav-theme-6 .mobile-menu-toggle {
    order: 3;
}

.nav-theme-6 .navbar-menu {
    gap: 28px;
    order: 2;
}

.nav-theme-6 .navbar-menu a {
    color: #555;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0;
}

.nav-theme-6 .navbar-menu a:hover {
    color: #111;
}

.nav-theme-6 .navbar-menu a.nav-link-active {
    color: var(--brand-primary);
}

.nav-theme-6 .navbar-menu a.nav-link-active::after {
    bottom: -4px;
    height: 2px;
    background: var(--brand-primary);
}

.nav-theme-6 .navbar-cart-link {
    background: rgba(0,0,0,0.04) !important;
    border-radius: 8px !important;
}

.nav-theme-6 .navbar-cart-link:hover {
    background: rgba(0,0,0,0.08) !important;
}

/* Theme 6 Footer — wave top SVG via clip-path */
.nav-theme-6 .footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    border-top: none;
    margin-top: 0;
    padding: 0;
    clip-path: ellipse(55% 40px at 50% 0);
    padding-top: 48px;
    clip-path: none;
    position: relative;
}

.nav-theme-6 .footer::before {
    content: '';
    display: block;
    height: 48px;
    background: #111;
    clip-path: ellipse(54% 100% at 50% 100%);
    margin-top: -48px;
    position: relative;
    z-index: 1;
}

.nav-theme-6 .footer > .container {
    padding-top: 48px;
    padding-bottom: 40px;
}

.nav-theme-6 .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
}

.nav-theme-6 .footer-section h3 {
    color: rgba(255,255,255,0.35);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.nav-theme-6 .footer-section p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

.nav-theme-6 .footer-section a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}

.nav-theme-6 .footer-section a:hover {
    color: #fff;
}

.nav-theme-6 .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.2);
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .nav-theme-6 .navbar-brand {
        position: static;
        transform: none;
    }

    .nav-theme-6 .navbar-container {
        justify-content: space-between;
    }

    .nav-theme-6 .footer::before {
        height: 28px;
        margin-top: -28px;
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 7: Monochrome Editorial
   Two-row nav, all caps, editorial typography. Bold borders.
   ───────────────────────────────────────────────────────────── */

.nav-theme-7 .navbar {
    background: #fff;
    border-bottom: 3px solid #000;
    box-shadow: none;
    padding: 0;
}

.nav-theme-7 .navbar-container {
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
}

.nav-theme-7 .navbar-brand {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    flex: 1;
    border-bottom: 2px solid #000;
}

.nav-theme-7 .mobile-menu-toggle {
    padding: 14px 0 14px 16px;
    border-bottom: 2px solid #000;
}

.nav-theme-7 .hamburger,
.nav-theme-7 .hamburger::before,
.nav-theme-7 .hamburger::after {
    background: #000;
}

.nav-theme-7 .navbar-menu {
    width: 100%;
    gap: 0;
    border-bottom: none;
    padding: 0;
    justify-content: flex-start;
}

.nav-theme-7 .navbar-menu li {
    border-right: 1px solid #ddd;
}

.nav-theme-7 .navbar-menu li:first-child {
    border-left: none;
}

.nav-theme-7 .navbar-menu a {
    display: block;
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-theme-7 .navbar-menu a:hover {
    background: #000;
    color: #fff;
}

.nav-theme-7 .navbar-menu a.nav-link-active {
    background: #000;
    color: #fff;
}

.nav-theme-7 .navbar-menu a.nav-link-active::after {
    display: none;
}

/* Store link: inverted */
.nav-theme-7 .navbar-menu li:has(a[href="/shop"]) a,
.nav-theme-7 .navbar-menu li:has(a[href*="shop"]) a {
    background: #111;
    color: #fff;
}

.nav-theme-7 .navbar-menu li:has(a[href="/shop"]) a:hover,
.nav-theme-7 .navbar-menu li:has(a[href*="shop"]) a:hover {
    background: #333;
}

.nav-theme-7 .mini-cart-wrapper {
    border-right: 1px solid #ddd;
}

.nav-theme-7 .navbar-cart-link {
    background: #000 !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 10px 16px !important;
}

.nav-theme-7 .navbar-cart-icon {
    color: #fff !important;
    font-size: 18px !important;
}

.nav-theme-7 .navbar-cart-badge {
    border-color: #000 !important;
}

/* Theme 7 Footer */
.nav-theme-7 .footer {
    background: #000;
    color: rgba(255,255,255,0.7);
    border-top: none;
    padding: 48px 0 32px;
}

.nav-theme-7 .footer-content {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 32px;
}

.nav-theme-7 .footer-section h3 {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}

.nav-theme-7 .footer-section p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.nav-theme-7 .footer-section a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.15s;
}

.nav-theme-7 .footer-section a:hover {
    color: #fff;
}

.nav-theme-7 .footer-bottom {
    border-top: none;
    color: rgba(255,255,255,0.25);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .nav-theme-7 .navbar-menu {
        display: none;
    }

    .nav-theme-7 .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: auto;
        background: #fff;
        border-bottom: 3px solid #000;
        padding: 0;
        gap: 0;
    }

    .nav-theme-7 .navbar-menu.active a {
        border-bottom: 1px solid #eee;
        padding: 14px 24px;
    }

    .nav-theme-7 .navbar-menu li {
        border-right: none;
        width: 100%;
    }

    .nav-theme-7 .mini-cart-wrapper {
        border-right: none;
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 8: Gradient Pill Nav + Wave Footer
   White nav with gradient pill buttons, flowing footer.
   ───────────────────────────────────────────────────────────── */

.nav-theme-8 .navbar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.nav-theme-8 .navbar-brand {
    font-weight: 800;
    font-size: 1.05rem;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-theme-8 .navbar-menu {
    gap: 6px;
}

.nav-theme-8 .navbar-menu a {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.nav-theme-8 .navbar-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111;
}

.nav-theme-8 .navbar-menu a.nav-link-active {
    color: var(--brand-primary);
    background: rgba(43,135,184,0.08);
}

.nav-theme-8 .navbar-menu a.nav-link-active::after {
    display: none;
}

/* Store link as gradient pill */
.nav-theme-8 .navbar-menu li:has(a[href="/shop"]) a,
.nav-theme-8 .navbar-menu li:has(a[href*="shop"]) a {
    background: linear-gradient(135deg, var(--brand-primary), #7c3aed);
    color: #fff !important;
    padding: 0.4rem 1.1rem;
}

.nav-theme-8 .navbar-menu li:has(a[href="/shop"]) a:hover,
.nav-theme-8 .navbar-menu li:has(a[href*="shop"]) a:hover {
    opacity: 0.88;
}

.nav-theme-8 .navbar-cart-link {
    background: linear-gradient(135deg, #7c3aed, var(--brand-primary)) !important;
    width: auto !important;
    padding: 0.4rem 1rem !important;
    border-radius: 50px !important;
    gap: 6px;
}

.nav-theme-8 .navbar-cart-icon {
    color: #fff !important;
    font-size: 18px !important;
}

.nav-theme-8 .navbar-cart-badge {
    background: #fff !important;
    color: #7c3aed !important;
    border-color: transparent !important;
}

/* Theme 8 Footer — gradient bg, wave shape */
.nav-theme-8 .footer {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #7c3aed 100%);
    border-top: none;
    color: rgba(255,255,255,0.85);
    position: relative;
    margin-top: 0;
}

.nav-theme-8 .footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 64px;
    background: inherit;
    clip-path: ellipse(52% 100% at 50% 100%);
    margin-top: -64px;
    position: relative;
}

.nav-theme-8 .footer > .container {
    padding-top: 16px;
    padding-bottom: 40px;
}

.nav-theme-8 .footer-section h3 {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.nav-theme-8 .footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

.nav-theme-8 .footer-section a {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-theme-8 .footer-section a:hover {
    color: #fff;
}

.nav-theme-8 .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .nav-theme-8 .footer::before {
        height: 36px;
        margin-top: -36px;
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 9: Sticky Slim + Mega Footer
   Ultra-compact 48px nav, info-rich 4-column footer.
   ───────────────────────────────────────────────────────────── */

.nav-theme-9 .navbar {
    background: #111;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    min-height: 48px;
}

.nav-theme-9 .navbar-container {
    gap: 32px;
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}

.nav-theme-9 .navbar-brand {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-theme-9 .navbar-menu {
    gap: 2px;
}

.nav-theme-9 .navbar-menu a {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 0 12px;
    height: 48px;
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
}

.nav-theme-9 .navbar-menu a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.nav-theme-9 .navbar-menu a.nav-link-active {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-bottom: 2px solid var(--brand-primary);
}

.nav-theme-9 .navbar-menu a.nav-link-active::after {
    display: none;
}

/* Store as accent */
.nav-theme-9 .navbar-menu li:has(a[href="/shop"]) a,
.nav-theme-9 .navbar-menu li:has(a[href*="shop"]) a {
    color: var(--brand-accent, #ff7d41);
    font-weight: 700;
}

.nav-theme-9 .navbar-menu li:has(a[href="/shop"]) a:hover,
.nav-theme-9 .navbar-menu li:has(a[href*="shop"]) a:hover {
    background: rgba(255, 125, 65, 0.1);
    color: var(--brand-accent, #ff7d41);
}

.nav-theme-9 .navbar-cart-link {
    background: var(--brand-primary) !important;
    border-radius: 4px !important;
    width: auto !important;
    height: 32px !important;
    padding: 0 12px !important;
    margin: 8px 0;
    gap: 4px;
}

.nav-theme-9 .navbar-cart-icon {
    color: #fff !important;
    font-size: 16px !important;
}

.nav-theme-9 .navbar-cart-badge {
    border-color: #111 !important;
}

.nav-theme-9 .hamburger,
.nav-theme-9 .hamburger::before,
.nav-theme-9 .hamburger::after {
    background: rgba(255,255,255,0.7);
}

/* Theme 9 Footer — mega layout */
.nav-theme-9 .footer {
    background: #0f0f0f;
    border-top: none;
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}

.nav-theme-9 .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 48px;
    margin-bottom: 0;
}

.nav-theme-9 .footer-section:first-child {
    border-right: 1px solid rgba(255,255,255,0.05);
    padding-right: 48px;
}

.nav-theme-9 .footer-section h3 {
    color: rgba(255,255,255,0.25);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.nav-theme-9 .footer-section p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.7;
}

.nav-theme-9 .footer-section a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.nav-theme-9 .footer-section a:hover {
    color: var(--brand-primary);
}

.nav-theme-9 .footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-theme-9 .footer-section ul li::before {
    content: '→';
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.nav-theme-9 .footer-bottom {
    border-top: none;
    background: #080808;
    padding: 16px 48px;
    margin: 0 calc(-1 * var(--container-padding));
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-theme-9 .navbar-menu.active {
        background: #111;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .nav-theme-9 .navbar-menu.active a {
        color: rgba(255,255,255,0.7);
        height: auto;
        padding: 12px 24px;
    }

    .nav-theme-9 .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-theme-9 .footer-section:first-child {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 24px;
    }

    .nav-theme-9 .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 24px;
        margin: 0 -24px;
    }
}

@media (max-width: 480px) {
    .nav-theme-9 .footer-content {
        grid-template-columns: 1fr;
    }
}


/* ─────────────────────────────────────────────────────────────
   THEME 10: Floating Island Nav + Card Footer
   Nav as a floating centered card. Shrinks and anchors on scroll.
   ───────────────────────────────────────────────────────────── */

.nav-theme-10 .navbar {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    position: relative;
    top: auto;
    padding: 20px var(--container-padding);
    z-index: 1000;
}

.nav-theme-10 .navbar-container {
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 12px 24px 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    gap: 20px;
    transition: box-shadow 0.3s, border-radius 0.3s;
    max-width: 900px;
    margin: 0 auto;
}

.nav-theme-10 .navbar.island-anchored {
    position: sticky;
    top: 12px;
    padding: 0 var(--container-padding);
}

.nav-theme-10 .navbar.island-anchored .navbar-container {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14), 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav-theme-10 .navbar-brand {
    font-weight: 900;
    font-size: 0.98rem;
    color: #111;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-theme-10 .navbar-menu {
    gap: 2px;
}

.nav-theme-10 .navbar-menu a {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.38rem 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-theme-10 .navbar-menu a:hover {
    background: rgba(0,0,0,0.05);
    color: #111;
}

.nav-theme-10 .navbar-menu a.nav-link-active {
    background: rgba(0,0,0,0.06);
    color: #111;
}

.nav-theme-10 .navbar-menu a.nav-link-active::after {
    display: none;
}

/* Store: brand-colored pill */
.nav-theme-10 .navbar-menu li:has(a[href="/shop"]) a,
.nav-theme-10 .navbar-menu li:has(a[href*="shop"]) a {
    background: var(--brand-primary);
    color: #fff !important;
}

.nav-theme-10 .navbar-menu li:has(a[href="/shop"]) a:hover,
.nav-theme-10 .navbar-menu li:has(a[href*="shop"]) a:hover {
    opacity: 0.88;
}

.nav-theme-10 .navbar-cart-link {
    background: rgba(0,0,0,0.05) !important;
    border-radius: 50px !important;
    width: 38px !important;
    height: 38px !important;
}

.nav-theme-10 .navbar-cart-link:hover {
    background: rgba(0,0,0,0.09) !important;
}

/* Theme 10 Footer — card panels */
.nav-theme-10 .footer {
    background: #f4f4f6;
    border-top: none;
    padding: 60px 0 40px;
}

.nav-theme-10 .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nav-theme-10 .footer-section {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-theme-10 .footer-section h3 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 1rem;
}

.nav-theme-10 .footer-section p {
    color: #666;
    font-size: 0.88rem;
}

.nav-theme-10 .footer-section a {
    color: #555;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-theme-10 .footer-section a:hover {
    color: var(--brand-primary);
}

.nav-theme-10 .footer-section ul li {
    margin-bottom: 10px;
}

.nav-theme-10 .footer-bottom {
    border-top: none;
    background: transparent;
    color: #bbb;
    font-size: 0.78rem;
    margin-top: 24px;
    padding-top: 0;
}

@media (max-width: 768px) {
    .nav-theme-10 .navbar {
        padding: 12px 16px;
    }

    .nav-theme-10 .navbar-container {
        border-radius: 16px;
        max-width: 100%;
    }

    .nav-theme-10 .navbar.island-anchored {
        top: 8px;
        padding: 0 12px;
    }

    .nav-theme-10 .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-theme-10 .navbar-container {
        border-radius: 12px;
        padding: 10px 16px;
    }
}


/* ─────────────────────────────────────────────────────────────
   SHARED: Admin bar offset adjustments per theme
   ───────────────────────────────────────────────────────────── */

/* Theme 2 sidebar + admin bar */
@media (min-width: 769px) {
    .nav-theme-2.has-public-admin-bar .navbar {
        top: 44px;
        height: calc(100vh - 44px);
    }
}

/* Theme 10 island + admin bar */
.nav-theme-10.has-public-admin-bar .navbar.island-anchored {
    top: calc(44px + 12px);
}

/* ─────────────────────────────────────────────────────────────
   DROPDOWN: Per-theme color variables
   ───────────────────────────────────────────────────────────── */

/* Theme 1 – frosted glass light (defaults are fine) */

/* Theme 3 – split dark/light */
.nav-theme-3 .has-dropdown {
    --nav-dropdown-bg: #111;
    --nav-dropdown-text: rgba(255,255,255,0.85);
    --nav-dropdown-border: 1px solid rgba(255,255,255,0.08);
    --nav-dropdown-shadow: 0 8px 24px rgba(0,0,0,0.5);
    --nav-dropdown-hover-bg: rgba(255,255,255,0.07);
    --nav-dropdown-hover-text: #fff;
    --nav-dropdown-divider: rgba(255,255,255,0.08);
}

/* Theme 5 – dark hacker */
.nav-theme-5 .has-dropdown {
    --nav-dropdown-bg: #0f0f0f;
    --nav-dropdown-text: rgba(255,255,255,0.85);
    --nav-dropdown-border: 1px solid rgba(0,255,200,0.18);
    --nav-dropdown-shadow: 0 8px 24px rgba(0,0,0,0.6);
    --nav-dropdown-hover-bg: rgba(0,255,200,0.07);
    --nav-dropdown-hover-text: #00ffc8;
    --nav-dropdown-divider: rgba(0,255,200,0.1);
}

/* Theme 9 – minimal dark */
.nav-theme-9 .has-dropdown {
    --nav-dropdown-bg: #1a1a1a;
    --nav-dropdown-text: rgba(255,255,255,0.8);
    --nav-dropdown-border: 1px solid rgba(255,255,255,0.07);
    --nav-dropdown-shadow: 0 8px 24px rgba(0,0,0,0.5);
    --nav-dropdown-hover-bg: rgba(255,255,255,0.06);
    --nav-dropdown-hover-text: #fff;
    --nav-dropdown-divider: rgba(255,255,255,0.06);
}

/* Theme toggle button — inherit nav link styles per theme */
.nav-theme-3 .nav-dropdown-toggle,
.nav-theme-5 .nav-dropdown-toggle,
.nav-theme-9 .nav-dropdown-toggle {
    color: inherit;
}

/* Make dropdown toggle button match nav link styling for all themes */
.navbar-menu .nav-dropdown-toggle {
    /* Reset button defaults and inherit nav link appearance */
    text-decoration: none;
    transition: color 0.2s, background 0.2s, opacity 0.2s;
}
.navbar-menu .nav-dropdown-toggle:hover {
    opacity: 1;
}
