/* DIESELNET Premium Navbar - iOS 26 Style (Spectacular Edition) */

:root {
    --nav-height: clamp(80px, 10vh, 100px); /* Taller for grandeur */
    --nav-bg: rgba(15, 23, 42, 0.85); /* Dark Slate */
    --nav-backdrop: saturate(180%) blur(20px);
    --nav-text: #f8fafc; /* White-ish */
    --nav-hover: #38bdf8; /* Sky Blue */
    --brand-primary: #0ea5e9;
    --brand-gradient: linear-gradient(135deg, #0ea5e9, #6366f1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Base Navbar - Dark Fluid */
.navbar-client {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    background: var(--nav-bg);
    backdrop-filter: var(--nav-backdrop);
    -webkit-backdrop-filter: var(--nav-backdrop);
    border-bottom: none; /* Removed static border */
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; align-items: center;
    
    /* Fluid Animation Subtle + Noise Texture */
    background: 
        linear-gradient(270deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200% 200%, auto;
    animation: liquidNav 15s ease infinite;
}

/* Shimmering Bottom Border */
.navbar-client::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0ea5e9, #f97316, #0ea5e9, transparent);
    background-size: 200% 100%;
    animation: borderShimmer 4s linear infinite;
    opacity: 0.8;
}

@keyframes borderShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@keyframes liquidNav {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scrolled State */
.navbar-client.scrolled {
    height: 70px; /* Also taller when scrolled */
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar-client .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 95%; /* Wider content area */
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    height: 100%;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(1.4rem, 1.5vw + 1rem, 1.6rem);
    color: var(--nav-text);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.02em; /* Tight typography */
}

.logo img {
    height: clamp(34px, 4vh, 42px);
    width: auto;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Elastic Pop */
}

.logo:hover img {
    transform: scale(1.1) rotate(-3deg);
}

/* High specificity to override stil.css */
.navbar-client .logo .logo-diesel { 
    color: #06b6d4 !important; /* Cyan */
    background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important; /* Remove glow */
}

.navbar-client .logo .logo-net { 
    background: linear-gradient(135deg, #f97316, #fb923c) !important; /* Orange */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

/* --- Nav Menu (Pill Style) --- */
#nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

#nav-menu > ul {
    list-style: none;
    padding: 6px;
    margin: 0;
    display: flex;
    gap: 6px; 
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Very subtle light track */
    border-radius: 99px; 
    backdrop-filter: blur(5px);
    border: none; /* Removed static border for Living Edge */
    position: relative;
    z-index: 1;
}

/* Living Edge for Pill */
#nav-menu > ul::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 99px; 
    padding: 1.5px; /* Border thickness */
    background: linear-gradient(90deg, transparent, #0ea5e9, #f97316, #0ea5e9, transparent);
    background-size: 200% 100%;
    animation: borderShimmer 4s linear infinite;
    
    /* Mask Magic to show only border */
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    
    pointer-events: none;
    z-index: -1;
}

#nav-menu > ul > li > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Soft white */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 8px 18px;
    border-radius: 99px;
}

/* Hover & Active States */
#nav-menu > ul > li > a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#nav-menu > ul > li > a.activ {
    color: white;
    background: var(--brand-primary); /* Use primary blue */
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

#nav-menu > ul > li > a.activ i {
    color: white;
}

/* Icons */
#nav-menu > ul > li > a i {
    font-size: 1em;
    opacity: 0.9;
    color: var(--brand-primary);
    transition: color 0.3s;
}

#nav-menu > ul > li > a.activ i {
    color: white;
}

#nav-menu > ul > li > a:hover i {
    color: white;
}

/* --- Icon Micro-Animations --- */
/* Home - Bounce */
#nav-menu > ul > li > a:hover .fa-house {
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Services - Spin/Wiggle */
#nav-menu > ul > li > a:hover .fa-wrench {
    animation: iconWiggle 0.5s ease-in-out;
}
@keyframes iconWiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Promotii - Swing */
#nav-menu > ul > li > a:hover .fa-tags {
    animation: iconSwing 0.6s ease-in-out;
    transform-origin: top center;
}
@keyframes iconSwing {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

/* Contact - Shake */
#nav-menu > ul > li > a:hover .fa-envelope {
    animation: iconTada 0.8s ease;
}
@keyframes iconTada {
    0% { transform: scale(1); }
    10%, 20% { transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); }
}

#nav-menu > ul > li > a::after { display: none; }

