﻿:root {
    --vc-bg: #101a2c;
    --vc-topbar-bg: #0a1220;
    --vc-bg-scrolled: rgba(16,26,44,.96);
    --vc-border: rgba(255,255,255,.08);
    --vc-border-strong: rgba(255,255,255,.16);
    --vc-accent: #f97316;
    --vc-accent-hover: #ea580c;
    --vc-accent-soft: rgba(249,115,22,.14);
    --vc-accent-gradient: linear-gradient(90deg, var(--vc-accent), #fb923c 50%, var(--vc-accent));
    --vc-bn-accent: #00875a;
    --vc-text: #f8fafc;
    --vc-text-dim: rgba(248,250,252,.64);
    --vc-text-dimmer: rgba(248,250,252,.42);
    --vc-font-display: 'Clash Display', 'DM Sans', 'Poppins', sans-serif;
    --vc-font-body: 'DM Sans', 'Poppins', sans-serif;
    --vc-radius-sm: 8px;
    --vc-radius-md: 12px;
    --vc-radius-lg: 18px;
    --vc-shadow-float: 0 20px 50px rgba(15,23,42,.26), 0 0 0 1px rgba(15,23,42,.05);
}

.vc-dd-search-wrap {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding: 8px 10px 6px;
    border-bottom: 1px solid #eee;
}

.vc-dd-search-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

    .vc-dd-search-input:focus {
        border-color: #f97316;
        box-shadow: 0 0 0 2px rgba(249, 115, 22, .15);
    }

.vc-dd-no-results {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding: 10px 0;
}
/* ── Guard against double-render */
.header_section + .header_section {
    display: none !important;
}
/* ── Page container width  */
.container {
    max-width: 85% !important;
}
@media (max-width: 575.98px) {
    .container {
        max-width: 100% !important;
    }
}
/* HEADER SHELL*/
.vc-header {
    background: var(--vc-bg);
    font-family: var(--vc-font-body);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 0 var(--vc-border);
    transition: box-shadow .3s, background-color .3s;
    animation: vcHeaderIn .4s ease both;
}

@keyframes vcHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.vc-header.scrolled {
    background: var(--vc-bg-scrolled);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,.32);
}
    /* Orange underline stripe when scrolled (matches brand accent) */
    .vc-header.scrolled::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--vc-accent-gradient);
        opacity: .85;
    }
/* TOP BAR  — City · Area · Language selectors */
.vc-topbar {
    background: var(--vc-topbar-bg);
    border-bottom: 1px solid var(--vc-border);
    padding: 6px 0;
}

.vc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    max-width: 100%;
}

.vc-topbar-left,
.vc-topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vc-topbar-vendor-crt-btn:hover {
    background: var(--vc-accent-hover);
    border-color: var(--vc-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.vc-topbar-vendor-crt-btn:focus {
 
    color: #fff;

}
/* Shared "select" button used for city, area, language, merchant create button  */
.vc-topbar-select {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 5px 9px;
    font-family: var(--vc-font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--vc-text-dim);
    cursor: pointer;
    border-radius: var(--vc-radius-sm);
    white-space: nowrap;
    transition: color .2s, background-color .2s;
    touch-action: manipulation;
}

    .vc-topbar-select::after {
        border-top-color: var(--vc-text-dim);
        opacity: .7;
        margin-left: 3px;
        vertical-align: middle;
    }

    .vc-topbar-select:hover,
    .vc-topbar-select[aria-expanded="true"] {
        color: var(--vc-text);
        background: rgba(255,255,255,.07);
    }

    .vc-topbar-select i {
        font-size: 12px;
        color: var(--vc-accent);
        opacity: .9;
    }
/* Vertical divider between top-bar items */
.vc-topbar-sep {
    width: 1px;
    height: 14px;
    background: var(--vc-border);
    flex-shrink: 0;
    margin: 0 2px;
}
/* Top-bar dropdowns */
.vc-topbar .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: var(--vc-shadow-float);
    padding: 6px;
    margin-top: 8px !important;
    min-width: 150px;
    z-index: 1100;
}

.vc-dropdown-empty {
    font-size: 12px;
    color: #9ca3af;
}
/****merchant create button*****/
.add-vendor {
    color: var(--vc-accent);
}

/* MAIN BAR*/
.vc-mainbar {
    padding: 14px 0;
}

.vc-header-container {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}
/* ── Left section: hamburger + logo  */
.vc-left-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
/* Hamburger (mobile only — hidden ≥ 992 px) */
.vc-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--vc-radius-sm);
    border: 1.5px solid var(--vc-border);
    background: rgba(255,255,255,.06);
    color: var(--vc-text);
    cursor: pointer;
    transition: background-color .2s, border-color .2s;
}

    .vc-hamburger:hover {
        background: var(--vc-accent);
        border-color: var(--vc-accent);
    }

    .vc-hamburger:focus-visible {
        outline: 2px solid var(--vc-accent);
        outline-offset: 2px;
    }
