/* ══════════════════════════════════════════════════════
   NØRD Mega Menu v2 — CSS with Liquid Glass
   ══════════════════════════════════════════════════════ */

/* ── Variables ── */
.nmm-wrapper {
    --nmm-accent:   #FF3C2F;
    --nmm-accent2:  #FF8C42;
    --nmm-black:    #0A0A0B;
    --nmm-white:    #FAFAF8;
    --nmm-mid:      #1C1C1E;
    --nmm-gray:     #3A3A3C;
    --nmm-light:    #E5E5E0;
    --nmm-muted:    #8A8A8E;
    --nmm-tag:      #F0EDE6;
    --nmm-glass-bg: rgba(250,250,248,0.75);
    --nmm-glass-border: rgba(255,255,255,0.45);
    --nmm-glass-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    z-index: 9999;
    font-family: inherit;
}
.nmm-wrapper * { box-sizing: border-box; }

/* ═══════════════════════════════════════════
   UTILITY BAR
═══════════════════════════════════════════ */
.nmm-utility {
    background: var(--nmm-black);
    padding: 7px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: #aaa;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    line-height: 1;
}
.nmm-utility a { color: inherit; text-decoration: none; }
.nmm-utility-r { font-weight: 600; transition: opacity 0.15s; }
.nmm-utility-r:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════
   MAIN NAV — LIQUID GLASS BASE
═══════════════════════════════════════════ */
.nmm-nav {
    background: var(--nmm-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--nmm-glass-border);
    box-shadow: var(--nmm-glass-shadow);
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 72px;
    position: relative;
    transition: box-shadow 0.3s, background 0.3s;
}

/* Sticky */
.nmm-wrapper.nmm-sticky .nmm-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 99999;
    animation: nmm-drop-in 0.35s cubic-bezier(0.4,0,0.2,1);
    background: rgba(250,250,248,0.88);
    box-shadow: 0 4px 32px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.65);
}
.nmm-wrapper.nmm-sticky-active { padding-top: var(--nmm-nav-h, 72px); }
.nmm-wrapper.nmm-hide-utility .nmm-utility { height: 0; overflow: hidden; padding: 0; }

@keyframes nmm-drop-in {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

/* Layout variants */
.nmm-nav.nmm-layout-center .nmm-links { justify-content: center; }
.nmm-nav.nmm-layout-full   .nmm-links { justify-content: space-between; }

/* ═══════════════════════════════════════════
   LOGO
═══════════════════════════════════════════ */
.nmm-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 32px;
}
.nmm-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--nmm-black);
    letter-spacing: -0.5px;
    line-height: 1;
}
.nmm-logo-accent { color: var(--nmm-accent); }
.nmm-logo-img img { display: block; height: auto; }
.nmm-no-menu {
    font-size: 12px;
    color: var(--nmm-muted);
    font-style: italic;
    padding: 4px 8px;
    background: var(--nmm-tag);
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   NAV LINKS
═══════════════════════════════════════════ */
.nmm-links {
    display: flex;
    align-items: stretch;
    flex: 1;
    height: 100%;
    gap: 0;
}

/* ── Items ── */
.nmm-item {
    position: static;
    display: flex;
    align-items: stretch;
}
.nmm-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nmm-black);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.18s;
}
.nmm-item > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 0;
    transition: height 0.2s;
    border-radius: 2px 2px 0 0;
}
.nmm-ind {
    font-size: 11px;
    opacity: 0.4;
    transition: transform 0.25s, opacity 0.2s;
    margin-left: 2px;
}
.nmm-item:hover > a .nmm-ind,
.nmm-item.nmm-open > a .nmm-ind { opacity: 0.7; transform: rotate(90deg); }

