:root {
    --brand: #7a1430;
    --border: rgba(0, 0, 0, .08);
    --topbar-h: 118px;
}

.topbar,
.topbar *,
.topbar *::before,
.topbar *::after {
    box-sizing: border-box;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--topbar-h);
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.topbar .container {
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.logo-mono {
    width: 110px;
    height: 110px;
    background: var(--brand);
    display: block;
    flex-shrink: 0;
    -webkit-mask: url('/images/logo_AL.png') center/contain no-repeat;
    mask: url('/images/logo_AL.png') center/contain no-repeat;
}

.brand .brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(16px, 1.3vw + 14px, 26px);
    letter-spacing: .2px;
    color: #7a1430;
    white-space: nowrap;
    line-height: 1;
}

nav.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    position: relative;
    min-width: 0;
}

.lang {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lang img {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    display: block;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.topbar-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-action {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.topbar-action:hover,
.topbar-action.active {
    background: rgba(122, 20, 48, 0.06);
    color: var(--brand);
}

.topbar-action i {
    font-size: 18px;
}

.topbar-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #7a1430;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}

.burger span,
.burger span::before,
.burger span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    position: relative;
    transition: .2s;
}

.burger span::before {
    position: absolute;
    top: -7px;
    left: 0;
}

.burger span::after {
    position: absolute;
    top: 7px;
    left: 0;
}

.nav-toggle:checked+.burger span,
.nav-toggle:checked+label.burger span {
    background: transparent;
}

.nav-toggle:checked+.burger span::before,
.nav-toggle:checked+label.burger span::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked+.burger span::after,
.nav-toggle:checked+label.burger span::after {
    transform: translateY(-7px) rotate(-45deg);
}

.menu {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu>li {
    position: relative;
}

.menu>li>a,
.menu-submenu-toggle {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1.2;
}

.menu>li>a.active,
.menu-submenu-toggle.active {
    color: var(--brand);
}

.menu-icon-link {
    width: 30px;
    justify-content: center;
}

.menu-icon-link i {
    font-size: 18px;
}

.menu-has-submenu .menu-submenu-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
    margin-left: 2px;
}

.menu-has-submenu.open .menu-submenu-toggle::after {
    transform: rotate(-135deg) translateY(-1px);
}

.menu-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    margin-top: 8px;
    padding: 8px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .18s ease;
    z-index: 80;
}

.menu-has-submenu.open>.menu-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-submenu a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    text-decoration: none;
}

.menu-submenu a:hover,
.menu-submenu a.active {
    color: var(--brand);
    background: rgba(122, 20, 48, 0.04);
}

.has-dropdown {
    position: relative;
    z-index: 999;
}

.topbar-user {
    margin-left: 2px;
}

.has-dropdown>a.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .15);
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}

.has-dropdown>a.dropdown-toggle::before,
.has-dropdown>a.dropdown-toggle::after {
    content: "";
    position: absolute;
    background: #7a1430;
}

.has-dropdown>a.dropdown-toggle::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.has-dropdown>a.dropdown-toggle::after {
    width: 16px;
    height: 10px;
    border-radius: 8px 8px 4px 4px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.has-dropdown>a.dropdown-toggle:hover {
    background: rgba(122, 20, 48, 0.06);
    border-color: rgba(122, 20, 48, 0.25);
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 210px;
    margin-top: 8px;
    padding: 8px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .18s ease;
    z-index: 80;
}

.has-dropdown .dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    text-decoration: none;
}

.has-dropdown .dropdown a:hover {
    color: var(--brand);
    background: rgba(122, 20, 48, 0.04);
}

.has-dropdown.open>.dropdown,
.has-dropdown:focus-within>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.listino-mobile-only {
    display: none;
}

.listino-desktop-only {
    display: list-item;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    border: 0 !important;
}

#xmas-snow {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: .9;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cookie-consent.is-visible {
    display: flex;
}

.cookie-consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.cookie-consent__box {
    position: relative;
    max-width: 480px;
    width: 94%;
    background: #fff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    z-index: 1;
}

#cookie-consent-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.cookie-consent__text {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.cookie-consent__link {
    display: inline-block;
    font-size: 13px;
    margin-bottom: 12px;
    color: #7a1430;
    text-decoration: underline;
}

.cookie-consent__link:hover {
    color: #9a1b3e;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn--primary {
    background: #7a1430;
    color: #fff;
}

.cookie-btn--primary:hover {
    filter: brightness(1.05);
}

.cookie-btn--secondary {
    background: #f3f4f6;
    color: #111;
}

