body.vsmm-active #masthead > .top,
body.vsmm-active #masthead > .bottom,
body.vsmm-active #masthead .mobile-menu {
    display: none !important;
}

body.vsmm-active #masthead {
    position: relative;
    top: auto;
}

.vsmm {
    --vsmm-green: #8cd652;
    --vsmm-text: #070707;
    --vsmm-muted: #737373;
    --vsmm-line: #ececec;
    --vsmm-panel: #ffffff;
    --vsmm-soft: #f6f6f6;
    --vsmm-header-h: 64px;
    --vsmm-premium-h: 48px;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--vsmm-text);
    position: relative;
    z-index: 2147483000;
}

.vsmm * {
    box-sizing: border-box;
}

.vsmm-header {
    position: sticky;
    top: 0;
    z-index: 2147483020;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--vsmm-line);
    box-shadow: none;
}

body.admin-bar .vsmm-header {
    top: 32px;
}

.vsmm-header__inner {
    width: min(100%, 1920px);
    height: var(--vsmm-header-h);
    min-height: var(--vsmm-header-h);
    margin: 0 auto;
    padding: 0 52px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 20px;
}

.vsmm-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.vsmm-logo img {
    display: block;
    width: auto;
    height: 40px;
}

.vsmm-mobile-links {
    display: none;
}

.vsmm-icon-button,
.vsmm-burger {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.vsmm-burger span {
    width: 22px;
    height: 2.4px;
    background: #050505;
    border-radius: 999px;
    display: block;
}

.vsmm-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
    min-width: 0;
}

.vsmm-nav__item {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--vsmm-text);
    text-decoration: none;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease;
}

.vsmm-nav__item:hover,
.vsmm-nav__item.is-open {
    background: var(--vsmm-soft);
    color: var(--vsmm-text);
}

.vsmm-nav__item--button {
    padding: 0 18px;
    background: var(--vsmm-soft);
}

.vsmm-nav__item--dark {
    background: #000;
    color: #fff;
    min-height: 56px;
}

.vsmm-nav__item--dark:hover {
    background: #171717;
    color: #fff;
}

.vsmm-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.16s ease;
}

.vsmm-nav__item.is-open .vsmm-chevron {
    transform: rotate(225deg) translateY(-1px);
}

.vsmm-mega-backdrop,
.vsmm-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.vsmm-mega-backdrop {
    z-index: 2147482990;
}

.vsmm-mega-backdrop.is-open,
.vsmm-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.vsmm-mega {
    position: fixed;
    top: calc(var(--vsmm-header-h) + var(--vsmm-premium-h));
    left: 0;
    right: 0;
    z-index: 2147483010;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

body.admin-bar .vsmm-mega {
    top: calc(var(--vsmm-header-h) + var(--vsmm-premium-h) + 32px);
}

.vsmm-mega.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vsmm-premium-bar {
    width: 100%;
    min-height: 48px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 58px);
    padding: 0 24px;
}

.vsmm-premium-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.vsmm-premium-bar a:hover {
    color: var(--vsmm-green);
}

.vsmm-mega__inner {
    width: min(100%, 1920px);
    margin: 0 auto;
    min-height: 358px;
    background: var(--vsmm-panel);
    border-bottom: 1px solid var(--vsmm-line);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 390px;
    grid-template-rows: minmax(292px, auto) 64px;
}

.vsmm-mega__tabs {
    background: #f7f7f7;
    border-right: 1px solid var(--vsmm-line);
}

.vsmm-mega__tab {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ededed;
    border-left: 4px solid transparent;
    background: transparent;
    color: var(--vsmm-text);
    min-height: 72px;
    padding: 0 20px 0 34px;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-align: left;
}

.vsmm-mega__tab:hover,
.vsmm-mega__tab.is-active {
    background: #fff;
}

.vsmm-mega__tab.is-active {
    border-left-color: var(--vsmm-green);
}

.vsmm-mega__tab-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
}

.vsmm-mega__tab.is-active .vsmm-mega__tab-icon {
    color: var(--vsmm-green);
}