/* Logo */
.vc-logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
}

    .vc-logo-wrap:hover {
        opacity: .88;
    }

    .vc-logo-wrap img {
        height: 70px;
        display: block;
    }

.vc-logo-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vc-font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--vc-text-dim);
    margin-top: 3px;
    white-space: nowrap;
}

    .vc-logo-sub .vc-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--vc-accent);
        flex-shrink: 0;
    }
/* ── Center: desktop nav links */
.vc-nav-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-left: auto;
}

.vc-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: relative;
    font-family: var(--vc-font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--vc-text-dim);
    text-decoration: none;
    padding: 9px 16px;
    white-space: nowrap;
    border-radius: var(--vc-radius-sm);
    transition: color .2s, background-color .2s;
}

    .vc-nav-link i {
        font-size: 13px;
    }
    /* Animated underline */
    .vc-nav-link::after {
        content: '';
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 3px;
        height: 2px;
        border-radius: 2px;
        background: var(--vc-accent);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .25s ease;
    }

    .vc-nav-link:hover {
        color: #fff;
        background: rgba(255,255,255,.04);
    }

        .vc-nav-link:hover::after {
            transform: scaleX(1);
        }

    .vc-nav-link.active-page {
        color: #fff;
    }

        .vc-nav-link.active-page::after {
            transform: scaleX(1);
        }

    .vc-nav-link:focus-visible {
        outline: 2px solid var(--vc-accent);
        outline-offset: 2px;
    }
/* ── Right section: icons + auth buttons  */
.vc-right-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}
/* ── Icon buttons (search, cart, account) */
.vc-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--vc-radius-sm);
    background: rgba(255,255,255,.08);
    border: 1.5px solid var(--vc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-text);
    font-size: 16px;
    transition: background-color .22s, border-color .22s, color .22s, transform .22s;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    font: inherit;
}

    .vc-icon-btn:hover {
        background: var(--vc-accent);
        border-color: var(--vc-accent);
        color: #fff;
        transform: translateY(-1px);
    }

    .vc-icon-btn[aria-expanded="true"] {
        background: var(--vc-accent);
        border-color: var(--vc-accent);
        color: #fff;
    }

    .vc-icon-btn:focus-visible {
        outline: 2px solid var(--vc-accent);
        outline-offset: 2px;
    }
/* Cart badge */
.vc-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--vc-bg);
    line-height: 1;
}
/* ── Auth buttons — "Log in" (outlined) + "Register" (solid) ─────────── */
.vc-auth-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--vc-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--vc-text);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 50px;
    padding: 8px 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .22s;
    background: transparent;
}

    .vc-auth-outline:hover {
        border-color: var(--vc-accent);
        color: var(--vc-accent);
    }
/* "Register" — solid orange pill */
.vc-auth-solid {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--vc-font-display);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--vc-accent);
    border: 1.5px solid var(--vc-accent);
    border-radius: 50px;
    padding: 8px 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .22s;
}

    .vc-auth-solid:hover {
        background: var(--vc-accent-hover);
        border-color: var(--vc-accent-hover);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(249,115,22,.35);
    }

    .vc-auth-outline i,
    .vc-auth-solid i {
        font-size: 13px;
    }

    .vc-auth-outline:focus-visible,
    .vc-auth-solid:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }
