/* ============================================================
   NEXUS DESIGN SYSTEM – BigZaint Marketplace
   Premium glassmorphic, mobile-first design system
   ============================================================ */

/* ── CSS Custom Properties (Design Tokens) ─────────────── */
:root {
    /* Primary palette (Deep Premium Blues) */
    --nx-primary: #0a0f25;
    --nx-on-primary: #ffffff;
    --nx-primary-container: #151e3f;
    --nx-on-primary-container: #a5b4fc;

    /* Brand Accent Colors (Vibrant, high conversion) */
    --nx-brand-blue: #3b82f6;
    --nx-brand-blue-hover: #2563eb;
    --nx-brand-blue-gradient: linear-gradient(135deg, #60a5fa, #2563eb);
    --nx-brand-orange: #f97316;
    --nx-brand-orange-hover: #ea580c;
    --nx-brand-orange-gradient: linear-gradient(135deg, #fb923c, #ea580c);
    --nx-brand-green: #10b981;
    --nx-brand-green-hover: #059669;
    --nx-brand-green-gradient: linear-gradient(135deg, #34d399, #059669);

    /* Surfaces */
    --nx-background: #f8fafc;
    --nx-surface: #ffffff;
    --nx-surface-container: #f1f5f9;
    --nx-surface-variant: #e2e8f0;

    /* On-surface */
    --nx-on-surface: #0f172a;
    --nx-on-surface-variant: #475569;
    --nx-on-background: #0f172a;

    /* Border & Outline */
    --nx-border: rgba(226, 232, 240, 0.8);
    --nx-border-hover: #cbd5e1;

    /* Shadows (Soft & Premium) */
    --nx-shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --nx-shadow-md: 0 10px 30px rgba(15,23,42,0.06);
    --nx-shadow-lg: 0 20px 50px rgba(15,23,42,0.10);
    --nx-shadow-xl: 0 30px 70px rgba(15,23,42,0.15);
    
    /* Hover Lifts */
    --nx-lift: translateY(-4px);
    --nx-lift-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;

    /* Radius */
    --nx-radius-sm: 8px;
    --nx-radius-md: 12px;
    --nx-radius-lg: 16px;
    --nx-radius-xl: 24px;
    --nx-radius-full: 9999px;
}

/* ── Base Reset ─────────────────────────────────────────── */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--nx-background);
    color: var(--nx-on-background);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

/* ── Hide Scrollbars Globally ────────────────────────────── */
::-webkit-scrollbar { display: none !important; }
html, body { -ms-overflow-style: none !important; scrollbar-width: none !important; }

/* ── Material Symbols Setup ─────────────────────────────── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ── Glassmorphism Utility ──────────────────────────────── */
.nx-glass-card {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* ── Top Header Bar ──────────────────────────────────────── */
.nx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--nx-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nx-header-logo,
.bz-header-logo {
    width: var(--bz-public-header-logo-width, 100px);
    height: var(--bz-public-header-logo-height, 54px);
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

/* Header Integrated Search Bar (Pill design) */
.nx-header-search {
    flex: 1;
    max-width: 680px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--nx-radius-full);
    padding: 4px 6px 4px 16px;
    transition: all 0.2s ease;
    margin: 0 16px;
}

.nx-header-search:focus-within {
    border-color: var(--nx-brand-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.nx-header-search select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--nx-on-surface);
    cursor: pointer;
    padding: 4px 2px;
}

.nx-header-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--nx-on-surface);
    min-width: 100px;
}

.nx-header-search input::placeholder {
    color: #94a3b8;
}

.nx-header-search .nx-sep {
    width: 1px;
    height: 22px;
    background: #cbd5e1;
    flex-shrink: 0;
}

.nx-header-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nx-brand-blue-gradient);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--nx-lift-transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.nx-header-search-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.nx-header-gps-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nx-brand-green);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.15s ease;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
}

.nx-header-gps-btn:hover {
    transform: scale(1.05);
}