/* Active indicators */
.nmm-wrapper[data-active-style="underline"] .nmm-item:hover > a::after,
.nmm-wrapper[data-active-style="underline"] .nmm-item.current-menu-item > a::after { height: 2px; background: var(--nmm-accent); }
.nmm-wrapper[data-active-style="topline"]   .nmm-item:hover > a::after,
.nmm-wrapper[data-active-style="topline"]   .nmm-item.current-menu-item > a::after { height: 2px; background: var(--nmm-accent); bottom: auto; top: 0; }
.nmm-wrapper[data-active-style="bg"]  .nmm-item:hover > a,
.nmm-wrapper[data-active-style="bg"]  .nmm-item.current-menu-item > a { background: rgba(255,60,47,0.08); border-radius: 6px; }
.nmm-wrapper[data-active-style="dot"] .nmm-item:hover > a::before,
.nmm-wrapper[data-active-style="dot"] .nmm-item.current-menu-item > a::before { content: ''; width: 4px; height: 4px; background: var(--nmm-accent); border-radius: 50%; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); }

.nmm-item:hover > a,
.nmm-item.current-menu-item > a { color: var(--nmm-accent); }

/* ═══════════════════════════════════════════
   ACTIONS
═══════════════════════════════════════════ */
.nmm-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.nmm-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,237,230,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--nmm-muted);
    width: 220px;
    transition: background 0.2s, box-shadow 0.2s;
}
.nmm-search-box:focus-within {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 0 2px rgba(255,60,47,0.25);
}
.nmm-search-box input { border: none; background: transparent; outline: none; font-size: 13px; color: var(--nmm-black); width: 100%; font-family: inherit; }
.nmm-search-box input::placeholder { color: var(--nmm-muted); }

.nmm-icon-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--nmm-black);
    background: transparent;
    border: none; cursor: pointer;
    position: relative;
    transition: background 0.15s, transform 0.12s;
    text-decoration: none;
}
.nmm-icon-btn:hover {
    background: rgba(240,237,230,0.8);
    transform: translateY(-1px);
}
.nmm-badge {
    position: absolute;
    top: 5px; right: 5px;
    min-width: 17px; height: 17px;
    background: var(--nmm-accent);
    border-radius: 9px;
    font-size: 9px; font-weight: 700;
    color: white;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px;
    border: 2px solid var(--nmm-white);
    pointer-events: none;
    line-height: 1;
}
.nmm-cta-btn {
    background: var(--nmm-accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex; align-items: center;
    border: none;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(255,60,47,0.3);
}
.nmm-cta-btn:hover { background: #cc2f24; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,60,47,0.4); }

/* Hamburger */
.nmm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s;
}
.nmm-hamburger:hover { background: rgba(240,237,230,0.8); }
.nmm-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--nmm-black);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s, width 0.25s;
}
.nmm-hamburger span.short { width: 14px; }
.nmm-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nmm-hamburger.open span:nth-child(2) { opacity: 0; }
.nmm-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ═══════════════════════════════════════════
   MEGA MENU PANEL — LIQUID GLASS
═══════════════════════════════════════════ */
.nmm-mega {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: 100%;
    background: var(--nmm-glass-bg);
    backdrop-filter: blur(20px) saturate(200%) brightness(105%);
    -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(105%);
    border-top: 1px solid var(--nmm-glass-border);
    border-bottom: 3px solid var(--nmm-accent);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.7);
    z-index: 10000;
    flex-direction: column;
}
.nmm-item:hover .nmm-mega,
.nmm-item.nmm-open .nmm-mega { display: flex; }

/* Prevent hover-open in click mode */
.nmm-wrapper[data-trigger="click"] .nmm-item:hover .nmm-mega { display: none; }
.nmm-wrapper[data-trigger="click"] .nmm-item.nmm-open .nmm-mega { display: flex; }

/* Animations */
.nmm-anim-fade-slide { animation: nmm-fade-slide 0.28s cubic-bezier(0.4,0,0.2,1) both; }
.nmm-anim-fade-scale { animation: nmm-fade-scale 0.22s cubic-bezier(0.4,0,0.2,1) both; }
.nmm-anim-fade       { animation: nmm-fade-in    0.2s ease both; }
.nmm-anim-none       { animation: none; }