/* ── Account / main-bar dropdown */
.vc-header .dropdown-menu {
    border: none;
    border-radius: var(--vc-radius-md);
    box-shadow: var(--vc-shadow-float);
    padding: 6px;
    margin-top: 10px !important;
    font-family: var(--vc-font-body);
}

.vc-header .dropdown-item {
    border-radius: var(--vc-radius-sm);
    font-size: 13px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color .18s, color .18s;
}

    .vc-header .dropdown-item:hover {
        background: var(--vc-accent-soft);
        color: #9a3412;
    }

    .vc-header .dropdown-item.active,
    .vc-header .dropdown-item:active {
        background: var(--vc-accent);
        color: #fff;
    }

    .vc-header .dropdown-item.vc-bn-active {
        background: var(--vc-bn-accent);
        color: #fff;
    }
/* SEARCH PANEL (phone/tablet icon trigger) */
.vc-search-wrap {
    position: relative;
}

.vc-search-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 440px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: var(--vc-radius-lg);
    padding: 22px;
    box-shadow: var(--vc-shadow-float);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.96);
    transform-origin: top right;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1100;
    overflow: hidden;
}
    /* Arrow pointer */
    .vc-search-panel::before {
        content: '';
        position: absolute;
        top: -7px;
        right: 22px;
        width: 14px;
        height: 14px;
        background: #fff;
        transform: rotate(45deg);
        border-radius: 2px;
    }
    /* Top accent stripe */
    .vc-search-panel::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--vc-accent-gradient);
    }

    .vc-search-panel.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

.vc-search-form {
    display: flex;
    background: #f3f4f6;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .22s, background-color .22s;
    width: 100%;
}

    .vc-search-form:focus-within {
        background: #fff;
        border-color: var(--vc-accent);
        box-shadow: 0 0 0 4px var(--vc-accent-soft);
    }

.vc-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: var(--vc-font-body);
    font-size: 15px;
    color: #111827;
    background: transparent;
}

    .vc-search-input::placeholder {
        color: #9ca3af;
    }

.vc-search-btn {
    background: var(--vc-accent);
    border: none;
    width: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .2s;
}

    .vc-search-btn:hover {
        background: var(--vc-accent-hover);
    }

    .vc-search-btn:focus-visible {
        outline: 2px solid var(--vc-accent-hover);
        outline-offset: 2px;
    }
/* SEARCH BOX — desktop/laptop inline (≥992px), centered between the logo and the icon cluster */
.vc-search-inline {
    display: none;
}

.vc-search-inline-form {
    display: flex;
    align-items: center;
    width: 85%;
    max-width: 520px;
    height: 46px;
    background: rgba(255,255,255,.07);
    border: 1.5px solid var(--vc-border);
    border-radius: 50px;
    padding: 0 6px 0 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,.12);
    transition: border-color .2s, background-color .2s, box-shadow .2s;
}

    .vc-search-inline-form:focus-within {
        border-color: var(--vc-accent);
        background: rgba(255,255,255,.1);
        box-shadow: 0 0 0 3px var(--vc-accent-soft);
    }

.vc-search-inline-icon {
    font-size: 14px;
    color: var(--vc-text-dim);
    margin-right: 8px;
    flex-shrink: 0;
}

.vc-search-inline-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--vc-font-body);
    font-size: 13.5px;
    color: var(--vc-text);
}

    .vc-search-inline-input::placeholder {
        color: var(--vc-text-dimmer);
    }

.vc-search-inline-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: var(--vc-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background-color .2s;
}

    .vc-search-inline-btn:hover {
        background: var(--vc-accent-hover);
    }

    .vc-search-inline-btn:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }
/* MOBILE OFFCANVAS */
.vc-offcanvas {
    background: var(--vc-bg);
    color: var(--vc-text);
    font-family: var(--vc-font-body);
    width: 50vw;
    min-width: 230px;
    max-width: 340px;
}

    .vc-offcanvas .offcanvas-header {
        border-bottom: 1px solid var(--vc-border);
        padding: 14px 18px;
    }

    .vc-offcanvas .offcanvas-body {
        padding: 16px 14px;
    }
/* Logo inside the offcanvas header — replaces a former inline style */
.vc-offcanvas-logo {
    height: 32px;
}
/* Mobile search bar */
.vc-mob-search {
    margin-bottom: 14px;
}

.vc-mob-search-inner {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1.5px solid var(--vc-border);
    border-radius: var(--vc-radius-sm);
    overflow: hidden;
    transition: border-color .2s, background-color .2s;
}

    .vc-mob-search-inner:focus-within {
        border-color: var(--vc-accent);
        background: rgba(255,255,255,.1);
    }

.vc-mob-search-icon {
    padding: 0 10px;
    color: var(--vc-text-dim);
    font-size: 13px;
    flex-shrink: 0;
}

.vc-mob-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 4px;
    font-family: var(--vc-font-body);
    font-size: 13px;
    color: var(--vc-text);
    min-width: 0;
}

    .vc-mob-search-input::placeholder {
        color: var(--vc-text-dim);
    }

.vc-mob-search-btn {
    width: 38px;
    height: 38px;
    background: var(--vc-accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color .2s;
}

    .vc-mob-search-btn:hover {
        background: var(--vc-accent-hover);
    }
/* Mobile nav links */
.vc-mob-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: var(--vc-radius-sm);
    color: var(--vc-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color .2s, color .2s;
}

    .vc-mob-link i {
        font-size: 15px;
        width: 18px;
        text-align: center;
        color: var(--vc-text-dim);
        transition: color .2s;
    }

    .vc-mob-link:hover {
        background: rgba(255,255,255,.06);
        color: #fff;
    }

        .vc-mob-link:hover i {
            color: var(--vc-accent);
        }
    /* Danger variant (Logout) — replaces a former inline style */
    .vc-mob-link.vc-mob-link--danger {
        color: #f87171;
    }

        .vc-mob-link.vc-mob-link--danger i {
            color: #f87171;
        }

        .vc-mob-link.vc-mob-link--danger:hover {
            background: rgba(239,68,68,.12);
            color: #fca5a5;
        }

            .vc-mob-link.vc-mob-link--danger:hover i {
                color: #fca5a5;
            }

.vc-mob-hr {
    border-color: var(--vc-border);
    margin: 10px 0;
    opacity: 1;
}
/* Language pills */
.vc-lang-pill {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 8px;
    border-radius: var(--vc-radius-sm);
    border: 1.5px solid var(--vc-border);
    color: var(--vc-text-dim);
    text-decoration: none;
    transition: all .2s;
}

    .vc-lang-pill:hover {
        border-color: var(--vc-accent);
        color: #fff;
    }

    .vc-lang-pill.active.vc-accent-active {
        background: var(--vc-accent);
        border-color: var(--vc-accent);
        color: #fff;
    }

    .vc-lang-pill.active {
        background: var(--vc-bn-accent);
        border-color: var(--vc-bn-accent);
        color: #fff;
    }
/* TOP-BAR CITY / AREA DROPDOWNS — scrollable option lists */
.vc-scroll-menu {
    max-height: 260px;
    overflow-y: auto;
    min-width: 190px;
    scrollbar-width: thin;
}

    .vc-scroll-menu::-webkit-scrollbar {
        width: 6px;
    }

    .vc-scroll-menu::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.12);
        border-radius: 10px;
    }