/* Desktop Nav Links */
.nx-desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nx-nav-btn {
    padding: 8px 18px;
    border-radius: var(--nx-radius-full);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nx-nav-btn:hover {
    transform: translateY(-1px);
}

.nx-btn-login {
    color: var(--nx-brand-blue);
    border: 1.5px solid var(--nx-brand-blue);
    background: transparent;
}

.nx-btn-login:hover {
    background: var(--nx-brand-blue);
    color: #ffffff;
}

/* ── Desktop Nav Button Styles ────────────────────────── */
.nx-desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nx-desktop-nav-btn {
    padding: 8px 18px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.nx-nav-login {
    background: #ffffff;
    color: #2563eb !important;
    border: 1.5px solid #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.nx-nav-login:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.nx-nav-register {
    background: #2563eb;
    color: #ffffff !important;
    border: 1.5px solid #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.nx-nav-register:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.nx-nav-biz {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.nx-nav-biz:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

.nx-nav-dashboard {
    background: #eff6ff;
    color: #2563eb !important;
    border: 1.5px solid #bfdbfe;
}
.nx-nav-dashboard:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.nx-nav-logout {
    background: #fff1f2;
    color: #e11d48 !important;
    border: 1.5px solid #fecdd3;
}
.nx-nav-logout:hover {
    background: #ffe4e6;
    transform: translateY(-2px);
}

/* ── View All Section Links ───────────────────────────── */
a.nx-view-all, .nx-section-header a, a.view-all-link, a.nx-section-link, .nx-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #eff6ff;
    color: #2563eb !important;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
a.nx-view-all:hover, .nx-section-header a:hover, a.view-all-link:hover, a.nx-section-link:hover, .nx-section-link:hover {
    background: #2563eb;
    color: #ffffff !important;
    border-color: #2563eb;
    transform: translateX(2px);
}

/* ── Filter Strip ───────────────────────────────────────── */
.nx-filter-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--nx-border);
    position: sticky;
    top: 72px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.nx-fpill {
    padding: 8px 16px;
    border-radius: var(--nx-radius-full);
    border: 1.5px solid var(--nx-border);
    background: #ffffff;
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    min-height: 38px;
    cursor: pointer;
}

.nx-fpill.active {
    background: var(--nx-brand-blue);
    border-color: var(--nx-brand-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.nx-fpill:hover:not(.active) {
    background: #f8fafc;
    color: var(--nx-brand-blue);
    border-color: #cbd5e1;
}

/* ── Vendor Card (Listings) ──────────────────────────────── */
.nx-vcard {
    background: #ffffff;
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media(min-width: 640px) {
    .nx-vcard {
        flex-direction: row;
        min-height: 200px;
    }
}

.nx-vcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    border-color: #cbd5e1;
}

.nx-vcard-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f1f5f9;
}

@media(min-width: 640px) {
    .nx-vcard-img-wrap {
        width: 240px;
        height: 100%;
        min-height: 200px;
    }
}

.nx-vcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
}

.nx-vcard:hover .nx-vcard-img {
    transform: scale(1.05);
}

.nx-vcard-content {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.nx-vcard-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nx-on-surface);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nx-vcard-title:hover {
    color: var(--nx-brand-blue);
}

.nx-vbadge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--nx-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nx-vbadge-open {
    background: #16a34a;
    color: #ffffff;
}

.nx-vbadge-closed {
    background: #dc2626;
    color: #ffffff;
}

.nx-vcard-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--nx-on-surface-variant);
    font-weight: 500;
}

.nx-vcard-info i {
    color: var(--nx-brand-blue);
    width: 16px;
    text-align: center;
}

.nx-vcard-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.nx-action-btn-deal {
    background: linear-gradient(135deg, var(--nx-brand-blue), var(--nx-brand-blue-hover));
    color: #ffffff;
    border: none;
    border-radius: var(--nx-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nx-action-btn-deal:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.nx-action-btn-view {
    background: #f8fafc;
    color: #334155;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--nx-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.nx-action-btn-view:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ── Mobile Bottom Nav ───────────────────────────────────── */
.nx-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
}

.nx-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: var(--nx-radius-md);
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.nx-nav-item.active {
    color: #38bdf8;
}

.nx-nav-label {
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
}

/* ── Quick Search Chips ─────────────────────────────────── */
.nx-chips-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
}

.nx-quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.nx-quick-chip:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
}

/* ── Messenger Widget Positioning ──────────────────────── */
.messenger-widget {
    position: fixed;
    bottom: 85px !important;
    right: 20px !important;
    z-index: 9997;
}