@keyframes nmm-fade-slide { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
@keyframes nmm-fade-scale { from { opacity:0; transform:scaleY(0.93); transform-origin:top; } to { opacity:1; transform:scaleY(1); } }
@keyframes nmm-fade-in    { from { opacity:0; } to { opacity:1; } }

/* Inner grid */
.nmm-mega-inner {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ── Left: Categories ── */
.nmm-mega-cats {
    background: rgba(245,244,240,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 0;
    border-right: 1px solid rgba(229,229,224,0.5);
}
.nmm-mega-cats-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nmm-muted);
    font-weight: 600;
    padding: 0 20px 12px;
}
.nmm-mega-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--nmm-gray);
    cursor: pointer;
    transition: all 0.14s;
    border-right: 3px solid transparent;
    position: relative;
}
.nmm-mega-cat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.14s;
    pointer-events: none;
}
.nmm-mega-cat-item:hover, .nmm-mega-cat-item.nmm-cat-active {
    background: rgba(255,255,255,0.6);
    color: var(--nmm-black);
    border-right-color: var(--nmm-accent);
    font-weight: 600;
}
.nmm-mega-cat-item a { color: inherit; text-decoration: none; flex: 1; }
.nmm-mci-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(229,229,224,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
    transition: background 0.14s;
}
.nmm-mega-cat-item:hover .nmm-mci-icon,
.nmm-mega-cat-item.nmm-cat-active .nmm-mci-icon { background: rgba(255,232,230,0.8); }
.nmm-mci-thumb { background: none !important; }
.nmm-mci-thumb img { width: 30px; height: 30px; object-fit: cover; }
.nmm-wc-count {
    font-size: 11px;
    color: var(--nmm-muted);
    background: rgba(229,229,224,0.7);
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: 4px;
}
.nmm-mci-arr { color: var(--nmm-muted); font-size: 13px; margin-left: auto; }

