
:root {
    --nh-or:      #FF6B00;
    --nh-or-deep: #C94E00;
    --nh-or-lt:   #FF8C33;
    --nh-or-pale: #FFF4EC;
    --nh-or-glow: rgba(255,107,0,0.15);
    --nh-black:   #0A0A0A;
    --nh-ink:     #1A1A1A;
    --nh-white:   #FFFFFF;
    --nh-smoke:   #F7F7F5;
    --nh-border:  #E5E5E3;
    --nh-gray:    #6B6B6B;
    --nh-gray-lt: #AAAAAA;
    --nh-r:       8px;
    --nh-h1:      60px;   /* top bar height */
    --nh-h2:      44px;   /* nav strip height */
    --nh-total-h: calc(var(--nh-h1) + var(--nh-h2));
}

@media (max-width: 760px) {
    :root {
        --nh-total-h: var(--nh-h1); /* nav strip hidden on mobile */
    }
}

.nh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nh-white);
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .28s ease;
    font-family: 'DM Sans', sans-serif;
}

/* Inner pages: sticky header scrolls with the page (no gap on pull/overscroll) */
body.inner-page .nh-header {
    position: sticky;
    top: 0;
    max-height: var(--nh-total-h);
    overflow: hidden;
    transition: max-height .28s cubic-bezier(.4, 0, .2, 1), opacity .22s ease;
}

/* Collapse height only — no slide transform (avoids “dance” at top) */
body.inner-page .nh-header.nh-header--hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

/* Home: fixed header slides away */
body.home .nh-header.nh-header--hidden,
.nh-header--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}



/* ── Top bar ── */
.nh-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nh-h1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand */
.nh-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.nh-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}
.nh-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid var(--nh-border);
}
.nh-brand-name {
    font-family: 'Figtree', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--nh-black);
    letter-spacing: -.025em;
    line-height: 1.2;
}
.nh-brand-name em { font-style: normal; color: var(--nh-or); }
.nh-brand-tag {
    font-size: .65rem;
    font-weight: 600;
    color: var(--nh-gray);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Search */
.nh-search {
    flex: 1;
    max-width: 520px;
    margin: 0 auto;
}
.nh-search-form {
    display: flex;
    align-items: center;
    background: var(--nh-smoke);
    border: 2px solid var(--nh-border);
    border-radius: var(--nh-r);
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s;
    height: 42px;
}
.nh-search-form:focus-within {
    border-color: var(--nh-or);
    box-shadow: 0 0 0 3px var(--nh-or-glow);
    background: var(--nh-white);
}
.nh-search-icon {
    width: 18px; height: 18px;
    margin: 0 10px 0 14px;
    flex-shrink: 0;
    color: var(--nh-gray);
}
.nh-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--nh-ink);
    padding: 0;
    min-width: 0;
}
.nh-search-input::placeholder { color: var(--nh-gray-lt); }
.nh-search-btn {
    padding: 0 18px;
    height: 100%;
    background: var(--nh-or);
    color: var(--nh-white);
    border: none;
    font-family: 'Figtree', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .14s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.nh-search-btn:hover { background: var(--nh-or-deep); }

/* Right actions */
.nh-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.nh-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    text-decoration: none;
    color: var(--nh-ink);
    border-radius: var(--nh-r);
    transition: background .14s, color .14s;
    position: relative;
}
.nh-action-btn:hover { background: var(--nh-smoke); color: var(--nh-or); }
.nh-action-icon-wrap {
    position: relative;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
}
.nh-action-icon-wrap svg { width: 22px; height: 22px; }
.nh-action-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--nh-gray);
    white-space: nowrap;
}
.nh-action-btn:hover .nh-action-label { color: var(--nh-or); }
.nh-cart-badge {
    position: absolute;
    top: -5px; right: -7px;
    background: var(--nh-or);
    color: var(--nh-white);
    font-family: 'Figtree', sans-serif;
    font-size: .65rem;
    font-weight: 900;
    min-width: 18px; height: 18px;
    border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--nh-white);
    line-height: 1;
}