.cookie-btn--secondary:hover {
    background: #e5e7eb;
}

/* =========================================================
   SUPPORT / CHAT GLOBAL
   ========================================================= */
#sharedSupportRoot {
    position: relative;
    z-index: 99940;
}

body.is-admin-support #sharedSupportRoot {
    display: none;
}

body.is-admin-support.has-admin-chat-open #sharedSupportRoot {
    display: block;
}

body.is-admin-support #sharedSupportRoot [data-support-launcher],
body.is-admin-support #sharedSupportRoot .support-launcher,
body.is-admin-support #sharedSupportRoot .support-widget-toggle,
body.is-admin-support #sharedSupportRoot .chat-launcher,
body.is-admin-support #sharedSupportRoot .widget-launcher,
body.is-admin-support #sharedSupportRoot .support-bubble,
body.is-admin-support #sharedSupportRoot #supportWidgetToggle,
body.is-admin-support #sharedSupportRoot #supportChatToggle {
    display: none !important;
}

.launcher-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 2;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff2b2b;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.is-bounce {
    animation: launcherBounce 1.25s infinite;
}

@keyframes launcherBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* =========================================================
   ADMIN CHAT DOCK GLOBAL
   ========================================================= */
.admin-chat-dock-toggle {
    position: fixed;
    left: 18px;
    bottom: 24px;
    z-index: 99931;
    height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    overflow: visible;
}

.admin-chat-dock-toggle:hover {
    filter: brightness(1.04);
}

.admin-chat-dock-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-chat-list-dock {
    position: fixed;
    top: 110px;
    left: 18px;
    bottom: 18px;
    z-index: 99930;
    width: 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(calc(-100% - 28px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.admin-chat-list-dock.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-chat-list-head {
    padding: 14px 16px 10px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.admin-chat-list-head-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.admin-chat-list-head-sub {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.92;
}

.admin-chat-list-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.admin-chat-list-search {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.admin-chat-list-search input {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 14px;
    outline: none;
}

.admin-chat-list-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: #fff;
}

.admin-chat-row {
    width: 100%;
    padding: 14px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    cursor: pointer;
}

.admin-chat-row:hover {
    background: #faf6f7;
}

.admin-chat-row.is-active {
    background: #f8e9ee;
    box-shadow: inset 4px 0 0 var(--brand);
}

.admin-chat-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.admin-chat-main {
    flex: 1;
    min-width: 0;
}

.admin-chat-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.admin-chat-name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: #202020;
}

.admin-chat-date {
    white-space: nowrap;
    font-size: 11px;
    color: #6b7280;
}

.admin-chat-snippet {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    color: #4b5563;
}

.admin-chat-unread {
    width: 22px;
    height: 22px;
    min-width: 22px;
    align-self: center;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-chat-empty {
    padding: 18px 16px;
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 960px) {
    :root {
        --topbar-h: 84px;
    }

    .topbar {
        height: var(--topbar-h);
    }

    .topbar .container {
        width: 100%;
        max-width: none;
    }

    .topbar-inner {
        height: var(--topbar-h);
        padding: 0 16px;
        gap: 12px;
    }

    .logo-mono {
        width: 56px;
        height: 56px;
    }

    .brand .brand-name {
        display: none;
    }

    .topbar-left {
        gap: 10px;
        min-width: 0;
    }

    nav.nav {
        gap: 12px;
        justify-content: flex-end;
        position: static;
    }

    .burger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: var(--topbar-h);
        left: 0;
        right: 0;
        width: 100vw;
        max-width: none;
        margin: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px 20px 28px;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        z-index: 100;
    }

    .nav-toggle:checked~.menu {
        display: flex;
    }

    .menu>li>a,
    .menu-submenu-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0;
        font-size: 15px;
    }

    .menu-icon-link {
        width: 100%;
        justify-content: flex-start;
    }

    .listino-desktop-only {
        display: none !important;
    }

    .listino-mobile-only {
        display: list-item;
    }

    .menu-submenu {
        display: none !important;
    }

    .has-dropdown .dropdown {
        right: 0;
        min-width: 210px;
    }
}

@media (max-width: 767px) {
    #vpa-support-panel {
        left: 10px !important;
        right: 10px !important;
        top: 70px !important;
        bottom: 10px !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
    }

    #vpa-support-toggle {
        right: 16px !important;
        bottom: 96px !important;
    }

    .launcher-badge {
        top: -4px;
        right: -4px;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        padding: 0 12px;
        gap: 10px;
    }

    .topbar-left {
        gap: 8px;
    }

    .lang {
        gap: 8px;
    }

    .lang img {
        width: 24px;
        height: 24px;
    }

    .topbar-actions {
        gap: 10px;
    }

    .topbar-icons {
        gap: 6px;
    }

    .topbar-action {
        width: 32px;
        height: 32px;
    }

    .topbar-action i {
        font-size: 17px;
    }

    .has-dropdown>a.dropdown-toggle {
        width: 30px;
        height: 30px;
    }

    .has-dropdown>a.dropdown-toggle::before {
        width: 9px;
        height: 9px;
        top: 5px;
    }

    .has-dropdown>a.dropdown-toggle::after {
        width: 14px;
        height: 9px;
        top: 15px;
    }

    .burger {
        width: 38px;
        height: 38px;
    }

    .burger span,
    .burger span::before,
    .burger span::after {
        width: 20px;
    }

    .topbar-badge {
        min-width: 17px;
        height: 17px;
        line-height: 17px;
        font-size: 10px;
    }

    .cookie-consent__buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ===== DESKTOP: menu a destra + omino separato ===== */
@media (min-width: 961px) {
    nav.nav {
        justify-content: flex-end;
    }

    .menu {
        order: 1;
    }

    .topbar-actions {
        order: 2;
        margin-left: 18px;
    }

    .topbar-user {
        margin-left: 10px;
        padding-left: 12px;
        border-left: 1px solid rgba(0, 0, 0, .10);
    }
}

/* =========================================================
   WIDGET PRIORITY
   ========================================================= */
#vpa-support-panel {
    z-index: 100000 !important;
}

