:root {
    
    --vx-gap: 24px;
    --vx-radius: 0;
    --vx-radius-sm: 0;
    --vx-max-w: {widthContainterSite}px;
    --vx-pad-x: clamp(16px, 4vw, 48px);
    --vx-transition: .25s ease;

    
    --vx-bg-body:    #ffffff;
    --vx-bg-card:    #ffffff;
    --vx-bg-header:  #ffffff;
    --vx-bg-footer:  #0a0a0a;
    --vx-bg-input:   #f5f5f5;
    --vx-bg-hover:   #f2f2f2;
    --vx-bg-active:  #ebebeb;

    
    --vx-border:     #e5e5e5;
    --vx-shadow:     0 1px 2px rgba(0,0,0,.04);
    --vx-shadow-lg:  0 12px 40px rgba(0,0,0,.10);

    
    --vx-text:       #0a0a0a;
    --vx-text-2:     #4a4a4a;
    --vx-text-3:     #8a8a8a;
    --vx-text-inv:   #ffffff;

    
    --vx-primary:        #0a0a0a;
    --vx-primary-hover:  #2a2a2a;
    --vx-primary-light:  rgba(10,10,10,.06);
    --vx-primary-2:      #2a2a2a;
    --vx-accent:         #c9a961;
    --vx-overlay:        rgba(0,0,0,.45);

    
    --vx-success: #0e8a5b;
    --vx-warning: #c97a0e;
    --vx-danger:  #c93434;
    --vx-info:    #1e6dd6;

    
    --vx-footer-text:       #b3b3b3;
    --vx-footer-text-hover: #ffffff;

    
    --vx-font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --vx-font-size-base: 15px;

    --vx-track-tight: -.01em;
    --vx-track-wide:  .08em;
    --vx-track-uber:  .18em;
}

[data-theme="dark"] {
    --vx-bg-body:    #0a0a0a;
    --vx-bg-card:    #111111;
    --vx-bg-header:  #0a0a0a;
    --vx-bg-footer:  #050505;
    --vx-bg-input:   #161616;
    --vx-bg-hover:   #1c1c1c;
    --vx-bg-active:  #242424;

    --vx-border:     #262626;
    --vx-shadow:     0 1px 2px rgba(0,0,0,.4);
    --vx-shadow-lg:  0 12px 40px rgba(0,0,0,.6);

    --vx-text:       #f5f5f5;
    --vx-text-2:     #b8b8b8;
    --vx-text-3:     #7a7a7a;
    --vx-text-inv:   #0a0a0a;

    --vx-primary:        #ffffff;
    --vx-primary-hover:  #e5e5e5;
    --vx-primary-light:  rgba(255,255,255,.08);
    --vx-primary-2:      #e5e5e5;
    --vx-overlay:        rgba(0,0,0,.6);

    --vx-footer-text:       #8a8a8a;
    --vx-footer-text-hover: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--vx-font-family);
    font-size: var(--vx-font-size-base);
    line-height: 1.55;
    color: var(--vx-text);
    background: var(--vx-bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease, opacity .15s ease;
}
a:hover { color: var(--vx-text); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

button { font-family: inherit; }

.vx-container-fluid {
    width: 100%;
    padding-left: var(--vx-pad-x);
    padding-right: var(--vx-pad-x);
}

.vx-container {
    width: 100%;
    max-width: var(--vx-max-w);
    margin: 0 auto;
    padding-left: var(--vx-pad-x);
    padding-right: var(--vx-pad-x);
}

.vx-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.vx-header {
    background: var(--vx-bg-header);
    border-bottom: 1px solid var(--vx-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.vx-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    height: 68px;
}

.vx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--vx-text);
    letter-spacing: var(--vx-track-wide);
    text-transform: uppercase;
    justify-self: start;
}
.vx-logo img { height:60px; width: auto; }
.vx-logo-dark { display: none; }
[data-theme="dark"] .vx-logo-light { display: none; }
[data-theme="dark"] .vx-logo-dark  { display: inline-block; }