/* Hamburger */
.nh-hamburger {
    display: none;
    flex-direction:  column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: var(--nh-smoke);
    border: 2px solid var(--nh-border);
    border-radius: var(--nh-r);
    cursor: pointer;
    padding: 0;
    transition: background .14s, border-color .14s;
    margin-left: 4px;
}
.nh-hamburger:hover { background: var(--nh-or-pale); border-color: var(--nh-or); }
.nh-ham-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--nh-ink);
    border-radius: 100px;
    transition: transform .24s, opacity .2s, width .2s;
}
.nh-hamburger--open .nh-ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nh-hamburger--open .nh-ham-bar:nth-child(2) { opacity: 0; }
.nh-hamburger--open .nh-ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav strip ── */
.nh-nav-strip {
    background: var(--nh-black);
    border-top: none;
}
.nh-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nh-h2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nh-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}
.nh-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: var(--nh-h2);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .14s, border-color .14s, background .14s;
    white-space: nowrap;
}
.nh-nav-link svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .8; }
.nh-nav-link:hover {
    color: var(--nh-white);
    border-bottom-color: var(--nh-or);
    background: rgba(255,255,255,0.05);
}
.nh-nav-link--dim { color: rgba(255,255,255,0.5); font-size: .8rem; }
.nh-nav-link--dim:hover { color: rgba(255,255,255,0.8); }
.nh-nav-right { display: flex; align-items: center; gap: 8px; }
.nh-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--nh-or);
    color: var(--nh-white);
    border-radius: 100px;
    font-family: 'Figtree', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s, transform .12s;
    box-shadow: 0 2px 8px rgba(255,107,0,0.3);
}
.nh-nav-pill svg { width: 12px; height: 12px; }
.nh-nav-pill:hover { background: var(--nh-or-lt); transform: translateY(-1px); }

/* ══ OVERLAY ══ */
.nh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    backdrop-filter: blur(3px);
}
.nh-overlay--show { opacity: 1; pointer-events: auto; }

/* ══ MOBILE DRAWER ══ */
.nh-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--nh-white);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}
.nh-drawer--open { transform: translateX(0); }

/* Drawer head */
.nh-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--nh-border);
    flex-shrink: 0;
    background: var(--nh-black);
}
.nh-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nh-drawer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.nh-drawer-brand-name {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--nh-white);
    letter-spacing: -.02em;
}
.nh-drawer-brand-name em { font-style: normal; color: var(--nh-or); }
.nh-drawer-close {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: background .14s;
}
.nh-drawer-close svg { width: 14px; height: 14px; }
.nh-drawer-close:hover { background: rgba(255,107,0,0.2); color: var(--nh-or-lt); }

/* Drawer search */
.nh-drawer-search {
    padding: 16px 18px;
    border-bottom: 1px solid var(--nh-border);
    flex-shrink: 0;
}
.nh-drawer-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--nh-smoke);
    border: 2px solid var(--nh-border);
    border-radius: var(--nh-r);
    padding: 0 14px;
    transition: border-color .16s;
    height: 44px;
}
.nh-drawer-search-wrap:focus-within { border-color: var(--nh-or); }
.nh-drawer-search-wrap svg { width: 16px; height: 16px; color: var(--nh-gray); flex-shrink: 0; }
.nh-drawer-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--nh-ink);
    padding: 0;
}
.nh-drawer-search-input::placeholder { color: var(--nh-gray-lt); }

/* Drawer nav */
.nh-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.nh-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--nh-ink);
    font-size: .95rem;
    font-weight: 600;
    border-bottom: 1px solid var(--nh-border);
    transition: background .13s, color .13s;
}
.nh-drawer-link:last-child { border-bottom: none; }
.nh-drawer-link:hover { background: var(--nh-smoke); color: var(--nh-or); }
.nh-drawer-link:hover .nh-drawer-link-icon { background: var(--nh-or-pale); color: var(--nh-or); }
.nh-drawer-link-icon {
    width: 38px; height: 38px;
    background: var(--nh-smoke);
    border-radius: var(--nh-r);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--nh-gray);
    transition: background .13s, color .13s;
}
.nh-drawer-link-icon svg { width: 20px; height: 20px; }
.nh-drawer-link > span:nth-child(2) { flex: 1; }
.nh-drawer-arr { width: 12px; height: 12px; color: var(--nh-gray-lt); flex-shrink: 0; }
.nh-drawer-tag {
    background: linear-gradient(135deg, var(--nh-or), var(--nh-or-lt));
    color: var(--nh-white);
    font-family: 'Figtree', sans-serif;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    flex-shrink: 0;
}

/* Drawer divider */
.nh-drawer-divider {
    height: 8px;
    background: var(--nh-smoke);
    border-top: 1px solid var(--nh-border);
    border-bottom: 1px solid var(--nh-border);
    flex-shrink: 0;
}