/* --- Buttons (Apple Style) --- */
/* --- Buttons (Premium Liquid Flux) --- */
.buton-contact {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 99px;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 
        0 4px 6px -1px rgba(37, 99, 235, 0.3), 
        0 10px 15px -3px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    text-decoration: none !important; /* No underline */
    font-family: 'Poppins', sans-serif !important; /* Premium font */
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.buton-contact:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px -5px rgba(37, 99, 235, 0.4), 
        0 5px 10px -2px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.buton-contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.buton-contact:hover::before { opacity: 1; }

.buton-contact::after { display: none !important; }

/* Desktop CTA specific */
.desktop-cta {
    margin-left: 12px;
}

/* Desktop Actions Groups */
.desktop-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.desktop-actions a.login-link {
    color: var(--nav-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.desktop-actions a.login-link:hover {
    background: rgba(0,0,0,0.05);
}

/* User Avatar Pill */
.user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    background: rgba(0,0,0,0.04);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.user-pill:hover {
    background: rgba(0,0,0,0.08);
}

.user-avatar-circle {
    width: 34px;
    height: 34px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

/* --- Mega Menu (Floating Island) --- */
.dropdown-menu,
.mega-meniu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px; /* Super rounded */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.02);
    padding: 20px;
    min-width: 240px;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top center;
}

/* Dropdown & Mega Menu Visibility */
.has-dropdown:hover .dropdown-menu,
.are-megameniu:hover .mega-meniu,
.has-dropdown.open .dropdown-menu,   /* Added support for .open class */
.are-megameniu.open .mega-meniu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Dropdown specifics */
.dropdown-menu {
    display: block; /* Ensure it is block, not flex from parent */
    padding: 10px;
    width: 220px;
}

.dropdown-menu li {
    list-style: none;
    display: block;
    margin-bottom: 4px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

/* Dropdown Links - Bubble Style */
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px; /* Smooth rounded corners */
    text-decoration: none;
    color: #515155;
    background: transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a i {
    color: #0071e3;
    width: 20px;
    text-align: center;
}

.dropdown-menu a:hover {
    background: rgba(0, 113, 227, 0.08);
    color: #0071e3;
    transform: translateX(4px);
}

/* --- Premium Logo Glint Animation --- */
.logo {
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.logo:hover::after {
    animation: shineLogo 1.5s ease;
}

@keyframes shineLogo {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* --- Tactile Feedback (Click Effect) --- */
.navbar-client a:active,
.buton-contact:active,
.buton-burger:active {
    transform: scale(0.95) !important;
}

/* Reset inner ULs */
.dropdown-menu ul,
.mega-meniu ul {
    background: none;
    border-radius: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    backdrop-filter: none;
}

/* Mega Menu Internal */
.mega-meniu {
    width: clamp(300px, 92vw, 960px);
    padding: 8px; /* Inner padding for floated effect */
    background: rgba(255,255,255,0.85); /* Slightly more opaque */
}

.mega-meniu-container {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: white; /* Clean white inner */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.mega-meniu-links {
    flex: 2.5;
    padding: 30px;
}

.mega-meniu-cta {
    flex: 1.2;
    padding: 30px;
}

/* --- Burger Menu Animated (Premium) --- */
.buton-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px; /* Larger touch target */
    height: 40px;
    padding: 0;
    position: relative;
    z-index: 1001;
    margin-left: 10px;
}

.buton-burger span {
    display: block;
    width: 22px;
    height: 2px; /* Thinner elegant lines */
    background-color: var(--nav-text);
    border-radius: 4px;
    position: absolute;
    left: 9px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy */
}

.buton-burger span:nth-child(1) { top: 13px; }
.buton-burger span:nth-child(2) { top: 19px; }
.buton-burger span:nth-child(3) { top: 25px; }

/* Active (X) State */
.buton-burger.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
    background-color: var(--nav-text); /* Keep standard color or change to blue */
}

.buton-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.buton-burger.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
    background-color: var(--nav-text);
}

/* --- Badges --- */
.notificari-count {
    background: #ff3b30; /* Apple Red */
    box-shadow: 0 2px 5px rgba(255, 59, 48, 0.4);
    font-size: 0.65rem;
    padding: 2px 7px;
}

/* --- Responsive --- */
/* --- Responsive (Spectacular Mobile Overhaul) --- */
/* --- Responsive (Spectacular Mobile Overhaul) --- */
@media (max-width: 992px) {
    .buton-burger { display: block; }

    /* The Overlay Container */
    #nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98); /* Almost solid for visibility */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Flow from top */
        padding: 80px 20px 40px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 998;
        overflow-y: auto; /* Enable scroll */
        -webkit-overflow-scrolling: touch; /* Smooth iOS scroll */
    }

    /* Active State (Open) */
    #nav-menu.nav-activa {
        opacity: 1;
        visibility: visible;
    }

    /* Navigation List */
    #nav-menu ul {
        flex-direction: column;
        gap: 15px;
        background: none;
        backdrop-filter: none;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        overflow: visible; /* Let parent handle scroll */
        max-height: none; /* Remove limit */
        flex-shrink: 0; /* Don't shrink */
    }
    
    #nav-menu ul::-webkit-scrollbar { display: none; }

    /* Reset direct child enforcing for mobile */
    #nav-menu > ul {
        display: flex;
        flex-direction: column;
        background: transparent;
        border-radius: 0;
        width: 100%;
    }

    /* Menu Items Container - Staggered Entry */
    #nav-menu > ul > li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    #nav-menu.nav-activa > ul > li { opacity: 1; transform: translateY(0); }
    
    /* Staggered Delays */
    #nav-menu.nav-activa > ul > li:nth-child(1) { transition-delay: 0.1s; }
    #nav-menu.nav-activa > ul > li:nth-child(2) { transition-delay: 0.15s; }
    #nav-menu.nav-activa > ul > li:nth-child(3) { transition-delay: 0.2s; }
    #nav-menu.nav-activa > ul > li:nth-child(4) { transition-delay: 0.25s; }
    #nav-menu.nav-activa > ul > li:nth-child(5) { transition-delay: 0.3s; }
    #nav-menu.nav-activa > ul > li:nth-child(6) { transition-delay: 0.35s; }

    /* Main Links Styling - Improved Visibility */
    #nav-menu > ul > li > a {
        display: inline-flex;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800; /* Extra Bold */
        color: #06b6d4; /* Brand Cyan Blue */
        padding: 12px 20px;
        background: transparent !important;
        box-shadow: none !important;
        width: 100%;
        border-radius: 12px;
    }
    
    #nav-menu > ul > li > a:hover {
        background: rgba(0,0,0,0.05) !important;
    }

    #nav-menu > ul > li > a i {
        display: none;
    }

    #nav-menu > ul > li > a.activ {
        color: var(--brand-primary);
        background: rgba(0, 113, 227, 0.1) !important;
    }

    /* Dropdowns UI - Accordion Style */
    .dropdown-menu,
    .mega-meniu {
        position: static;
        width: 90%; /* Slight inset */
        margin: 10px auto;
        background: #f5f5f7; /* Contrast background */
        box-shadow: none;
        border: none;
        border-radius: 16px;
        padding: 10px;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .has-dropdown.open .dropdown-menu,
    .are-megameniu.open .mega-meniu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Dropdown Items */
    .dropdown-menu a, .mega-meniu a {
        font-size: 1rem !important;
        font-weight: 500;
        padding: 12px;
        background: white !important;
        margin-bottom: 8px;
        border-radius: 10px;
        text-align: left;
        justify-content: flex-start;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }

    .mega-meniu-container {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
    }
    
    .mega-meniu-links, .mega-meniu-cta { padding: 0; }
    .coloana-megameniu h3 { color: var(--brand-primary); margin: 10px 0 5px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

    /* Mobile Only Nav (Bottom Actions) */
    .mobile-only-nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-only-nav li {
        width: 100%;
        display: flex;
        justify-content: center;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards 0.5s;
    }
    
    .mobile-only-nav a {
        width: 90%;
        justify-content: center;
        background: #f5f5f7 !important;
        color: var(--nav-text);
        font-weight: 600;
        border-radius: 14px;
        padding: 14px;
    }
    
    .mobile-only-nav a[href*="login"], .mobile-only-nav a[href*="register"] {
        background: var(--brand-primary) !important;
        color: white !important;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Reduce animation distances for snappier feel */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Hide Desktop Elements */
    .desktop-actions, .desktop-cta { display: none !important; }
    
    /* Allow native scroll behavior */
    #nav-menu { 
        touch-action: auto; 
        overscroll-behavior: contain;
    }
}

/* --- Dark Mode Support --- */
body.dark-mode .navbar-client {
    background: rgba(20, 20, 22, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .logo {
    color: #f5f5f7;
}

body.dark-mode .logo-diesel {
    color: #f5f5f7;
}

body.dark-mode #nav-menu ul li a {
    color: #a1a1aa;
}

body.dark-mode #nav-menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode #nav-menu ul li a.activ {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Dark Mode */
@media (max-width: 992px) {
    body.dark-mode #nav-menu {
        background: rgba(15, 15, 20, 0.95);
    }
    
    body.dark-mode #nav-menu ul li a {
        color: #e4e4e7;
    }
    
    body.dark-mode #nav-menu ul li a.activ {
        color: var(--brand-primary);
        background: transparent !important;
    }
    
    body.dark-mode .mobile-only-nav {
         border-top-color: rgba(255,255,255,0.05) !important;
    }
    
    body.dark-mode .mobile-only-nav a {
        background: rgba(255,255,255,0.08) !important;
        color: #fff;
    }
    
    body.dark-mode .buton-burger span {
        background-color: #f5f5f7;
    }
    
    body.dark-mode .buton-burger.active span:nth-child(1),
    body.dark-mode .buton-burger.active span:nth-child(3) {
        background-color: #f5f5f7;
    }
}

/* --- Subnav (Account) --- */
.account-subnav {
    display: none; /* Hide old subnav for now if we integrate into main nav, or restyle */
}