/* ── Center: Links ── */
.nmm-mega-center {
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-content: flex-start;
}
.nmm-mm-col { flex: 1; min-width: 110px; }
.nmm-mm-col-group { margin-bottom: 18px; }
.nmm-mm-col-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nmm-black);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.nmm-mm-col-title a { color: inherit; text-decoration: none; transition: color 0.14s; }
.nmm-mm-col-title a:hover { color: var(--nmm-accent); }
.nmm-mm-link {
    display: block;
    font-size: 13px;
    color: var(--nmm-gray);
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.14s, padding-left 0.14s;
    line-height: 1.5;
}
.nmm-mm-link:hover { color: var(--nmm-accent); padding-left: 4px; }
.nmm-mm-link.nmm-badge-new::after,
.nmm-mm-link.nmm-badge-sale::after {
    font-size: 8.5px; font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.06em;
}
.nmm-mm-link.nmm-badge-new::after  { content: 'NEW';  background: var(--nmm-accent); color: white; }
.nmm-mm-link.nmm-badge-sale::after { content: 'SALE'; background: #1ABF6E; color: white; }

/* Column count variants */
.nmm-cols-2 .nmm-mm-col { min-width: 200px; }
.nmm-cols-4 .nmm-mm-col { min-width: 90px; }
.nmm-cols-5 .nmm-mm-col { min-width: 80px; }

/* ── Right: Side Panel ── */
.nmm-mega-side {
    width: 220px;
    padding: 24px 20px;
    border-left: 1px solid rgba(229,229,224,0.5);
    background: rgba(248,247,243,0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nmm-side-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}
.nmm-side-badge:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nmm-side-badge-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--nmm-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nmm-side-badge-text h5 { font-size: 12px; font-weight: 700; color: var(--nmm-black); margin-bottom: 2px; }
.nmm-side-badge-text p  { font-size: 11px; color: var(--nmm-muted); }

/* ═══════════════════════════════════════════
   PROMO STRIP — BOTTOM OF MEGA MENU
═══════════════════════════════════════════ */
.nmm-promo-strip {
    border-top: 1px solid rgba(229,229,224,0.4);
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: rgba(248,247,244,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Individual promo (hidden by default, shown when active) */
.nmm-promo {
    display: none;
    align-items: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    animation: nmm-promo-in 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
.nmm-promo.nmm-promo-active { display: flex; }

@keyframes nmm-promo-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dark variant */
.nmm-promo.nmm-promo-dark {
    background: linear-gradient(135deg, rgba(10,10,11,0.95) 0%, rgba(28,28,30,0.9) 100%);
}
.nmm-promo:not(.nmm-promo-dark) {
    background: rgba(255,255,255,0.6);
}

/* Image positioning */
.nmm-promo-img {
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.nmm-promo.nmm-promo-right .nmm-promo-img {
    order: 2;
    width: 260px; min-height: 120px;
    border-radius: 0;
}
.nmm-promo.nmm-promo-left .nmm-promo-img {
    order: 0;
    width: 260px; min-height: 120px;
}
.nmm-promo.nmm-promo-bg .nmm-promo-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
}
.nmm-promo.nmm-promo-bg .nmm-promo-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.3) 100%);
}
.nmm-promo.nmm-promo-bg .nmm-promo-content { position: relative; z-index: 1; }

/* Promo content */
.nmm-promo-content {
    flex: 1;
    padding: 20px 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}
.nmm-promo-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--promo-accent, var(--nmm-accent));
    background: rgba(255,60,47,0.12);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,60,47,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-bottom: 2px;
}
.nmm-promo-dark .nmm-promo-badge { background: rgba(255,60,47,0.2); border-color: rgba(255,60,47,0.35); }
.nmm-promo-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0;
}
.nmm-promo-dark  .nmm-promo-title { color: #fff; }
.nmm-promo:not(.nmm-promo-dark) .nmm-promo-title { color: var(--nmm-black); }
.nmm-promo-sub {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    max-width: 420px;
}
.nmm-promo-dark  .nmm-promo-sub { color: rgba(255,255,255,0.6); }
.nmm-promo:not(.nmm-promo-dark) .nmm-promo-sub { color: var(--nmm-muted); }

/* Promo CTA buttons */
.nmm-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.18s;
    margin-top: 4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nmm-promo-cta-filled {
    background: var(--promo-accent, var(--nmm-accent));
    color: white;
    box-shadow: 0 2px 10px rgba(255,60,47,0.35);
}
.nmm-promo-cta-filled:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(255,60,47,0.45); color: white; }
.nmm-promo-cta-outline {
    background: transparent;
    color: var(--promo-accent, var(--nmm-accent));
    border: 1.5px solid var(--promo-accent, var(--nmm-accent));
}
.nmm-promo-cta-outline:hover { background: var(--promo-accent, var(--nmm-accent)); color: white; }
.nmm-promo-cta-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.nmm-promo-cta-ghost:hover { background: rgba(255,255,255,0.22); color: white; }

/* Promo decorative blob */
.nmm-promo::before {
    content: '';
    position: absolute;
    top: -30px; right: 180px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,60,47,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: nmm-blob-pulse 4s ease-in-out infinite;
}
@keyframes nmm-blob-pulse {
    0%,100% { transform: scale(1); opacity: 0.7; }
    50%      { transform: scale(1.2); opacity: 1; }
}

/* ═══════════════════════════════════════════
   OVERLAY
═══════════════════════════════════════════ */
.nmm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,11,0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9998;
    animation: nmm-fade-in 0.2s ease both;
}
.nmm-overlay.on { display: block; }