/* Drawer footer */
.nh-drawer-footer {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    border-top: 1px solid var(--nh-border);
}
.nh-drawer-foot-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--nh-r);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    border: 2px solid var(--nh-border);
    color: var(--nh-ink);
    background: var(--nh-white);
    transition: border-color .14s, background .14s, color .14s;
}
.nh-drawer-foot-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.nh-drawer-foot-btn:hover { border-color: var(--nh-or); color: var(--nh-or); background: var(--nh-or-pale); }
.nh-drawer-foot-btn--cart {
    background: linear-gradient(135deg, var(--nh-or), var(--nh-or-lt));
    color: var(--nh-white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(255,107,0,0.3);
}
.nh-drawer-foot-btn--cart:hover {
    filter: brightness(1.07);
    color: var(--nh-white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--nh-or), var(--nh-or-lt));
}
.nh-drawer-cart-count {
    background: var(--nh-white);
    color: var(--nh-or);
    font-size: .7rem;
    font-weight: 900;
    min-width: 22px; height: 22px;
    border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 5px;
    margin-left: auto;
}

/* ══ RESPONSIVE ══ */
/* Hide brand text on medium screens to save space */
@media (max-width: 1000px) {
    .nh-brand-text { display: none; }
    .nh-search { max-width: 400px; }
}

/* Show hamburger, hide nav strip + action labels on mobile */
@media (max-width: 760px) {
    .nh-hamburger { display: flex; }
    .nh-nav-strip { display: none; }
    .nh-action-btn:not(.nh-cart-btn) { display: none; }
    .nh-action-label { display: none; }
    .nh-search { max-width: none; margin: 0 10px; }
    .nh-inner { padding: 0 16px; gap: 12px; }
}

/* Very small screens */
@media (max-width: 480px) {
    .nh-inner { padding: 0 12px; gap: 8px; }
    .nh-logo { height: 36px; }
    .nh-search-btn { display: none; }
    .nh-action-btn { padding: 6px 8px; }
}

/* Home: fixed header floats over hero — no main offset */
body.home .site-main {
    margin-top: 0;
}

/* Inner pages: sticky header is in document flow — no extra offset */
body.inner-page .site-main {
    margin-top: 0;
}
/* ══════════════════════════════════════════════════════════
   NAVBAR SEARCH DROPDOWN + MOBILE OVERLAY
   Append to bottom of navbar.css
══════════════════════════════════════════════════════════ */

/* ── Clear button ── */
.nh-search-clear-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: var(--nh-smoke);
    border: 1.5px solid var(--nh-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--nh-gray);
    flex-shrink: 0;
    margin-right: 4px;
    transition: background .14s, color .14s, border-color .14s;
}
.nh-search-clear-btn svg { width: 10px; height: 10px; }
.nh-search-clear-btn:hover { background: var(--nh-or-pale); border-color: var(--nh-or); color: var(--nh-or); }

/* ── Desktop backdrop ── */
.nh-search-backdrop {
    position: fixed; inset: 0; z-index: 998;
    background: rgba(0,0,0,0); pointer-events: none;
    transition: background .22s ease;
}
.nh-search-backdrop--show { background: rgba(0,0,0,.42); pointer-events: auto; }

/* ══════════════════════════════════════════════════════════
   DESKTOP DROPDOWN
══════════════════════════════════════════════════════════ */
.nh-search { position: relative; }