.vc-header .dropdown-item.vc-city-option.active {
    background: var(--vc-accent);
    color: #fff;
}
/* ALL CATEGORIES — desktop mega-menu */
.vc-cat-wrap {
    position: relative;
}
/* Trigger button reuses .vc-nav-link visuals but is a <button> */
.vc-cat-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

    .vc-cat-trigger .vc-cat-caret {
        font-size: 10px;
        transition: transform .22s ease;
    }

    .vc-cat-trigger[aria-expanded="true"] {
        color: #fff;
    }

        .vc-cat-trigger[aria-expanded="true"]::after {
            transform: scaleX(1);
        }

        .vc-cat-trigger[aria-expanded="true"] .vc-cat-caret {
            transform: rotate(180deg);
        }
/* Floating panel */
.vc-cat-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 680px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: var(--vc-radius-lg);
    padding: 24px;
    box-shadow: var(--vc-shadow-float);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.97);
    transform-origin: top left;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1100;
}
    /* Arrow pointer, aligned under the trigger */
    .vc-cat-panel::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 28px;
        width: 14px;
        height: 14px;
        background: #fff;
        transform: rotate(45deg);
        border-radius: 2px;
    }
    /* Top accent stripe */
    .vc-cat-panel::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        border-radius: var(--vc-radius-lg) var(--vc-radius-lg) 0 0;
        background: var(--vc-accent-gradient);
    }

    .vc-cat-panel.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

.vc-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 22px;
    max-height: 440px;
    overflow-y: auto;
    padding-right: 4px;
}

    .vc-cat-grid::-webkit-scrollbar {
        width: 6px;
    }

    .vc-cat-grid::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.1);
        border-radius: 10px;
    }

.vc-cat-col-title {
    display: block;
    font-family: var(--vc-font-display);
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    padding-bottom: 8px;
    margin-bottom: 9px;
    border-bottom: 1.5px solid #f3f4f6;
    transition: color .18s;
}

    .vc-cat-col-title:hover {
        color: var(--vc-accent);
    }

.vc-cat-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .vc-cat-sublist a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        font-family: var(--vc-font-body);
        font-size: 12.5px;
        color: #4b5563;
        text-decoration: none;
        padding: 2px 0;
        transition: color .15s;
    }

        .vc-cat-sublist a:hover {
            color: var(--vc-accent);
        }

.vc-cat-count {
    font-size: 10.5px;
    color: #9ca3af;
    flex-shrink: 0;
}

.vc-cat-empty {
    padding: 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}
/* ALL CATEGORIES — mobile accordion (inside offcanvas) */
.vc-mob-section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--vc-text-dim);
    margin: 8px 8px;
}

    .vc-mob-section-label i {
        font-size: 11px;
    }

.vc-mob-cat-group {
    margin-bottom: 2px;
}

.vc-mob-cat-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--vc-text);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 8px;
    border-radius: var(--vc-radius-sm);
    cursor: pointer;
    transition: background-color .2s;
}

    .vc-mob-cat-toggle:hover,
    .vc-mob-cat-toggle.open {
        background: rgba(255,255,255,.06);
    }

    .vc-mob-cat-toggle i {
        font-size: 12px;
        color: var(--vc-text-dim);
        transition: transform .2s, color .2s;
    }

    .vc-mob-cat-toggle.open i {
        transform: rotate(180deg);
        color: var(--vc-accent);
    }

.vc-mob-cat-body {
    display: none;
    margin: 2px 0 8px 18px;
    padding-left: 10px;
    border-left: 1.5px solid var(--vc-border);
}

    .vc-mob-cat-body.show {
        display: block;
    }

    .vc-mob-cat-body .vc-mob-link {
        font-size: 13px;
        padding: 8px;
    }