.vx-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    justify-self: center;
}

.vx-header-nav a,
.vx-front-nav-link {
    position: relative;
    padding: 22px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--vx-text);
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    transition: color .15s ease;
}

.vx-header-nav a::after,
.vx-front-nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 18px;
    height: 1.5px;
    background: var(--vx-text);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

.vx-header-nav a:hover::after,
.vx-front-nav-link:hover::after,
.vx-header-nav a.active::after,
.vx-front-nav-link.active::after {
    transform: scaleX(1);
}

.vx-header-nav a:hover,
.vx-front-nav-link:hover { background: transparent; color: var(--vx-text); }

.vx-mobile-nav-logo { display: none; }

.vx-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-self: end;
}

.vx-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vx-radius);
    border: none;
    background: transparent;
    color: var(--vx-text);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.vx-btn-icon:hover { background: var(--vx-bg-hover); }
.vx-btn-icon svg { width: 20px; height: 20px; }

.vx-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vx-text);
    cursor: pointer;
    padding: 8px;
}
.vx-mobile-toggle svg { width: 24px; height: 24px; }

.vx-header-top {
    background: var(--vx-text);
    color: var(--vx-text-inv);
    border-bottom: 1px solid var(--vx-border);
    font-size: 12px;
    width: 100%;
}
.vx-header-top:empty { display: none; }

.vx-header-top .vx-container-fluid {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.vx-header-top-user {
    color: var(--vx-text-inv);
    opacity: .85;
}

.vx-header-top-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vx-front-top-link {
    font-size: 11px;
    font-weight: 500;
    color: var(--vx-text-inv);
    text-transform: uppercase;
    letter-spacing: var(--vx-track-uber);
    opacity: .75;
    transition: opacity .15s ease;
}
.vx-front-top-link:hover,
.vx-front-top-link.active { opacity: 1; color: var(--vx-text-inv); }

.vx-zone-hero {
    width: 100%;
    margin: 0 0 var(--vx-gap);
}
.vx-zone-hero:empty { display: none; }

.vx-zone {
    width: 100%;
    margin: 0 0 var(--vx-gap);
}
.vx-zone:empty { display: none; }
.vx-zone-full { width: 100%; }

.vx-content {
    flex: 1;
    width: 100%;
    min-height: calc(80vh - 20px);
 
}

.vx-content-grid {
    display: grid;
    gap: var(--vx-gap);
    width: 100%;
    max-width: 100%;
}

.vx-content-grid,
.vx-content-grid.no-sidebars { grid-template-columns: 1fr; }

.vx-content-grid.has-sidebar-left  { grid-template-columns: 280px 1fr; }
.vx-content-grid.has-sidebar-right { grid-template-columns: 1fr 280px; }
.vx-content-grid.has-both-sidebars { grid-template-columns: 260px 1fr 260px; }

.vx-sidebar { min-width: 0; }
.vx-sidebar:empty { display: none; }
.vx-center { min-width: 0;}

.vx-card {
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    box-shadow: none;
    overflow: hidden;
}
.vx-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--vx-border);
}
.vx-card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
}
.vx-card-body { padding: 20px; }

.vx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    border-radius: var(--vx-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    font-family: inherit;
    line-height: 1;
}
.vx-btn svg { width: 16px; height: 16px; }

.vx-btn-primary {
    background: var(--vx-primary);
    color: var(--vx-text-inv);
    border-color: var(--vx-primary);
}
.vx-btn-primary:hover {
    background: var(--vx-bg-card);
    color: var(--vx-text);
    border-color: var(--vx-text);
}

.vx-btn-ghost {
    background: transparent;
    color: var(--vx-text);
    border-color: var(--vx-border);
}
.vx-btn-ghost:hover {
    background: var(--vx-text);
    color: var(--vx-text-inv);
    border-color: var(--vx-text);
}

.vx-btn-outline {
    background: transparent;
    border: 1px solid var(--vx-text);
    color: var(--vx-text);
}
.vx-btn-outline:hover {
    background: var(--vx-text);
    color: var(--vx-text-inv);
}