.nh-sd-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
}
.nh-sd-dropdown--open { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Shell — mirrors .explore-content */
.nh-sd-explore-content {
    background: var(--nh-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 20px 48px rgba(0,0,0,.16);
    border: 1.5px solid var(--nh-border);
}

/* Tab layer — mirrors .tab_layer */
.nh-sd-tab-layer {
    display: flex; align-items: stretch;
    background: var(--nh-white);
    border-bottom: 1.5px solid var(--nh-border);
}
.nh-sd-tabs { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1; }
.nh-sd-tabs::-webkit-scrollbar { display: none; }

/* Tab — mirrors .tab exactly */
.nh-sd-tab {
    padding: 13px 18px;
    cursor: pointer; white-space: nowrap;
    font-family: 'Figtree', sans-serif;
    font-size: .8rem; font-weight: 700;
    color: var(--nh-gray);
    border-bottom: 2.5px solid transparent;
    border-top: none; border-left: none; border-right: none;
    background: none;
    transition: color .15s, border-color .15s;
    user-select: none; display: flex; align-items: center; line-height: 1;
}
.nh-sd-tab:hover { color: var(--nh-ink); }
.nh-sd-tab.active { color: var(--nh-or); border-bottom-color: var(--nh-or); }
.nh-sd-search-tab { color: var(--nh-or); }

/* Chevron + Close — mirror .tab_icon */
.nh-sd-chevron, .nh-sd-close {
    padding: 13px 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--nh-white);
    cursor: pointer; color: var(--nh-gray);
    border: none; border-bottom: 2.5px solid transparent;
    flex-shrink: 0;
    transition: color .14s, background .14s;
}
.nh-sd-chevron svg { width: 15px; height: 15px; }
.nh-sd-close { border-left: 1.5px solid var(--nh-border); }
.nh-sd-close svg { width: 13px; height: 13px; }
.nh-sd-chevron:hover, .nh-sd-close:hover { color: var(--nh-or); background: var(--nh-or-pale); }

/* Slide track — mirrors .ih-slide-track */
.nh-sd-track { position: relative; width: 100%; overflow: hidden; }

/* Panel — mirrors .ih-slide-panel */
.nh-sd-panel {
    width: 100%; background: var(--nh-white);
    position: relative;
    display: flex; flex-direction: column;
}
.nh-sd-sliding-out {
    position: absolute; top: 0; left: 0; width: 100%; pointer-events: none;
}

/* Rows container — mirrors .explore-rows-container (302px height, 2-col grid) */
.nh-sd-rows-wrap {
    height: 302px; min-height: 302px; max-height: 302px;
    overflow-y: auto; padding: 16px;
    background: var(--nh-white);
    scrollbar-width: thin;
    scrollbar-color: var(--nh-or) #EEEEEC;
}
.nh-sd-rows-wrap::-webkit-scrollbar { width: 5px; }
.nh-sd-rows-wrap::-webkit-scrollbar-track { background: #EEEEEC; border-radius: 100px; }
.nh-sd-rows-wrap::-webkit-scrollbar-thumb { background: var(--nh-or); border-radius: 100px; }

/* 2-col grid — mirrors .explore-rows */
.nh-sd-rows { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }

/* Product card — mirrors .explore-row exactly */
.nh-sd-row {
    background: var(--nh-white);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: inherit;
    transition: transform .18s, box-shadow .18s, border-color .18s;
    border: 1.5px solid var(--nh-border);
    position: relative; overflow: hidden;
}
.nh-sd-row:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.09); border-color: rgba(255,107,0,.3); }
.nh-sd-row:hover .nh-sd-row-text h2 { color: var(--nh-or); }
.nh-sd-row:hover .nh-sd-row-arrow { color: var(--nh-or); transform: translateX(3px); }

.nh-sd-row-img { height: 60px; width: 72px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--nh-white); border-radius: 8px; }
.nh-sd-row-img img { height: 54px; max-width: 66px; object-fit: contain; transition: transform .22s ease; display: block; }
.nh-sd-row:hover .nh-sd-row-img img { transform: scale(1.08); }

.nh-sd-row-text { flex: 1; min-width: 0; }
.nh-sd-row-text h2 { font-family: 'Figtree', sans-serif; font-size: .84rem; font-weight: 800; color: var(--nh-ink); margin: 0 0 3px; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nh-sd-row-text p { font-size: .71rem; color: var(--nh-gray-lt); margin: 0; }
.nh-sd-row-text p span { color: var(--nh-or); font-weight: 700; }

.nh-sd-row-arrow { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--nh-gray-lt); transition: color .15s, transform .18s; background: var(--nh-smoke); border-radius: 50%; }
.nh-sd-row-arrow svg { width: 11px; height: 11px; }

/* State box */
.nh-sd-state-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 270px; color: var(--nh-gray-lt); font-size: .84rem; text-align: center; }
.nh-sd-state-box p { margin: 0; }
.nh-sd-state-box strong { color: var(--nh-ink); }

.nh-sd-result-count { display: block; font-size: .72rem; font-weight: 700; color: var(--nh-gray); background: var(--nh-smoke); border: 1.5px solid var(--nh-border); border-radius: 100px; padding: 3px 10px; margin-bottom: 10px; width: fit-content; }

.nh-sd-spinner { width: 26px; height: 26px; border: 2.5px solid var(--nh-border); border-top-color: var(--nh-or); border-radius: 50%; animation: nhSdSpin .7s linear infinite; }
@keyframes nhSdSpin { to { transform: rotate(360deg); } }

