/*!
 * 9wickets Pro — Site Shell ("Stadium Night")
 * Fresh header + footer. Loaded after nine-wickets-brand.css.
 * Reuses tokens defined in the brand layer (--vk-*).
 */

/* ============================================================
   0. SHELL TOKENS (local to shell)
   ============================================================ */
body.vk {
    --nw-utility-h: 32px;
    --nw-bar-h:     76px;
    --nw-bar-h-sm:  62px;          /* shrunk on scroll */
    --nw-shell-pad: clamp(16px, 4vw, 56px);
    --nw-max:       1320px;
}

/* Reset overrides above the new shell */
body.vk > .vk-header,
body.vk > .nw-header { margin-top: 0 !important; }

/* ============================================================
   1. HEADER — UTILITY STRIP (top tier)
   ============================================================ */
.nw-header {
    position: sticky;
    top: 0;
    z-index: 90;
    isolation: isolate;
}

.nw-utility {
    background:
        linear-gradient(180deg, #04050A 0%, #07080F 100%);
    border-bottom: 1px solid rgba(245, 177, 0, 0.06);
    color: var(--vk-text-mid);
    font-size: 12.5px;
    line-height: 1;
    height: var(--nw-utility-h);
    overflow: hidden;
    transition: height .35s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.nw-utility__inner {
    max-width: var(--nw-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--nw-shell-pad);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.nw-utility__tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0;
    color: var(--vk-text);
    font-weight: 500;
    letter-spacing: 0.005em;
}
.nw-utility__tag b {
    color: var(--vk-gold-2);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--vk-font-en);
    font-size: 11px;
}
.nw-pulse {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #D32030;
    box-shadow:
        0 0 0 0   rgba(211, 32, 48, 0.7),
        0 0 14px  rgba(211, 32, 48, 0.55);
    animation: nw-pulse 1.8s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes nw-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(211,32,48,0.65), 0 0 14px rgba(211,32,48,0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(211,32,48,0.00), 0 0 14px rgba(211,32,48,0.55); }
    100% { box-shadow: 0 0 0 0   rgba(211,32,48,0.00), 0 0 14px rgba(211,32,48,0.55); }
}

.nw-utility__links {
    margin: 0; padding: 0; list-style: none;
    display: flex; align-items: center; gap: 14px;
}
.nw-utility__links a {
    color: var(--vk-text-mid);
    text-decoration: none;
    transition: color .2s ease;
    letter-spacing: 0.005em;
}
.nw-utility__links a:hover,
.nw-utility__links a:focus-visible { color: var(--vk-gold-2); }
.nw-utility__sep {
    width: 4px; height: 4px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.30);
}
.nw-utility__lang {
    font-family: var(--vk-font-en);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    color: var(--vk-text);
    border: 1px solid rgba(245, 177, 0, 0.28);
    border-radius: 999px;
    padding: 5px 10px;
    line-height: 1;
}
.nw-utility__lang:hover { border-color: var(--vk-gold); color: var(--vk-gold-2); }

/* ============================================================
   2. HEADER — MAIN BAR
   ============================================================ */
.nw-bar {
    background:
        linear-gradient(180deg,
            rgba(10,11,16,0.94) 0%,
            rgba(10,11,16,0.78) 100%);
    -webkit-backdrop-filter: saturate(150%) blur(18px);
    backdrop-filter:         saturate(150%) blur(18px);
    border-bottom: 1px solid rgba(245, 177, 0, 0.10);
    position: relative;
}
.nw-bar__inner {
    max-width: var(--nw-max);
    margin: 0 auto;
    padding: 0 var(--nw-shell-pad);
    height: var(--nw-bar-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 18px;
    transition: height .35s cubic-bezier(.2,.7,.2,1);
    min-width: 0;
}
.nw-bar__rule {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245,177,0,0.55) 28%,
        rgba(245,177,0,0.95) 50%,
        rgba(245,177,0,0.55) 72%,
        transparent 100%);
    opacity: 0.85;
    pointer-events: none;
}

/* Brand */
body.vk .nw-brand {
    display: inline-flex; align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}
body.vk .nw-brand img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 220px;
    aspect-ratio: 400 / 104;
    object-fit: contain;
    filter:
        drop-shadow(0 0 12px rgba(245, 177, 0, 0.20))
        drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4));
    transition: filter .35s ease, transform .35s ease;
}
.nw-brand:hover img,
.nw-brand:focus-visible img {
    filter:
        drop-shadow(0 0 26px rgba(245, 177, 0, 0.50))
        drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4));
    transform: translateY(-1px) scale(1.015);
}