/* ═══════════════════════════════════════════
   MOBILE DRAWER — LIQUID GLASS
═══════════════════════════════════════════ */
.nmm-drawer {
    position: fixed;
    top: 0;
    width: 320px;
    max-width: 92vw;
    height: 100vh;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-right: 1px solid rgba(255,255,255,0.55);
    box-shadow: 4px 0 48px rgba(0,0,0,0.22), inset 1px 0 0 rgba(255,255,255,0.7);
    z-index: 99999;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.nmm-drawer-right {
    left: auto; right: 0;
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.55);
    transform: translateX(110%);
    box-shadow: -4px 0 48px rgba(0,0,0,0.22), inset -1px 0 0 rgba(255,255,255,0.7);
}
.nmm-drawer-fullscreen { width: 100%; max-width: 100%; border: none; border-radius: 0; }
.nmm-drawer.open { transform: translateX(0); }

.nmm-drawer-head {
    background: rgba(10,10,11,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nmm-drawer-head span {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nmm-drawer-close {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; cursor: pointer;
    transition: background 0.15s;
    backdrop-filter: blur(4px);
}
.nmm-drawer-close:hover { background: rgba(255,255,255,0.2); }

.nmm-drawer-promo-strip {
    background: linear-gradient(90deg, var(--nmm-accent) 0%, var(--nmm-accent2) 100%);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.nmm-drawer-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 16px;
    background: rgba(240,237,230,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 11px 16px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.nmm-drawer-search input { border: none; background: transparent; outline: none; font-size: 13.5px; color: var(--nmm-black); width: 100%; font-family: inherit; }
.nmm-drawer-search input::placeholder { color: var(--nmm-muted); }

/* Mobile nav list */
.nmm-mob-nav { list-style: none; padding: 0; margin: 0; flex: 1; }
.nmm-mob-item { border-bottom: 1px solid rgba(229,229,224,0.5); }
.nmm-mob-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--nmm-black);
    text-decoration: none;
    transition: background 0.12s;
}
.nmm-mob-item > a:hover { background: rgba(240,237,230,0.6); }
.nmm-mob-arrow { color: var(--nmm-muted); font-size: 14px; transition: transform 0.22s; }
.nmm-mob-item.open > a .nmm-mob-arrow { transform: rotate(90deg); color: var(--nmm-accent); }
.nmm-mob-item.open > a { color: var(--nmm-accent); }

.nmm-mob-sub { list-style: none; padding: 8px 0; margin: 0; background: rgba(245,244,240,0.7); border-top: 1px solid rgba(229,229,224,0.4); }
.nmm-mob-sub .nmm-mob-item > a { font-size: 13px; font-weight: 500; padding: 10px 30px; color: var(--nmm-gray); }

.nmm-drawer-foot {
    padding: 16px;
    border-top: 1px solid rgba(229,229,224,0.5);
    background: rgba(245,244,240,0.5);
    flex-shrink: 0;
}
.nmm-mob-cta {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--nmm-accent);
    color: white;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.15s;
    box-shadow: 0 2px 12px rgba(255,60,47,0.3);
}
.nmm-mob-cta:hover { background: #cc2f24; color: white; box-shadow: 0 4px 20px rgba(255,60,47,0.4); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nmm-links, .nmm-search-box, .nmm-cta-btn { display: none !important; }
    .nmm-hamburger { display: flex; }
    .nmm-nav, .nmm-utility { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
    .nmm-drawer { width: 100%; max-width: 100%; }
}

/* ═══════════════════════════════════════════
   ELEMENTOR EDITOR PREVIEW
═══════════════════════════════════════════ */
.elementor-editor-active .nmm-mega {
    display: flex !important;
    position: static;
    animation: none;
    box-shadow: none;
    border-top: 0;
}
.elementor-editor-active .nmm-hamburger { display: flex; }
.elementor-editor-active .nmm-promo.nmm-promo-active { display: flex; }