/* Footer tags — mirrors .explore-footer / .tag */
.nh-sd-footer { background: var(--nh-white); border-top: 1.5px solid var(--nh-border); padding: 12px 14px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center; }
.nh-sd-tag { display: inline-block; background: var(--nh-smoke); border: 1.5px solid var(--nh-border); border-radius: 100px; color: #2E2E2E; font-size: .72rem; font-weight: 600; padding: 5px 12px; text-decoration: none; transition: border-color .14s, color .14s, background .14s; }
.nh-sd-tag:hover { border-color: var(--nh-or); color: var(--nh-or); background: var(--nh-or-pale); }

/* Desktop responsive — 1-col on tablet */
@media (max-width: 900px) {
    .nh-sd-rows { grid-template-columns: 1fr; }
    .nh-sd-rows-wrap { height: 252px; min-height: 252px; max-height: 252px; }
}

/* Hide desktop dropdown on mobile */
@media (max-width: 760px) {
    .nh-sd-dropdown { display: none !important; }
    .nh-search-backdrop { display: none !important; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE FULL-SCREEN SEARCH OVERLAY
   Mirrors site/index explore-content on small screens
══════════════════════════════════════════════════════════ */
.nh-mob-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: var(--nh-smoke);
    display: flex;
    flex-direction: column;
    /* Hidden state */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.nh-mob-overlay--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Search bar row at top */
.nh-mob-search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--nh-white);
    border-bottom: 1.5px solid var(--nh-border);
    flex-shrink: 0;
}
.nh-mob-search-bar {
    flex: 1;
    display: flex; align-items: center; gap: 8px;
    background: var(--nh-smoke);
    border: 1.5px solid var(--nh-border);
    border-radius: 10px;
    padding: 0 12px;
    height: 42px;
    transition: border-color .15s;
}
.nh-mob-search-bar:focus-within { border-color: var(--nh-or); box-shadow: 0 0 0 3px rgba(255,107,0,.12); }
.nh-mob-search-bar svg { width: 15px; height: 15px; color: var(--nh-gray-lt); flex-shrink: 0; }
.nh-mob-search-input { flex: 1; border: none; background: transparent; outline: none; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--nh-ink); padding: 0; }
.nh-mob-search-input::placeholder { color: var(--nh-gray-lt); }
.nh-mob-search-clear { background: none; border: none; cursor: pointer; color: var(--nh-gray-lt); padding: 4px; display: flex; align-items: center; border-radius: 4px; transition: color .14s; }
.nh-mob-search-clear svg { width: 11px; height: 11px; }
.nh-mob-search-clear:hover { color: var(--nh-or); }
.nh-mob-search-cancel { background: none; border: none; cursor: pointer; font-family: 'Figtree', sans-serif; font-size: .85rem; font-weight: 700; color: var(--nh-or); white-space: nowrap; padding: 0 4px; flex-shrink: 0; }
.nh-mob-search-cancel:hover { opacity: .75; }

/* Mobile explore-content shell — same card style */
.nh-mob-explore-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--nh-smoke);
    padding: 10px;
    overflow: hidden;
}

.nh-mob-explore-content > .nh-mob-tab-layer,
.nh-mob-explore-content > .nh-mob-track {
    border-radius: 0;
}

/* inner white card */
.nh-mob-tab-layer,
.nh-mob-track { background: var(--nh-white); }

.nh-mob-tab-layer {
    display: flex; align-items: stretch;
    border-radius: 14px 14px 0 0;
    border: 1.5px solid var(--nh-border);
    border-bottom: 1.5px solid var(--nh-border);
    overflow: hidden;
}
.nh-mob-tabs { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1; }
.nh-mob-tabs::-webkit-scrollbar { display: none; }

/* Tab — same as index.php small screen */
.nh-mob-tab {
    padding: 13px 16px;
    cursor: pointer; white-space: nowrap;
    font-family: 'Figtree', sans-serif; font-size: .78rem; font-weight: 700;
    color: var(--nh-gray);
    border-bottom: 2.5px solid transparent;
    transition: color .15s, border-color .15s;
    user-select: none; display: flex; align-items: center;
}
.nh-mob-tab:hover { color: var(--nh-ink); }
.nh-mob-tab.active { color: var(--nh-or); border-bottom-color: var(--nh-or); }
.nh-mob-search-tab { color: var(--nh-or); }