/* ── Explore Services by Need Grid (Sticky Stacking Cards) ── */
.nx-svc-section-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 0 20px;
    margin-bottom: 36px;
    align-items: start;
}

.nx-svc-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px !important;
    padding: 0;
    margin-bottom: 0 !important;
}

.nx-svc-row, .service-row {
    position: sticky;
    top: 85px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 14px 16px !important;
    margin-bottom: 18px !important;
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 14px !important;
    align-items: center;
    box-shadow: 0 -4px 18px rgba(15,23,42,0.05), 0 10px 30px rgba(15,23,42,0.08);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.nx-svc-row:nth-child(1), .service-row:nth-child(1) { top: 85px;  z-index: 1; }
.nx-svc-row:nth-child(2), .service-row:nth-child(2) { top: 105px; z-index: 2; }
.nx-svc-row:nth-child(3), .service-row:nth-child(3) { top: 125px; z-index: 3; }
.nx-svc-row:nth-child(4), .service-row:nth-child(4) { top: 145px; z-index: 4; }
.nx-svc-row:nth-child(5), .service-row:nth-child(5) { top: 165px; z-index: 5; }
.nx-svc-row:nth-child(6), .service-row:nth-child(6) { top: 185px; z-index: 6; }
.nx-svc-row:nth-child(7), .service-row:nth-child(7) { top: 205px; z-index: 7; }
.nx-svc-row:nth-child(8), .service-row:nth-child(8) { top: 225px; z-index: 8; }
.nx-svc-row:nth-child(9), .service-row:nth-child(9) { top: 245px; z-index: 9; }
.nx-svc-row:nth-child(10), .service-row:nth-child(10) { top: 265px; z-index: 10; }

.nx-svc-row:hover, .service-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(15,23,42,0.12);
    border-color: #cbd5e1;
}

.nx-svc-info, .service-info {
    width: 220px;
    min-width: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 100%);
    border: 1px solid rgba(70,72,212,0.12);
    border-radius: 14px;
    padding: 14px 16px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    align-self: stretch;
}

.nx-svc-info h3, .service-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem !important;
    font-weight: 800;
    color: #0f172a;
    margin: 0 !important;
}

.nx-svc-info p, .service-info p {
    font-size: 0.78rem !important;
    color: #475569;
    line-height: 1.35;
    margin: 0 !important;
}

.nx-svc-info a, .service-info > a {
    color: #16a34a;
    font-weight: 800;
    font-size: 0.8rem !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.nx-svc-icons, .service-icons {
    flex: 1;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch;
}

.nx-svc-item, .service-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 6px !important;
    min-height: 86px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(15,23,42,0.03);
}

.nx-svc-item:hover, .service-item:hover {
    transform: translateY(-2px);
    border-color: #2563eb;
    box-shadow: 0 8px 18px rgba(37,99,235,0.12);
}

.nx-svc-item img, .jd-thumb {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    margin-bottom: 4px !important;
    transition: transform 0.2s ease;
}

.nx-svc-item:hover img, .service-item:hover .jd-thumb {
    transform: scale(1.08);
}

.nx-svc-item span, .service-item span {
    font-size: 0.76rem !important;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px !important;
    line-height: 1.2;
}

.service-explore {
    font-size: 0.7rem !important;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    opacity: 0.85;
}


/* ── Sponsored Ad Sidebar & Explore Services Layout (Separate Column) ── */
.nx-svc-section-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    padding: 0 20px;
    margin-bottom: 48px;
    align-items: start;
}

.nx-svc-panel-wrapper {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 85px;
    z-index: 20;
}

.ad-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