/* Nav */
.nw-nav {
    justify-self: center;
    min-width: 0;
    overflow: visible;
}
.nw-nav__list {
    display: flex; align-items: center; justify-content: center;
    margin: 0; padding: 0; list-style: none;
    gap: 4px;
    flex-wrap: nowrap;
}
.nw-nav__item {
    position: relative;
    flex-shrink: 0;
}
.nw-nav__chev {
    margin-left: 5px;
    color: #ffd966;
    opacity: .85;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nw-nav__chev svg { display: block; width: 11px; height: 11px; }
.nw-nav__has-sub:hover > .nw-nav__link .nw-nav__chev,
.nw-nav__has-sub:focus-within > .nw-nav__link .nw-nav__chev {
    transform: rotate(-180deg);
}

/* ── Dropdown submenu ── */
.nw-nav__sub {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    transform: translateY(8px);
    min-width: 240px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: linear-gradient(180deg, rgba(20,22,31,0.98), rgba(10,11,16,0.96));
    border: 1px solid rgba(245, 181, 0, 0.32);
    border-radius: 14px;
    box-shadow:
        0 26px 60px -16px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255,255,255,0.04);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 5;
}
.nw-nav__sub::before {
    content: "";
    position: absolute;
    left: 22px; top: -6px;
    transform: rotate(45deg);
    width: 10px; height: 10px;
    background: rgba(20, 22, 31, 0.98);
    border-left: 1px solid rgba(245, 181, 0, 0.32);
    border-top: 1px solid rgba(245, 181, 0, 0.32);
}
.nw-nav__has-sub:hover > .nw-nav__sub,
.nw-nav__has-sub:focus-within > .nw-nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nw-nav__list > .nw-nav__item:nth-last-child(-n+2) > .nw-nav__sub {
    left: auto; right: 0;
}
.nw-nav__list > .nw-nav__item:nth-last-child(-n+2) > .nw-nav__sub::before {
    left: auto; right: 22px;
}
.nw-nav__sub-item { list-style: none; }
body.vk .nw-nav__sub-link,
.nw-nav__sub-link {
    display: flex; align-items: center;
    padding: 10px 14px;
    color: #cdd3e0 !important;
    font-family: "Hind Siliguri", "Sora", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.nw-nav__sub-link::before {
    content: "";
    display: inline-block;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #ffd966, #f5b500);
    margin-right: 0;
    border-radius: 2px;
    transition: width .25s ease, margin-right .25s ease;
}
body.vk .nw-nav__sub-link:hover,
body.vk .nw-nav__sub-link:focus-visible,
.nw-nav__sub-link:hover,
.nw-nav__sub-link:focus-visible {
    color: #ffd966 !important;
    background: linear-gradient(90deg, rgba(245,181,0,.12), rgba(245,181,0,.02));
}
.nw-nav__sub-link:hover::before,
.nw-nav__sub-link:focus-visible::before {
    width: 14px;
    margin-right: 8px;
}
body.vk .nw-nav__link,
.nw-nav__link {
    position: relative;
    display: inline-flex; align-items: center;
    padding: 9px 14px;
    color: #eef2ff !important;
    font-family: "Hind Siliguri", "Sora", -apple-system, sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease, background .25s ease, transform .15s ease;
    isolation: isolate;
}
.nw-nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd966 50%, transparent);
    box-shadow: 0 0 8px rgba(245, 181, 0, .55);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
    border-radius: 2px;
}
body.vk .nw-nav__link:hover,
body.vk .nw-nav__link:focus-visible,
.nw-nav__link:hover,
.nw-nav__link:focus-visible {
    color: #ffd966 !important;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.12), rgba(245, 181, 0, 0.04));
}
.nw-nav__link:hover::after,
.nw-nav__link:focus-visible::after,
.nw-nav__item.is-active .nw-nav__link::after { transform: scaleX(1); }
body.vk .nw-nav__item.is-active .nw-nav__link,
.nw-nav__item.is-active .nw-nav__link {
    color: #ffd966 !important;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.16), rgba(245, 181, 0, 0.06));
    box-shadow: inset 0 0 0 1px rgba(245, 181, 0, 0.35);
}
.nw-nav__has-sub:hover > .nw-nav__link .nw-nav__chev,
.nw-nav__has-sub:focus-within > .nw-nav__link .nw-nav__chev { transform: rotate(180deg); }