.nh-mob-chevron {
    padding: 13px 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--nh-gray);
    border-bottom: 2.5px solid transparent;
    flex-shrink: 0;
    transition: color .14s;
}
.nh-mob-chevron svg { width: 14px; height: 14px; }
.nh-mob-chevron:hover { color: var(--nh-or); }

/* Track */
.nh-mob-track {
    flex: 1;
    position: relative; overflow: hidden;
    border: 1.5px solid var(--nh-border); border-top: none;
    border-radius: 0 0 14px 14px;
    display: flex; flex-direction: column;
}

/* Panel */
.nh-mob-panel {
    width: 100%; background: var(--nh-white);
    position: relative;
    display: flex; flex-direction: column;
    flex: 1;
}
.nh-mob-sliding-out { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; }

/* Rows wrap — 252px, single col, matches index.php @640px */
.nh-mob-rows-wrap {
    height: 252px; min-height: 252px; max-height: 252px;
    overflow-y: auto; padding: 10px;
    background: var(--nh-white);
    scrollbar-width: thin;
    scrollbar-color: var(--nh-or) #EEEEEC;
}
.nh-mob-rows-wrap::-webkit-scrollbar { width: 5px; }
.nh-mob-rows-wrap::-webkit-scrollbar-track { background: #EEEEEC; border-radius: 100px; }
.nh-mob-rows-wrap::-webkit-scrollbar-thumb { background: var(--nh-or); border-radius: 100px; }

/* Single-column grid — matches index.php small screen */
.nh-mob-rows { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }

/* Compact card — matches index.php @640px exactly */
.nh-mob-row {
    background: var(--nh-white);
    border-radius: 10px;
    padding: 10px;
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: inherit;
    border: 1.5px solid var(--nh-border);
    position: relative; overflow: hidden;
    transition: border-color .15s;
}
.nh-mob-row:active { border-color: rgba(255,107,0,.3); background: var(--nh-smoke); }
.nh-mob-row:active .nh-mob-row-text h2 { color: var(--nh-or); }

/* 48px image — matches index.php small screen */
.nh-mob-row-img { height: 48px; width: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--nh-white); border-radius: 6px; }
.nh-mob-row-img img { height: 44px; max-width: 48px; object-fit: contain; display: block; }

.nh-mob-row-text { flex: 1; min-width: 0; }
.nh-mob-row-text h2 { font-family: 'Figtree', sans-serif; font-size: .75rem; font-weight: 800; color: var(--nh-ink); margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .15s; }
.nh-mob-row-text p { font-size: .66rem; color: var(--nh-gray-lt); margin: 0; }
.nh-mob-row-text p span { color: var(--nh-or); font-weight: 700; }

/* State box */
.nh-mob-state-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; height: 220px; color: var(--nh-gray-lt); font-size: .82rem; text-align: center; }
.nh-mob-state-box p { margin: 0; }
.nh-mob-state-box strong { color: var(--nh-ink); }
.nh-mob-spinner { width: 24px; height: 24px; border: 2.5px solid var(--nh-border); border-top-color: var(--nh-or); border-radius: 50%; animation: nhSdSpin .7s linear infinite; }

/* Footer tags */
.nh-mob-footer { background: var(--nh-white); border-top: 1.5px solid var(--nh-border); padding: 10px 12px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center; }
.nh-mob-tag { display: inline-block; background: var(--nh-smoke); border: 1.5px solid var(--nh-border); border-radius: 100px; color: #2E2E2E; font-size: .7rem; font-weight: 600; padding: 4px 10px; text-decoration: none; transition: border-color .13s, color .13s, background .13s; }
.nh-mob-tag:hover { border-color: var(--nh-or); color: var(--nh-or); background: var(--nh-or-pale); }

/* Drawer search trigger button (replaces old search input in drawer) */
.nh-drawer-search-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--nh-smoke);
    border: 1.5px solid var(--nh-border);
    border-radius: var(--nh-r);
    padding: 0 14px;
    height: 44px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    color: var(--nh-gray-lt);
    text-align: left;
    transition: border-color .15s, background .15s;
}
.nh-drawer-search-trigger svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--nh-gray-lt); }
.nh-drawer-search-trigger:hover { border-color: var(--nh-or); background: var(--nh-white); color: var(--nh-gray); }

/* Only show mobile overlay on mobile */
@media (min-width: 761px) {
    .nh-mob-search-overlay { display: none !important; }
}

/* Very small phones — single column */
@media (max-width: 360px) {
    .nh-mob-rows { grid-template-columns: 1fr; }
}