@media(max-width: 1100px) {
    .nx-svc-section-layout {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
}

@media(max-width: 992px) {
    .nx-svc-section-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-ads {
        position: relative;
        top: auto;
    }
}

@media(max-width: 768px) {
    .nx-svc-row, .service-row {
        position: relative !important;
        top: auto !important;
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }
    .nx-svc-info, .service-info {
        width: 100%;
        min-width: unset;
        padding: 18px;
    }
    .nx-svc-icons, .service-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
}
@media(max-width: 480px) {
    .nx-svc-icons, .service-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile & Desktop Responsive Controls ───────────── */
@media(max-width: 768px) {
    .nx-desktop-nav {
        display: none !important;
    }

    .nx-desktop-nav.show {
        display: flex !important;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 16px 20px;
        flex-direction: column;
        gap: 10px;
        z-index: 9998;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        border-bottom: 1px solid #e2e8f0;
    }

    .nx-mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        padding: 6px 10px;
        cursor: pointer;
        color: #0f172a;
    }
}

@media(min-width: 769px) {
    .nx-bottom-nav {
        display: none !important;
    }
    .nx-mobile-menu-btn {
        display: none !important;
    }
}

/* ── Universal Footer Styles ────────────────────────────── */
.bz-footer-wrapper, .nx-footer {
    background: #0f172a !important;
    color: #f8fafc !important;
    padding: 50px 24px 100px 24px !important;
    border-radius: 24px 24px 0 0 !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 50px !important;
}
.bz-footer-top, .nx-footer-inner, .nx-footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
@media (max-width: 992px) {
    .bz-footer-top, .nx-footer-inner, .nx-footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}
@media (max-width: 600px) {
    .bz-footer-top, .nx-footer-inner, .nx-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .bz-footer-wrapper, .nx-footer {
        padding: 36px 18px 110px 18px !important;
    }
}
.bz-footer-brand img, .nx-footer-brand img {
    height: 48px !important;
    width: auto !important;
    margin-bottom: 14px !important;
    object-fit: contain !important;
}
.bz-footer-brand p, .nx-footer-brand p {
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}
.bz-trust-row {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    font-size: 0.78rem !important;
    color: #38bdf8 !important;
    font-weight: 600 !important;
}
.bz-footer-col h4, .nx-footer-inner h4, .nx-footer-grid h4 {
    color: #ffffff !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}
.bz-footer-col ul, .nx-footer-inner ul, .nx-footer-grid ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.bz-footer-col ul a, .bz-footer-col a, .nx-footer-inner a, .nx-footer-grid a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    transition: color 0.2s ease !important;
}
.bz-footer-col ul a:hover, .bz-footer-col a:hover {
    color: #38bdf8 !important;
}
.bz-footer-cta, .nx-footer-cta {
    max-width: 1200px !important;
    margin: 40px auto 0 auto !important;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(249,115,22,0.15)) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 18px !important;
    padding: 24px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}
.bz-footer-cta h3, .nx-footer-cta h3 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
}
.bz-footer-cta p, .nx-footer-cta p {
    color: #94a3b8 !important;
    font-size: 0.84rem !important;
    margin: 0 !important;
}
.bz-footer-cta a, .nx-footer-cta a {
    padding: 10px 24px !important;
    border-radius: 999px !important;
    background: #f97316 !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(249,115,22,0.3) !important;
}
.bz-footer-bottom, .nx-footer-bottom {
    max-width: 1200px !important;
    margin: 30px auto 0 auto !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
}
.bz-footer-bottom a, .nx-footer-bottom a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    margin-left: 14px !important;
}

/* ── Quick Tags Nav Bar Above Categories ─────────────────── */
.nx-quick-tags-bar {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding: 6px 20px 18px 20px !important;
    margin-top: 4px !important;
    margin-bottom: 24px !important;
    -webkit-overflow-scrolling: touch !important;
}
.hide-scrollbar::-webkit-scrollbar { display: none !important; }
.hide-scrollbar { -ms-overflow-style: none !important; scrollbar-width: none !important; }

.nx-tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 999px !important;
    padding: 8px 18px 8px 14px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

.nx-tag-pill:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(70, 72, 212, 0.18) !important;
    border-color: rgba(70, 72, 212, 0.35) !important;
    color: #4648d4 !important;
    background: #ffffff !important;
}

.tag-bar {
    width: 5px !important;
    height: 14px !important;
    border-radius: 4px !important;
    margin-right: 8px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.tag-bar.red { background: linear-gradient(135deg, #ef4444, #f87171) !important; }
.tag-bar.blue { background: linear-gradient(135deg, #3b82f6, #60a5fa) !important; }
.tag-bar.green { background: linear-gradient(135deg, #10b981, #34d399) !important; }
.tag-bar.teal { background: linear-gradient(135deg, #14b8a6, #2dd4bf) !important; }
.tag-bar.orange { background: linear-gradient(135deg, #f97316, #fb923c) !important; }