.vx-btn-danger  { background: var(--vx-danger);  color: var(--vx-text-inv); border-color: var(--vx-danger); }
.vx-btn-success { background: var(--vx-success); color: var(--vx-text-inv); border-color: var(--vx-success); }

.vx-btn-block {
    width: 100%;
}

.vx-input, .vx-select, .vx-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    background: var(--vx-bg-input);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    color: var(--vx-text);
    outline: none;
    transition: border-color .15s ease, background .15s ease;
}
.vx-input:focus, .vx-select:focus, .vx-textarea:focus {
    border-color: var(--vx-text);
    background: var(--vx-bg-card);
}

.vx-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--vx-text-2);
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
}

.vx-table { width: 100%; border-collapse: collapse; }
.vx-table th {
    text-align: left; padding: 12px 16px; font-size: 11px;
    font-weight: 700; text-transform: uppercase; letter-spacing: var(--vx-track-wide);
    color: var(--vx-text-3); border-bottom: 1px solid var(--vx-text);
    background: transparent;
}
.vx-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--vx-border);
    font-size: 14px;
}
.vx-table tr:hover td { background: var(--vx-bg-hover); }

.vx-badge {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    font-size: 10px; font-weight: 700;
    border-radius: var(--vx-radius);
    text-transform: uppercase; letter-spacing: var(--vx-track-wide);
}
.vx-badge-success { background: var(--vx-success); color: #fff; }
.vx-badge-warning { background: var(--vx-warning); color: #fff; }
.vx-badge-danger  { background: var(--vx-danger);  color: #fff; }
.vx-badge-info    { background: var(--vx-info);    color: #fff; }

.vx-dropdown { position: relative; }
.vx-dropdown-menu {
    display: none; position: absolute; right: 0; top: calc(100% + 6px);
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    box-shadow: var(--vx-shadow-lg);
    z-index: 200; padding: 8px 0;
    min-width: 180px;
}
.vx-dropdown.open .vx-dropdown-menu { display: block; }

.vx-dropdown-header {
    padding: 10px 16px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    color: var(--vx-text);
    border-bottom: 1px solid var(--vx-border);
    margin-bottom: 4px;
}

.vx-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--vx-text);
    transition: background .12s ease;
}
.vx-dropdown-item:hover { background: var(--vx-bg-hover); color: var(--vx-text); }
.vx-dropdown-item-danger { color: var(--vx-danger); }
.vx-dropdown-item-danger:hover { color: var(--vx-danger); }

.vx-user-menu  { min-width: 220px; }
.vx-admin-menu { min-width: 240px; }

.vx-btn-login {
    width: auto;
    padding: 0 14px;
    height: 40px;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    color: var(--vx-text);
}
.vx-btn-login svg { width: 18px; height: 18px; }
.vx-btn-login span { font-weight: 700; }

.vx-admin-lock-btn { color: var(--vx-warning); }
.vx-admin-lock-btn:hover { color: var(--vx-text); background: var(--vx-bg-hover); }

.vx-footer {
    background: var(--vx-bg-footer);
    color: var(--vx-footer-text);
    padding: 24px 0 28px;
    margin-top: 60px;
    border-top: 1px solid var(--vx-bg-footer);
    z-index: 1;
}
.vx-footer a { color: var(--vx-footer-text); }
.vx-footer a:hover { color: var(--vx-footer-text-hover); }

.vx-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.vx-footer-col h4 {
    color: var(--vx-text-inv);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    margin-bottom: 14px;
}
.vx-footer-col a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vx-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    gap: 28px;
}

.vx-admin-bar {
    background: var(--vx-text);
    color: var(--vx-text-inv);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vx-admin-bar a { color: var(--vx-text-inv); font-weight: 700; opacity: .8; }
.vx-admin-bar a:hover { opacity: 1; }

.vx-deco {
    position: fixed;
    top: 50px;
    width: 100%;
    max-width: 475px;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    animation: vxDecoFadeIn 2.2s ease forwards;
    opacity: .95 !important;
}

.vx-deco-left  { right: calc(50% + 525px); }
.vx-deco-right { left:  calc(50% + 525px); }

.vx-deco-center {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
.vx-deco-inner { position: absolute; inset: 0; }
.vx-deco-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease;
    opacity: 0;
}
.vx-deco-inner img.vx-deco-visible { opacity: 1; }

@media (max-width: 1513px) {
    .vx-deco-left,
    .vx-deco-right { display: none; }
}

@keyframes vxDecoFadeIn {
    from { opacity: 0; }
    to   { opacity: .35; }
}

.vx-back-to-top {
    position: fixed;
    bottom: 0px;
    right: 50%;
    width: 46px;
    height: 46px;
    border-radius: var(--vx-radius);
    border: 1px solid var(--vx-text);
    background: var(--vx-text);
    color: var(--vx-text-inv);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--vx-shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, background .15s ease, visibility .25s ease;
    z-index: 300;
}
.vx-back-to-top.vx-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.vx-back-to-top:hover {
    background: var(--vx-bg-card);
    color: var(--vx-text);
}
.vx-back-to-top svg { width: 22px; height: 22px; }

@media (prefers-reduced-motion: reduce) {
    .vx-back-to-top,
    .vx-back-to-top.vx-visible,
    .vx-back-to-top:hover {
        transition: opacity .15s ease, visibility .15s ease;
        transform: none;
    }
}

.vx-header-top-handle { display: none; }

@media (max-width: 1024px) {
    .vx-header-inner { grid-template-columns: auto 1fr auto; }
    .vx-header-nav { justify-self: end; }
}

@media (max-width: 768px) {
    :root {
        --vx-pad-x: 16px;
        --vx-gap: 18px;
    }

    .vx-header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        height: 60px;
    }
    .vx-logo { font-size: 16px; }

    

    .vx-header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        max-width: 88vw;
        background: var(--vx-bg-card);
        border-left: 1px solid var(--vx-border);
        box-shadow: -8px 0 32px rgba(0, 0, 0, .2);
        z-index: 9999;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 20px 0 24px;
        overflow-y: auto;
        gap: 0;
        transform: translateX(100%);
        transition: transform .28s cubic-bezier(.4, 0, .2, 1);

}
    .vx-header-nav.vx-mobile-open { transform: translateX(0); }

    .vx-mobile-nav-logo {
        display: block;
        left: 24px;
        width: 100% !important;
        height: auto;
    }

    .vx-header-nav a,
    .vx-front-nav-link {
        display: block;
        width: 100%;
        padding: 18px 28px;
        font-size: 14px;
        font-weight: 700;
        color: var(--vx-text);
        border-bottom: 1px solid var(--vx-border);
    }
    .vx-header-nav a::after,
    .vx-front-nav-link::after { display: none; }
    .vx-header-nav a:hover,
    .vx-front-nav-link:hover {
        background: var(--vx-bg-hover);
        color: var(--vx-text);
    }

    .vx-mobile-toggle { display: flex; }

    #vxMobileOverlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 2;
        display: none;
        opacity: 0;
        transition: opacity .25s;
    }
    #vxMobileOverlay.vx-mobile-overlay-open { display: block; opacity: 1; }

    body.vx-no-scroll { overflow: hidden; }

    .vx-footer-bottom {
        gap: 14px;
        font-size: 10px;
    }

    .vx-back-to-top {
        bottom: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
    }
    .vx-back-to-top svg { width: 20px; height: 20px; }
}