/* Responsive — slightly tighter at narrow desktop widths */
@media (max-width: 1100px) {
    .nw-nav__link { padding: 8px 11px; font-size: 12.5px; }
    .nw-nav__list { gap: 2px; }
}

/* Bar CTAs */
.nw-bar__cta {
    display: inline-flex; align-items: center; gap: 10px;
    justify-self: end;
}
.nw-icon-btn {
    width: 36px; height: 36px;
    border-radius: 11px;
    border: 1px solid rgba(245, 181, 0, 0.30);
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.10), rgba(245, 181, 0, 0.03));
    color: #ffd966;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 6px 14px -8px rgba(245, 181, 0, 0.25);
    transition: color .2s ease, border-color .2s ease, background .25s ease, box-shadow .25s ease, transform .15s ease;
}
.nw-icon-btn:hover {
    color: #1a1100;
    background: linear-gradient(135deg, #ffd966 0%, #f5b500 60%, #c98800 100%);
    border-color: #f5b500;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 10px 22px -8px rgba(245, 181, 0, 0.6);
}
.nw-icon-btn:focus-visible {
    outline: none;
    color: #ffd966;
    border-color: #f5b500;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 3px rgba(245, 181, 0, 0.25);
}
.nw-icon-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 10px -4px rgba(245, 181, 0, 0.4);
}
.nw-icon-btn svg { width: 16px; height: 16px; display: block; }
.nw-icon-btn[aria-expanded="true"] {
    color: #1a1100;
    background: linear-gradient(135deg, #ffd966 0%, #f5b500 100%);
    border-color: #f5b500;
}

/* Gold WhatsApp pill */
.nw-cta {
    display: inline-flex; align-items: center; gap: 7px;
    height: 34px;
    padding: 0 16px 0 12px;
    border-radius: 999px;
    background: var(--vk-grad-gold);
    color: #0A0500;
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
        0 10px 28px rgba(245, 177, 0, 0.28),
        0 0 0 1px rgba(245, 177, 0, 0.50) inset;
    transition: transform .2s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.nw-cta::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(110deg,
        transparent 30%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 70%);
    transform: translateX(-120%);
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;  /* never capture clicks — purely decorative shimmer */
}
.nw-cta:hover { transform: translateY(-1px); }
.nw-cta:hover::before { transform: translateX(120%); }
.nw-cta svg { width: 16px; height: 16px; }

/* Header CTA — icon-only compact pill (no text label) */
.nw-cta--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
    line-height: 0;
    overflow: hidden;  /* keep the shimmer pseudo contained — prevents click hit-area bleed */
}
.nw-cta--icon .nw-cta__text { display: none !important; }
.nw-cta--icon .nw-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.nw-cta--icon svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
}
.nw-cta--icon::before {
    /* base .nw-cta has a shimmer pseudo using translateX — keep but contained */
    border-radius: inherit;
}

/* Mobile drawer CTA — keeps full label + phone number stacked */
.nw-drawer__cta { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nw-drawer__cta-num {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.85;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

/* Burger — visible only on mobile */
.nw-burger {
    width: 34px; height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(245, 177, 0, 0.20);
    background: rgba(255, 255, 255, 0.025);
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    transition: border-color .25s ease, background .25s ease;
}
.nw-burger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--vk-text);
    border-radius: 2px;
    transition: transform .3s ease, background .25s ease;
}
.nw-burger:hover { border-color: var(--vk-gold); background: rgba(245, 177, 0, 0.06); }
.nw-burger:hover span { background: var(--vk-gold-2); }
.nw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nw-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Scroll-shrunk state (toggled by JS via [data-scrolled]) */
.nw-header[data-scrolled="true"] .nw-utility {
    height: 0;
    opacity: 0;
    border-bottom-color: transparent;
}
.nw-header[data-scrolled="true"] .nw-bar__inner {
    height: var(--nw-bar-h-sm);
}
body.vk .nw-header[data-scrolled="true"] .nw-brand img {
    height: 42px;
}

/* ============================================================
   3. SEARCH PANEL — fresh premium design (concrete colors, no var() reliance)
   ============================================================ */