.vc-mob-cat-count {
    margin-left: auto;
    font-size: 10.5px;
    color: var(--vc-text-dim);
}
/* BOOTSTRAP TOOLTIP OVERRIDES */
.tooltip .tooltip-inner {
    font-family: var(--vc-font-body);
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 6px;
    background: #111827;
}
/*  RESPONSIVE BREAKPOINTS */
/* ≥ 992 px: hide hamburger + phone/tablet icon search, center the inline desktop search box */
@media (min-width: 992px) {
    .vc-hamburger {
        display: none !important;
    }

    .vc-search-wrap {
        display: none !important;
    }

    .vc-search-inline {
        display: flex;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }
    /* Search box now centers via the flexible wrapper above, so the
       right-hand cluster no longer needs to self-push with auto margin */
    .vc-right-section {
        margin-left: 0;
    }
}
/* < 992 px: hide desktop nav (mega-menu lives inside it) */
@media (max-width: 991.98px) {
    .vc-nav-center {
        display: none !important;
    }

    .vc-cat-panel {
        display: none !important;
    }

    .vc-topbar {
        padding: 4px 0;
    }

    .vc-topbar-select {
        font-size: 11px;
        padding: 6px 7px;
        min-height: 32px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .vc-cat-panel {
        width: 560px;
    }

    .vc-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .vc-header-container {
        gap: 12px;
    }

    .vc-nav-link {
        padding: 8px 12px;
    }

    .vc-search-inline-form {
        max-width: 380px;
    }
}

@media (max-width: 767.98px) {
    .vc-hide-mobile {
        display: none !important;
    }

    .vc-logo-wrap img {
        height: 52px;
    }

    .vc-logo-sub {
        display: none;
    }

    .vc-mainbar {
        padding: 8px 0;
    }

    .vc-header-container {
        gap: 8px;
        align-items: center;
    }

        .vc-header-container > .vc-left-section,
        .vc-header-container > .vc-right-section {
            display: contents;
        }
    /* Logo hard-left */
    .vc-logo-wrap {
        order: 2;
        margin-right: auto;
    }

    .vc-hamburger {
        order: 1;
    }
    /* Search icon sits immediately before the cart icon */
    .vc-search-wrap {
        order: 3;
        position: static;
    }

    .shopping_cart {
        order: 4;
    }

    .vc-search-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        max-width: 100%;
        border-radius: 0;
        padding: 12px 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,.18);
        transform: translateY(-8px);
        transform-origin: top center;
    }

        .vc-search-panel::before {
            display: none;
        }

        .vc-search-panel.active {
            transform: translateY(0);
        }

    .vc-search-form {
        border-radius: 10px;
    }

    .vc-search-input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .vc-search-btn {
        width: 46px;
        font-size: 15px;
    }

    .vc-topbar-inner {
        width: 100%;
        justify-content: center;
        justify-content: safe center;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }


        .vc-topbar-inner::-webkit-scrollbar {
            display: none;
        }


    .vc-topbar-left {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .vc-topbar-right {
        flex: 0 0 auto;
        justify-content: center;
    }

    .vc-topbar-left,
    .vc-topbar-right {
        flex-shrink: 0;
    }

    .vc-topbar-select span {
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }
    .vc-topbar .dropdown-menu {
        max-width: calc(100vw - 24px);
    }
    /*responsive top search bar*/
    .vc-search-inline-form {
        width: 100%;
        max-width: 100%;
        height: 42px;
        padding: 0 6px 0 14px;
    }
}

@media (max-width: 399.98px) {
    .vc-icon-btn,
    .vc-hamburger {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .vc-header-container {
        gap: 6px;
    }

    .vc-logo-wrap img {
        height: 44px;
    }
    .vc-search-inline-form {
        width: 100%;
        max-width: 100%;
        height: 42px;
        padding: 0 6px 0 14px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .vc-search-inline-form {
        width: 100%;
        max-width: 450px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vc-header {
        animation: none;
    }

    .vc-header,
    .vc-icon-btn,
    .vc-nav-link,
    .vc-auth-outline,
    .vc-auth-solid,
    .vc-search-panel,
    .vc-cat-panel {
        transition: none;
    }
}
@media (max-width: 399.98px) {
    .vc-topbar-select {
        padding: 6px 4px;
        gap: 3px;
        font-size: 10px;
    }

        .vc-topbar-select span {
            max-width: 62px;
        }

        .vc-topbar-select i {
            font-size: 10.5px;
        }

    .vc-topbar-sep {
        display: none;
    }

    .vc-topbar-left,
    .vc-topbar-right {
        gap: 2px;
    }
}