@media (min-width: 769px) {
    .vx-header-nav {
        display: flex !important;
        position: static !important;
        transform: none !important;
        flex-direction: row !important;
        width: auto !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: auto !important;
    }
    #vxMobileOverlay { display: none !important; }
    body.vx-no-scroll { overflow: auto !important; }
}

@media (max-width: 480px) {
    .vx-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 468px) {
    .vx-header-top {
        position: relative;
        padding: 0;
        min-height: 0;
        background: var(--vx-text);
        border: 0;
    }

    .vx-header-top-panel {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height .32s ease, opacity .25s ease, transform .25s ease, padding .25s ease;
        padding-top: 0;
        padding-bottom: 0;
        flex-direction: column;
    }

    .vx-header-top.is-open .vx-header-top-panel {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .vx-header-top.is-open .vx-header-top-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .vx-header-top-handle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        width: 56px;
        height: 18px;
        padding: 0; margin: 0;
        background: var(--vx-text);
        border: 1px solid var(--vx-border);
        border-top: 0;
        border-radius: 0 0 6px 6px;
        cursor: pointer;
        z-index: 105;
        transition: background .2s ease;
    }
    .vx-header-top-handle:hover,
    .vx-header-top-handle:focus-visible { background: var(--vx-text-2); outline: none; }

    .vx-header-top-handle-bar {
        display: block;
        width: 28px;
        height: 2px;
        border-radius: 0;
        background: var(--vx-text-inv);
    }

    .vx-header-top.is-open .vx-header-top-handle {
        top: auto;
        bottom: -18px;
    }

    body.vx-no-scroll .vx-header-top-handle {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
.vx-wishlist-count[data-empty="true"] { display: none; }
.vx-btn-wishlist { position: relative; }
.vx-wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    background: var(--vx-danger);
    color: var(--vx-text-inv);
}
.vx-wishlist-count[data-empty="true"] { display: none; }

.vx-btn-cart { position: relative; }
.vx-cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 17px; height: 17px; padding: 0 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 600; line-height: 1;
    border-radius: 999px;
    background: var(--vx-danger); color: var(--vx-text-inv);
}
.vx-cart-count[data-empty="true"] { display: none; }
.vx-cart-menu { padding: 0; }