.vsmm-mega__tab-icon i {
    display: block;
    width: 18px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

.vsmm-drawer__item > span[aria-hidden="true"] {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.vsmm-mega__content-wrap {
    padding: 24px 28px;
    min-width: 0;
    border-right: 1px solid var(--vsmm-line);
}

.vsmm-mega__content {
    display: none;
}

.vsmm-mega__content.is-active {
    display: block;
}

.vsmm-mega__heading {
    margin-bottom: 14px;
}

.vsmm-mega__heading-link {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8a8a8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
}

.vsmm-mega__heading-link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.vsmm-mega__heading-link:hover,
.vsmm-mega__heading-link:focus {
    color: #4fa82e;
    text-decoration: none;
}

.vsmm-mega__links {
    border-top: 1px solid var(--vsmm-line);
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 2px;
}

.vsmm-mega-link {
    color: var(--vsmm-text);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 34px;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.vsmm-mega-link__title {
    display: block;
}

.vsmm-mega-link__subtext {
    display: block;
    margin-top: 4px;
    color: #8f949c;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
}

.vsmm-mega-link:hover {
    background: #f5f5f5;
    color: #4fa82e;
}

.vsmm-mega-link:hover .vsmm-mega-link__subtext {
    color: #8f949c;
}

.vsmm-mega-link.is-child {
    color: #555;
}

.vsmm-promo-wrap {
    min-width: 0;
    background: #fbfbfb;
}

.vsmm-promo {
    padding: 16px;
    background: #fbfbfb;
    display: none;
    gap: 10px;
    align-content: start;
}

.vsmm-promo.is-active {
    display: grid;
}

.vsmm-promo__label {
    margin: 0 0 2px;
    color: #b5b5b5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vsmm-offer {
    min-height: 104px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "brand button"
        "text button";
    align-items: center;
    column-gap: 18px;
}

.vsmm-offer.is-blue {
    background: #2d3b9f;
}

.vsmm-offer.is-green {
    background: #2b8734;
}

.vsmm-offer__brand {
    grid-area: brand;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.vsmm-offer__text {
    grid-area: text;
    margin-top: 10px;
    max-width: 260px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.vsmm-offer__button {
    grid-area: button;
    min-width: 86px;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 6px;
    background: #fff;
    color: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.vsmm-offer-embed,
.vsmm-offer-image {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.vsmm-offer-embed {
    position: relative;
    aspect-ratio: var(--vsmm-offer-ratio, 2 / 1);
}

.vsmm-offer-image {
    text-decoration: none;
}

.vsmm-offer-embed iframe {
    display: block;
    position: absolute;
    inset: 0 auto auto 0;
    width: var(--vsmm-frame-width, 320px);
    height: var(--vsmm-frame-height, 160px);
    max-width: none;
    border: 0;
    transform-origin: left top;
}

.vsmm-offer-image img {
    display: block;
    width: 100%;
    height: auto;
}

.vsmm-app-band {
    grid-column: 1 / -1;
    border-top: 1px solid var(--vsmm-line);
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 24px;
}

.vsmm-app-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.vsmm-app-band__icon {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex: 0 0 auto;
}

.vsmm-app-band__icon img {
    display: block;
    max-width: 28px;
    max-height: 24px;
    width: auto;
    height: auto;
}

.vsmm-app-band__intro strong,
.vsmm-app-band__intro small {
    display: block;
}

.vsmm-app-band__intro strong {
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
}

.vsmm-app-band__intro small {
    margin-top: 4px;
    color: #5f6673;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
}

.vsmm-app-band__buttons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.vsmm-store-button {
    height: 36px;
    min-width: 110px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
}

.vsmm-store-button__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    position: relative;
}

.vsmm-store-button.is-apple .vsmm-store-button__icon::before {
    content: "";
    position: absolute;
    inset: 3px 5px 2px;
    background: #fff;
    border-radius: 42% 42% 48% 48%;
}

.vsmm-store-button.is-apple .vsmm-store-button__icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 8px;
    right: 4px;
    top: 1px;
    border-radius: 10px 0 10px 0;
    background: #fff;
    transform: rotate(-24deg);
}

.vsmm-store-button.is-google .vsmm-store-button__icon::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #4285f4 0 34%, #34a853 34% 55%, #fbbc04 55% 75%, #ea4335 75%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.vsmm-store-button small,
.vsmm-store-button strong {
    display: block;
    color: #fff;
}

.vsmm-store-button small {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
    opacity: 0.84;
    text-transform: none;
}

.vsmm-store-button strong {
    font-size: 13px;
    line-height: 1.05;
    font-weight: 900;
}

.vsmm-drawer-backdrop {
    z-index: 2147483030;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}

.vsmm-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 2147483040;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

body.admin-bar .vsmm-drawer {
    top: 32px;
}

.vsmm-drawer.is-open {
    transform: translateX(0);
}

.vsmm-drawer__header {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 1px solid var(--vsmm-line);
    flex: 0 0 auto;
}

.vsmm-drawer__header-row {
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vsmm-drawer__spacer {
    flex: 1 1 auto;
}

.vsmm-drawer__title {
    display: block;
    padding: 4px 20px 14px;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.vsmm-drawer__close,
.vsmm-drawer__back {
    width: auto;
    height: 34px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    position: relative;
    font: inherit;
    transition: background 0.15s ease, color 0.15s ease;
}

.vsmm-drawer__close:hover,
.vsmm-drawer__back:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.vsmm-drawer__close {
    width: 34px;
    color: #999;
}

.vsmm-drawer__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
}

.vsmm-drawer__back.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.vsmm-drawer__close::before,
.vsmm-drawer__close::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 16px;
    height: 2px;
    background: currentColor;
}

.vsmm-drawer__close::before {
    transform: rotate(45deg);
}

.vsmm-drawer__close::after {
    transform: rotate(-45deg);
}

.vsmm-drawer__back span {
    width: 12px;
    height: 12px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.vsmm-drawer__panels {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.vsmm-drawer__panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 6px 0;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.26s ease;
}

.vsmm-drawer__panel.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.vsmm-drawer__panel.is-left {
    transform: translateX(-30%);
    opacity: 0;
    pointer-events: none;
}

.vsmm-drawer__section {
    margin: 0;
    padding: 14px 20px 6px;
    color: #aaa;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vsmm-drawer__section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.vsmm-drawer__section-link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.vsmm-drawer__section-link:hover,
.vsmm-drawer__section-link:focus {
    color: #4fa82e;
    text-decoration: none;
}

.vsmm-drawer__item {
    width: 100%;
    min-height: auto;
    border: 0;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 20px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: background 0.1s ease;
}

.vsmm-drawer__item:hover {
    background: #f7f7f7;
}

.vsmm .vsmm-drawer__item:hover,
.vsmm .vsmm-drawer__child-item:hover {
    color: var(--vsmm-green) !important;
}

.vsmm .vsmm-drawer__item:hover .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__child-item:hover .vsmm-drawer__item-subtext {
    color: #8f949c !important;
}

.vsmm-drawer__item:visited,
.vsmm-drawer__child-item:visited {
    color: #1a1a1a;
}

.vsmm-drawer__item-label {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.vsmm-drawer__item-title {
    display: block;
    color: inherit;
}

.vsmm-drawer__item-subtext {
    display: block;
    color: #8f949c;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
}

.vsmm-drawer__item.is-cta {
    width: calc(100% - 28px);
    margin: 8px 14px;
    padding: 14px 20px;
    justify-content: center;
    border-radius: 10px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
}

.vsmm-drawer__item.is-cta:hover {
    background: #333;
}

.vsmm-drawer__item.is-muted {
    color: #777;
    font-weight: 500;
}

.vsmm-drawer__item.is-cta .vsmm-drawer__item-label,
.vsmm-drawer__item.is-muted .vsmm-drawer__item-label {
    align-items: center;
}

.vsmm-drawer__divider {
    height: 1px;
    background: #eee;
    margin: 6px 16px;
}

.vsmm-drawer__child-item {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid #f5f5f5;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    transition: background 0.1s ease;
}

.vsmm-drawer__child-item:last-child {
    border-bottom: 0;
}

.vsmm-drawer__child-item:hover {
    background: #f7f7f7;
}

.vsmm .vsmm-drawer__item:focus,
.vsmm .vsmm-drawer__item:focus-visible,
.vsmm .vsmm-drawer__item:active,
.vsmm .vsmm-drawer__child-item:focus,
.vsmm .vsmm-drawer__child-item:focus-visible,
.vsmm .vsmm-drawer__child-item:active {
    color: var(--vsmm-green) !important;
    outline: none;
    -webkit-tap-highlight-color: rgba(140, 214, 82, 0.22);
}

.vsmm .vsmm-drawer__item:focus .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__item:focus-visible .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__item:active .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__child-item:focus .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__child-item:focus-visible .vsmm-drawer__item-subtext,
.vsmm .vsmm-drawer__child-item:active .vsmm-drawer__item-subtext {
    color: #8f949c !important;
}

@media (max-width: 1280px) {
    .vsmm-header__inner {
        padding: 0 24px;
        gap: 18px;
    }

    .vsmm-nav {
        gap: 6px;
    }

    .vsmm-nav__item {
        padding: 0 12px;
        font-size: 12px;
    }

    .vsmm-mega__inner {
        grid-template-columns: 270px minmax(0, 1fr) 320px;
        grid-template-rows: minmax(320px, auto) 74px;
    }
}

@media (min-width: 1025px) and (max-width: 1500px) {
    .vsmm-header__inner {
        padding: 0 14px;
        gap: 12px;
    }

    .vsmm-logo img {
        height: 46px;
    }

    .vsmm-nav {
        gap: 2px;
    }

    .vsmm-nav__item {
        min-height: 44px;
        padding: 0 8px;
        font-size: 11px;
    }

    .vsmm-nav__item--button {
        padding: 0 14px;
    }

    .vsmm-nav__item--dark {
        min-height: 50px;
    }
}

@media (max-width: 1024px) {
    .vsmm {
        --vsmm-header-h: 76px;
        --vsmm-premium-h: 0px;
    }

    .vsmm-header__inner {
        min-height: var(--vsmm-header-h);
        display: flex;
        justify-content: flex-start;
        gap: clamp(12px, 3vw, 28px);
        padding: 0 clamp(18px, 4vw, 32px);
    }

    .vsmm-logo {
        order: 1;
        justify-content: flex-start;
    }

    .vsmm-logo img {
        height: 46px;
    }

    .vsmm-mobile-links {
        order: 2;
        display: flex;
        align-items: center;
        gap: clamp(14px, 3vw, 24px);
        flex: 1 1 auto;
        min-width: 0;
    }

    .vsmm-mobile-link {
        color: var(--vsmm-text);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }

    .vsmm-mobile-link.is-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 18px;
        border-radius: 999px;
        background: #171717;
        color: var(--vsmm-green);
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        margin-left: auto;
    }

    .vsmm-burger {
        order: 4;
        margin-left: 8px;
    }

    .vsmm-nav {
        display: none;
    }

    .vsmm-premium-bar {
        display: none;
    }

    .vsmm-mega,
    .vsmm-mega-backdrop {
        display: none;
    }
}

@media (max-width: 560px) {
    .vsmm {
        --vsmm-header-h: 70px;
    }

    .vsmm-header__inner {
        gap: 10px;
        padding: 0 14px;
    }

    .vsmm-logo img {
        height: 34px;
    }

    .vsmm-mobile-links {
        gap: 10px;
    }

    .vsmm-mobile-link {
        font-size: 11px;
    }

    .vsmm-mobile-link.is-cta {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    .vsmm-burger {
        width: 36px;
        height: 36px;
        gap: 4px;
        margin-left: 2px;
    }

    .vsmm-burger span {
        width: 22px;
        height: 2.4px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .vsmm-header {
        top: 46px;
    }

    body.admin-bar .vsmm-drawer {
        top: 46px;
    }
}