#vpa-support-toggle {
    z-index: 99990 !important;
}

#botWidgetToggle,
.bot-widget-toggle,
.chat-launcher,
.widget-launcher {
    z-index: 99989 !important;
}

.topbar-notifications {
    position: relative;
}

.topbar-notification-toggle {
    cursor: pointer;
}

.topbar-notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border: 1px solid rgba(23, 33, 68, .12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(18, 26, 53, .16);
    overflow: hidden;
    z-index: 9999;
    display: none;
}

.topbar-notifications.is-open .topbar-notification-dropdown {
    display: block;
}

.topbar-notification-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #edf1f7;
    color: #172144;
}

.topbar-notification-head button {
    border: 0;
    background: transparent;
    color: #31467b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.topbar-notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.topbar-notification-item {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    border-bottom: 1px solid #edf1f7;
    background: #fff;
}

.topbar-notification-item:hover {
    background: #f7f9fd;
}

.topbar-notification-item.is-unread {
    background: #f1f5ff;
}

.topbar-notification-message {
    color: #172144;
    font-size: 13px;
    line-height: 1.35;
}

.topbar-notification-date {
    margin-top: 4px;
    color: #7b8190;
    font-size: 11px;
}

.topbar-notification-empty {
    padding: 16px;
    color: #7b8190;
    font-size: 13px;
    text-align: center;
}


/**********************\

/* =========================================================
   TOPBAR SHIELD - evita interferenze dai CSS pagina
   ========================================================= */
.topbar {
    flex: 0 0 auto;
}

.topbar .container {
    width: min(1360px, calc(100% - 32px)) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.topbar-inner {
    height: 100%;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 24px;
}

.topbar-left,
.topbar .brand,
.topbar .lang,
.topbar-actions,
.topbar-icons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.topbar .brand {
    gap: 14px;
    min-width: 0;
}

.topbar .lang {
    gap: 10px;
    flex-shrink: 0;
}

.topbar-actions {
    gap: 12px;
    flex-shrink: 0;
}

.topbar-icons {
    gap: 8px;
}

.topbar nav.nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.topbar .menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 22px;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    position: static !important;
}

.topbar .menu>li {
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0 !important;
}

.topbar .menu>li>a,
.topbar .menu-submenu-toggle {
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

@media (max-width: 960px) {
    .topbar .container {
        width: 100% !important;
        padding: 0 !important;
    }

    .topbar-inner {
        height: var(--topbar-h);
        padding: 0 16px;
        gap: 12px;
    }

    .topbar nav.nav {
        gap: 12px;
        position: static;
    }

    .topbar .menu {
        position: fixed !important;
        top: var(--topbar-h) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: none !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
        padding: 18px 20px 28px !important;
        background: #fff !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08) !important;
        z-index: 100 !important;
    }

    .topbar .nav-toggle:checked~.menu {
        display: flex !important;
    }

    .topbar .menu>li>a,
    .topbar .menu-submenu-toggle {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 0 !important;
        font-size: 15px !important;
    }
}