::-webkit-scrollbar { width: 0px; height: 0px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--vx-border); }

.vx-front-has-children {
    position: relative;
}

.vx-front-caret {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform .2s ease;
}
.vx-front-has-children:hover .vx-front-caret {
    transform: rotate(180deg);
}

.vx-front-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    box-shadow: var(--vx-shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 200;
}
.vx-front-dropdown:hover .vx-front-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vx-front-submenu-item {
    display: block;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vx-text);
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    white-space: nowrap;
    transition: background .12s ease, color .12s ease;
}
.vx-front-submenu-item:hover {
    background: var(--vx-bg-hover);
    color: var(--vx-text);
}

.vx-front-mega {
    position: relative; 
}
.vx-front-mega-panel {
    position: absolute;
    left: 0;
    top: 100%;
    width: 640px;
    max-width: 90vw;
    display: grid;
    gap: 2px;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    box-shadow: var(--vx-shadow-lg);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 200;
}
.vx-front-mega:hover .vx-front-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vx-front-mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vx-text);
    text-transform: uppercase;
    letter-spacing: var(--vx-track-wide);
    border: 1px solid transparent;
    transition: background .12s ease, border-color .12s ease;
}
.vx-front-mega-item:hover {
    background: var(--vx-bg-hover);
    border-color: var(--vx-border);
    color: var(--vx-text);
}
.vx-front-mega-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--vx-bg-input);
    flex-shrink: 0;
}
.vx-front-mega-icon svg { width: 18px; height: 18px; }

.vx-header-top,
.vx-header {
    overflow: visible;
}
.vx-front-mega-panel,
.vx-front-submenu {
    z-index: 500;
}

.vx-header-top .vx-front-submenu,
.vx-header-top .vx-front-mega-panel {
    background: var(--vx-bg-card);
    border-color: var(--vx-border);
}
.vx-header-top .vx-front-submenu-item,
.vx-header-top .vx-front-mega-item {
    color: var(--vx-text); 
}

@media (max-width: 768px) {
    .vx-front-submenu,
    .vx-front-mega-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--vx-border);
        margin-left: 16px;
        padding: 4px 0;
        min-width: 0;
        grid-template-columns: 1fr !important;
    }
    .vx-front-caret { display: none; }
    .vx-front-mega-icon { display: none; }
}