.nw-search,
body.vk .vk-search-panel {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    padding: 24px var(--nw-shell-pad, 20px) 28px;
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(245, 181, 0, 0.10), transparent 70%),
        linear-gradient(180deg, rgba(12, 14, 22, 0.98) 0%, rgba(8, 10, 16, 0.97) 100%);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    backdrop-filter:         saturate(160%) blur(24px);
    border-bottom: 1px solid rgba(245, 181, 0, 0.22);
    box-shadow:
        0 36px 90px -28px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 50;
    overflow: hidden;
}
/* Decorative subtle dot grain for depth */
.nw-search > *,
body.vk .vk-search-panel > * { position: relative; z-index: 1; }
.nw-search::before,
body.vk .vk-search-panel::before,
.nw-search::after,
body.vk .vk-search-panel::after { z-index: 0; }
.nw-search::before,
body.vk .vk-search-panel::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 181, 0, 0.55) 30%, rgba(255, 211, 77, 0.9) 50%, rgba(245, 181, 0, 0.55) 70%, transparent);
    pointer-events: none;
}
.nw-search::after,
body.vk .vk-search-panel::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 181, 0, 0.25) 50%, transparent);
    pointer-events: none;
}

/* Search-box pill */
.nw-search .search-box,
body.vk .vk-search-panel .search-box {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 9px 10px 9px 14px;
    background: linear-gradient(180deg, #1a1d28 0%, #0f1219 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow:
        0 18px 44px -18px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}
.nw-search .search-box:hover,
body.vk .vk-search-panel .search-box:hover {
    border-color: rgba(255, 255, 255, 0.14);
}
.nw-search .search-box:focus-within,
body.vk .vk-search-panel .search-box:focus-within {
    border-color: rgba(245, 181, 0, 0.6);
    box-shadow:
        0 22px 52px -18px rgba(245, 181, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 3px rgba(245, 181, 0, 0.14);
}

/* Search-icon disc */
.nw-search .search-box > svg:first-child,
body.vk .vk-search-panel .search-box > svg:first-child {
    width: 38px;
    height: 38px;
    padding: 10px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ffd966 0%, #f5b500 55%, #c98800 100%);
    color: #1a1100 !important;
    box-shadow:
        0 8px 18px -6px rgba(245, 181, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}
.nw-search .search-box:focus-within > svg:first-child,
body.vk .vk-search-panel .search-box:focus-within > svg:first-child {
    transform: rotate(-6deg) scale(1.04);
}

/* Input */
.nw-search input.search-field,
body.vk .vk-search-panel input.search-field {
    appearance: none;
    background: transparent !important;
    border: 0 !important;
    color: #eef2ff !important;
    font-family: "Hind Siliguri", "Sora", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    outline: none;
    width: 100%;
    padding: 0;
    letter-spacing: 0.005em;
    caret-color: #f5b500;
}
.nw-search input.search-field::placeholder,
body.vk .vk-search-panel input.search-field::placeholder {
    color: #6d7693;
    font-weight: 400;
    opacity: 1;
}

/* Close button — neutral, no aggressive red */
.vk-search-panel__close {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cdd3e0;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    flex-shrink: 0;
    padding: 0;
}
.vk-search-panel__close:hover,
.vk-search-panel__close:focus-visible {
    color: #fff;
    background: rgba(248, 113, 113, 0.16);
    border-color: rgba(248, 113, 113, 0.45);
    transform: rotate(90deg);
}

/* Hint row */
.nw-search__hint,
body.vk .vk-search-panel__hint {
    max-width: 760px;
    margin: 12px auto 0;
    text-align: center;
    color: #8a93a8;
    font-size: 12px;
    letter-spacing: 0.015em;
    line-height: 1.6;
}
.nw-search__hint b,
body.vk .vk-search-panel__hint b {
    display: inline-block;
    color: #ffd966;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 10.5px;
    margin-right: 10px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(245, 181, 0, 0.10);
    border: 1px solid rgba(245, 181, 0, 0.30);
    vertical-align: middle;
}
.nw-search__hint a,
body.vk .vk-search-panel__hint a {
    color: #cdd3e0;
    text-decoration: none;
    padding: 4px 10px;
    margin: 0 2px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
    display: inline-block;
    line-height: 1.3;
}
.nw-search__hint a:hover,
body.vk .vk-search-panel__hint a:hover {
    color: #ffd966;
    border-color: rgba(245, 181, 0, 0.45);
    background: rgba(245, 181, 0, 0.10);
}

/* Mobile */
@media (max-width: 640px) {
    .nw-search,
    body.vk .vk-search-panel { padding: 16px var(--nw-shell-pad, 14px) 18px; }
    .nw-search .search-box,
    body.vk .vk-search-panel .search-box {
        padding: 7px 8px 7px 12px;
        gap: 10px;
        border-radius: 12px;
    }
    .nw-search .search-box > svg:first-child,
    body.vk .vk-search-panel .search-box > svg:first-child {
        width: 34px; height: 34px; padding: 9px;
        border-radius: 9px;
    }
    .nw-search input.search-field,
    body.vk .vk-search-panel input.search-field { font-size: 14px; }
    .vk-search-panel__close { width: 34px; height: 34px; font-size: 20px; border-radius: 9px; }
    .nw-search__hint,
    body.vk .vk-search-panel__hint { font-size: 11.5px; }
    .nw-search__hint a,
    body.vk .vk-search-panel__hint a { padding: 3px 8px; margin: 2px; }
}

/* ============================================================
   4. MOBILE DRAWER
   ============================================================ */
@media (max-width: 1100px) {
    .nw-nav { display: none; }
    .nw-burger { display: inline-flex; }
    .nw-cta__label-long { display: none; }
    .nw-bar__inner { grid-template-columns: auto 1fr auto; column-gap: 12px; }
}
@media (max-width: 560px) {
    .nw-cta { padding: 0 12px; font-size: 12.5px; height: 36px; }
    .nw-cta span:not(.nw-cta__icon) { display: none; }
    .nw-icon-btn, .nw-burger { width: 36px; height: 36px; }
}

/* Icon-only WhatsApp pill — high-specificity overrides (beats body.vk .nw-cta rules) */
body.vk .nw-cta.nw-cta--icon,
body.vk .nw-bar__cta .nw-cta.nw-cta--icon {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    font-size: 0 !important;
    gap: 0 !important;
    border-radius: 999px !important;
}
body.vk .nw-cta.nw-cta--icon .nw-cta__icon {
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
body.vk .nw-cta.nw-cta--icon svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}
@media (max-width: 560px) {
    body.vk .nw-cta.nw-cta--icon {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
    }
    body.vk .nw-cta.nw-cta--icon .nw-cta__icon,
    body.vk .nw-cta.nw-cta--icon svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ============================================================
   Mobile drawer — premium dark luxe (rebuilt, concrete colors)
   ============================================================ */
body.vk .vk-mobile.nw-drawer {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(245, 181, 0, 0.10), transparent 60%),
        radial-gradient(50% 50% at 50% 100%, rgba(245, 181, 0, 0.05), transparent 60%),
        linear-gradient(180deg, #0a0c14 0%, #060810 100%);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: 200;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
body.vk .vk-mobile.nw-drawer:not([hidden]) { display: block; animation: nwDrawerFade .35s cubic-bezier(.2,.7,.2,1); }
@keyframes nwDrawerFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
body.vk .vk-mobile.nw-drawer::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 181, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 1001;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 22px 22px 42px;
    position: relative;
}

/* Drawer top — brand logo + close (X) button */
body.vk .vk-mobile.nw-drawer .nw-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.vk .vk-mobile.nw-drawer .nw-drawer__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__brand img {
    height: auto;
    max-height: 42px;
    width: auto;
    max-width: 180px;
    display: block;
    aspect-ratio: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(245, 181, 0, 0.30));
}
body.vk .vk-mobile.nw-drawer .nw-drawer__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.14), rgba(245, 181, 0, 0.05));
    border: 1px solid rgba(245, 181, 0, 0.40);
    color: #ffd966;
    cursor: pointer;
    transition: transform .2s ease, background .25s ease, box-shadow .25s ease;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__close:hover,
body.vk .vk-mobile.nw-drawer .nw-drawer__close:focus-visible {
    background: linear-gradient(135deg, #ffd966, #f5b500);
    color: #1a1100;
    transform: rotate(90deg);
    box-shadow: 0 10px 22px -8px rgba(245, 181, 0, 0.55);
    outline: none;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__close svg {
    width: 20px; height: 20px;
    display: block;
}

/* "নেভিগেশন" eyebrow above the list */
body.vk .vk-mobile.nw-drawer .nw-drawer__inner > ul:first-of-type::before,
body.vk .vk-mobile.nw-drawer .nw-drawer__inner > .nw-drawer__list:first-of-type::before,
body.vk .vk-mobile.nw-drawer .nw-drawer__top + ul::before,
body.vk .vk-mobile.nw-drawer .nw-drawer__top + .nw-drawer__list::before {
    content: "নেভিগেশন";
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.16), rgba(245, 181, 0, 0.05));
    border: 1px solid rgba(245, 181, 0, 0.40);
    color: #ffd966;
    font-family: "Sora", -apple-system, sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Nav list */
body.vk .vk-mobile.nw-drawer ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
body.vk .vk-mobile.nw-drawer ul li {
    border-bottom: 0 !important;
    position: relative;
}
body.vk .vk-mobile.nw-drawer ul li a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    color: #eef2ff;
    font-family: "Hind Siliguri", "Sora", sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .15s ease,
        box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
body.vk .vk-mobile.nw-drawer ul li a::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffd966, #f5b500);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity .25s ease;
}
body.vk .vk-mobile.nw-drawer ul li a:hover,
body.vk .vk-mobile.nw-drawer ul li a:focus-visible {
    color: #ffd966;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.10), rgba(245, 181, 0, 0.03));
    border-color: rgba(245, 181, 0, 0.40);
    transform: translateX(3px);
    box-shadow: 0 8px 22px -10px rgba(245, 181, 0, 0.35);
}
body.vk .vk-mobile.nw-drawer ul li a:hover::before,
body.vk .vk-mobile.nw-drawer ul li a:focus-visible::before {
    opacity: 1;
}
body.vk .vk-mobile.nw-drawer ul li a > span:first-child {
    flex: 1;
    min-width: 0;
}
body.vk .vk-mobile.nw-drawer ul li a > span:last-child {
    color: #7a83a0;
    font-size: 14px;
    font-weight: 700;
    transition: color .25s ease, transform .2s ease;
}
body.vk .vk-mobile.nw-drawer ul li a:hover > span:last-child,
body.vk .vk-mobile.nw-drawer ul li a:focus-visible > span:last-child {
    color: #ffd966;
    transform: translateX(2px);
}

/* Sub-menu (indented) */
body.vk .vk-mobile.nw-drawer .nw-drawer__sub {
    border-left: 2px solid rgba(245, 181, 0, 0.22);
    padding-left: 14px;
    margin: 4px 0 4px 14px;
    gap: 4px;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__sub li a {
    padding: 10px 14px;
    color: #a8b1c5;
    font-size: 13.5px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.015);
    border-color: transparent;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__sub li a:hover {
    color: #ffd966;
    background: rgba(245, 181, 0, 0.06);
    border-color: rgba(245, 181, 0, 0.25);
}
body.vk .vk-mobile.nw-drawer li.is-sub a span:last-child { font-size: 12px; }

/* WhatsApp CTA — premium gold pill, stacked label + number */
body.vk .vk-mobile.nw-drawer .nw-drawer__cta {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ffd966, #f5b500 60%, #c98800);
    color: #1a1100;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow:
        0 14px 32px -10px rgba(245, 181, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: transform .15s ease, filter .15s ease, box-shadow .25s ease;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        0 18px 38px -10px rgba(245, 181, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
body.vk .vk-mobile.nw-drawer .nw-drawer__cta > span:first-child {
    font-size: 13.5px;
    letter-spacing: 0.04em;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__cta .nw-drawer__cta-num {
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: none;
    opacity: 0.85;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(26, 17, 0, 0.18);
    border: 1px solid rgba(26, 17, 0, 0.22);
}

/* Social icon row inside drawer */
body.vk .vk-mobile.nw-drawer .nw-drawer__social {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__social-lbl {
    display: block;
    color: #ffd966;
    font-family: "Sora", sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(245, 181, 0, 0.10), rgba(245, 181, 0, 0.03));
    border: 1px solid rgba(245, 181, 0, 0.32);
    color: #ffd966;
    transition: transform .15s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
    /* override drawer's `ul li a` rules — these aren't list items */
    padding: 0 !important;
    min-height: 0 !important;
    font-size: 0 !important;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row a:hover,
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row a:focus-visible {
    background: linear-gradient(135deg, #ffd966, #f5b500);
    border-color: #f5b500;
    color: #1a1100;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(245, 181, 0, 0.55);
}
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row a::before,
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row a::after { display: none !important; content: none !important; }
body.vk .vk-mobile.nw-drawer .nw-drawer__social-row svg {
    width: 18px; height: 18px;
    display: block;
}

/* Footer */
body.vk .vk-mobile.nw-drawer .nw-drawer__foot {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #7a83a0;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__foot span:first-child {
    color: #ffd966;
    font-weight: 800;
    letter-spacing: 0.02em;
    font-family: "Sora", sans-serif;
    font-size: 12.5px;
}
body.vk .vk-mobile.nw-drawer .nw-drawer__foot span:last-child {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.10);
    border: 1px solid rgba(248, 113, 113, 0.30);
    color: #fda4af;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

/* ============================================================
   5. FOOTER — CTA BAND
   ============================================================ */
.nw-footer {
    margin-top: 40px;
    background: linear-gradient(180deg,
        var(--vk-bg) 0%,
        var(--vk-bg-dark) 60%,
        var(--vk-bg-dark-2) 100%);
    color: var(--vk-text);
    position: relative;
    overflow: hidden;
}

.nw-cta-band {
    position: relative;
    background:
        linear-gradient(135deg, #1A1208 0%, #0E0A04 60%);
    border-top: 1px solid rgba(245, 177, 0, 0.18);
    border-bottom: 1px solid rgba(245, 177, 0, 0.10);
    overflow: hidden;
}
.nw-cta-band::before {
    content: "";
    position: absolute; inset: -40% -10% auto auto;
    width: 60%; height: 200%;
    background: radial-gradient(closest-side, rgba(245, 177, 0, 0.28), transparent 70%);
    pointer-events: none;
    transform: rotate(-10deg);
}
.nw-cta-band::after {
    content: "";
    position: absolute; left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(245,177,0,0.6) 30%,
        rgba(245,177,0,1) 50%,
        rgba(245,177,0,0.6) 70%, transparent);
    opacity: 0.85;
}
.nw-cta-band__inner {
    position: relative;
    max-width: var(--nw-max);
    margin: 0 auto;
    padding: clamp(28px, 4.5vw, 52px) var(--nw-shell-pad);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}
.nw-cta-band__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--vk-gold-2);
    font-family: var(--vk-font-en);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.nw-cta-band__eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--vk-gold);
}
.nw-cta-band__title {
    font-family: var(--vk-font-bn);
    font-weight: 700;
    font-size: clamp(20px, 2.8vw, 32px);
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
    color: var(--vk-text);
}
.nw-cta-band__title em {
    font-style: normal;
    background: var(--vk-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nw-cta-band__sub {
    margin: 0;
    font-size: clamp(13px, 1.05vw, 14.5px);
    line-height: 1.6;
    color: var(--vk-text-mid);
    max-width: 54ch;
}
.nw-cta-band__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px;
    background: var(--vk-grad-gold);
    color: #0A0500;
    font-family: var(--vk-font-en);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow:
        0 14px 36px rgba(245, 177, 0, 0.32),
        0 0 0 1px rgba(245, 177, 0, 0.55) inset;
    transition: transform .25s ease, box-shadow .25s ease;
    white-space: nowrap;
}
.nw-cta-band__btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 60px rgba(245, 177, 0, 0.46),
        0 0 0 1px rgba(245, 177, 0, 0.78) inset;
}
.nw-cta-band__btn svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
    .nw-cta-band__inner { grid-template-columns: 1fr; text-align: left; }
    .nw-cta-band__btn { justify-self: start; }
}

/* ============================================================
   6. FOOTER — MAIN GRID
   ============================================================ */
.nw-foot {
    position: relative;
    max-width: var(--nw-max);
    margin: 0 auto;
    padding: clamp(32px, 4vw, 52px) var(--nw-shell-pad) 24px;
}
.nw-foot__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
    gap: clamp(28px, 3.4vw, 56px);
    align-items: start;
}
body.vk .nw-foot__brand img {
    height: 44px;
    width: auto;
    max-width: 220px;
    aspect-ratio: 400 / 104;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 0 14px rgba(245, 177, 0, 0.20))
        drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4));
    margin-bottom: 12px;
}
body.vk .nw-foot__brand p,
.nw-foot__brand p {
    color: #cdd3e0 !important;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 36ch;
}
.nw-foot__social {
    display: inline-flex; gap: 10px;
}
body.vk .nw-foot__social a,
.nw-foot__social a {
    width: 40px; height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(245, 181, 0, 0.32) !important;
    background: linear-gradient(180deg, rgba(245,181,0,.10), rgba(245,181,0,.03)) !important;
    color: #ffd966 !important;
    display: inline-flex; align-items: center; justify-content: center;
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .2s ease, box-shadow .25s ease;
    text-decoration: none;
}
body.vk .nw-foot__social a:hover,
.nw-foot__social a:hover {
    color: #1a1100 !important;
    background: linear-gradient(135deg, #ffd966, #f5b500) !important;
    border-color: #f5b500 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(245, 181, 0, 0.55);
}
.nw-foot__social svg { width: 18px; height: 18px; display: block; }
.nw-foot__social svg path { fill: currentColor; }

body.vk .nw-foot__h,
.nw-foot__h {
    color: #ffd966 !important;
    font-family: "Sora", -apple-system, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 12px;
    position: relative;
    padding-left: 18px;
}
.nw-foot__h::before {
    content: "";
    position: absolute; left: 0; top: 50%;
    width: 12px; height: 2px;
    background: linear-gradient(90deg, #ffd966, #f5b500);
    border-radius: 2px;
    transform: translateY(-50%);
}
body.vk .nw-foot__col ul,
.nw-foot__col ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
}
body.vk .nw-foot__col ul a,
.nw-foot__col ul a {
    color: #cdd3e0 !important;
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
    display: inline-flex; align-items: center; gap: 8px;
}
.nw-foot__col ul a::before {
    content: "";
    width: 0; height: 2px;
    background: linear-gradient(90deg, #ffd966, #f5b500);
    border-radius: 2px;
    transition: width .25s ease;
}
body.vk .nw-foot__col ul a:hover,
.nw-foot__col ul a:hover {
    color: #ffd966 !important;
}
.nw-foot__col ul a:hover::before { width: 14px; }

/* Trust column */
.nw-foot__trust {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 10px;
}
body.vk .nw-foot__trust li,
.nw-foot__trust li {
    display: inline-flex; align-items: center; gap: 10px;
    color: #eef2ff !important;
    font-size: 12px;
    line-height: 1.4;
}
.nw-foot__trust .nw-foot__tdot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #f5b500;
    box-shadow:
        0 0 0 4px rgba(245, 181, 0, 0.10),
        0 0 14px rgba(245, 181, 0, 0.45);
    flex-shrink: 0;
}
body.vk .nw-foot__trust b,
.nw-foot__trust b {
    color: #ffd966 !important;
    font-family: "Sora", -apple-system, sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}
.nw-foot__trust span {
    color: var(--vk-text-mid);
    font-size: 11.5px;
}

@media (max-width: 1100px) {
    .nw-foot__grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .nw-foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .nw-foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nw-foot__brand { grid-column: 1 / -1; }
}

/* ============================================================
   7. FOOTER — BOTTOM STRIP
   ============================================================ */
body.vk .nw-foot__bot,
.nw-foot__bot {
    border-top: 1px dashed rgba(245, 181, 0, 0.18);
    max-width: var(--nw-max);
    margin: 16px auto 0;
    padding: 16px var(--nw-shell-pad) 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    color: #7a83a0 !important;
    font-size: 12px;
}
body.vk .nw-foot__bot p,
.nw-foot__bot p { margin: 0; color: inherit !important; }
body.vk .nw-foot__bot-mid,
.nw-foot__bot-mid {
    display: inline-flex; align-items: center; gap: 10px;
    color: #ffd966 !important;
    font-weight: 600;
    letter-spacing: 0.04em;
    justify-self: center;
}
.nw-foot__bot-sep {
    width: 4px; height: 4px;
    border-radius: 999px;
    background: rgba(245, 177, 0, 0.40);
}
.nw-foot__legal {
    display: inline-flex; gap: 18px;
    justify-self: end;
}
.nw-foot__legal a {
    color: var(--vk-text-mid);
    text-decoration: none;
    transition: color .25s ease;
}
.nw-foot__legal a:hover { color: var(--vk-gold-2); }

@media (max-width: 720px) {
    .nw-foot__bot {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nw-foot__bot-mid, .nw-foot__legal { justify-self: center; }
}

/* ============================================================
   8. SCROLL-TO-TOP — kept compatible with .vk-totop
   ============================================================ */
body.vk .vk-totop {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 999px;
    background: var(--vk-grad-gold);
    color: #0A0500;
    border: 0;
    z-index: 80;
    box-shadow:
        0 12px 32px rgba(245, 177, 0, 0.35),
        0 0 0 1px rgba(245, 177, 0, 0.55) inset;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}
body.vk .vk-totop:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 44px rgba(245, 177, 0, 0.50),
        0 0 0 1px rgba(245, 177, 0, 0.80) inset;
}

/* ============================================================
   9. NEUTRALIZE LEGACY VK STYLES that conflict with the new shell
   ============================================================ */
body.vk .vk-header__bar { display: none; }
body.vk .vk-header__inner { display: none; }
