.site-header.vc-header {
    background: #111111;
    color: var(--vc-text);
    position: relative;
    z-index: 1000;
}

.vc-header__top {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--vc-border);
}

.vc-header__socials {
    display: flex;
    gap: 22px;
    align-items: center;
}

.vc-header__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1;
    transition: color .25s ease;
}

.vc-header__socials svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.vc-header__socials svg path {
    fill: currentColor;
}

.vc-header__socials a:hover {
    color: var(--vc-green);
}

.vc-header__language {
    color: var(--vc-text);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-header__main {
    padding: 34px 0 0 0;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 34px;
}

.vc-header__logo {
    justify-self: start;
}

.vc-header__logo img {
    width: 386px;
}

.vc-header__nav ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    --vc-nav-underline-left: 0px;
    --vc-nav-underline-width: 0px;
}

/* sliding underline */
.vc-header__nav ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #2b2b2b;
    left: var(--vc-nav-underline-left, 0px);
    width: var(--vc-nav-underline-width, 0px);
    transition: left .25s ease, width .25s ease;
}

.vc-header__nav li {
    position: relative;
}

.vc-header__nav a {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 0 34px;
    color: var(--vc-text);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color .25s ease;
}

/* padding fix */
.vc-header__nav ul li:first-child > a {
    padding-inline-start: 0;
}

/* text hover + active */
.vc-header__nav .current-menu-item > a,
.vc-header__nav .current_page_item > a,
.vc-header__nav li:hover > a {
    color: var(--vc-green);
}

.vc-header__cta {
    justify-self: end;
    width: auto;
    white-space: nowrap;
    font-weight: 700;
}
.vc-header__cart {
    justify-self: end;
    position: relative;
    color: var(--vc-text);
    text-decoration: none;
    line-height: 0;
    padding: 8px;
}

.vc-header__cart-count {
    position: absolute;
    right: -3px;
    top: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #a3ff00;
    color: #071007;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vc-header__cart-count.is-empty {
    display: none;
}

.vc-header__mobile-toggle {
    display: none;
    width: 42px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.vc-header__mobile-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
    margin: 8px 0;
}

.vc-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
    z-index: 1190;
}

.vc-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 470px);
    background: #101210;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .24s ease;
    pointer-events: none;
    visibility: hidden;
    display: none;
    flex-direction: column;
}

body.vc-menu-open {
    overflow: hidden;
}

body.vc-menu-open .vc-mobile-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

body.vc-menu-open .vc-mobile-panel {
    display: flex;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.vc-mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
    padding: 0 26px;
    border-bottom: 1px solid rgba(163, 255, 0, .26);
}

.vc-mobile-panel__logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.vc-mobile-panel__logo img {
    width: 166px;
}

.vc-mobile-panel__language {
    margin-left: auto;
}

.vc-mobile-panel__close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.vc-mobile-panel > nav {
    padding: 34px 26px 0;
}

.vc-mobile-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-mobile-panel a {
    display: block;
    padding: 13px 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    border-top: 0;
}

.vc-mobile-panel .current-menu-item > a,
.vc-mobile-panel .current_page_item > a {
    background: rgba(163, 255, 0, .08);
    color: #a3ff00;
}

.vc-mobile-panel__actions {
    margin-top: 14px;
    padding: 0 26px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.vc-mobile-panel .vc-mobile-panel__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 50px;
    padding: 0 24px;
    color: #070707;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
    white-space: normal;
    border-top: 0;
    border-radius: 999px;
}

.vc-mobile-panel__socials {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: auto;
    padding-top: 40px;
}

.vc-mobile-panel__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    color: #ffffff;
    border: 0;
    background: transparent;
}

.vc-mobile-panel__socials svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.vc-mobile-panel__socials svg path {
    fill: currentColor;
}

.vc-mobile-panel__language .vc-lang-dropdown__toggle {
    font-size: 15px;
}

.vc-mobile-panel__language .vc-lang-dropdown__menu {
    right: 50%;
    transform: translate(50%, -6px);
}

.vc-mobile-panel__language .vc-lang-dropdown.is-open .vc-lang-dropdown__menu,
.vc-mobile-panel__language .vc-lang-dropdown:hover .vc-lang-dropdown__menu {
    transform: translate(50%, 0);
}

@media (max-width: 1024px) {
    .vc-header__top {
        display: none;
    }

    .vc-header__main {
        height: auto;
        min-height: 132px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--vc-border);
    }

    .vc-header__cta {
        display: none !important;
    }

    .vc-header__logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .vc-header__cart {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        padding: 5px;
    }

    .vc-header__cart .vc-icon svg {
        width: 18px;
        height: 18px;
    }

    .vc-header__cart-count {
        right: -5px;
        top: -6px;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        font-size: 10px;
    }

    .vc-header__mobile-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        width: 28px;
        height: 24px;
    }

    .vc-header__mobile-toggle span {
        height: 2px;
        margin: 5px 0;
    }

    .vc-header__nav,
    .vc-header__language {
        display: none;
    }
}

@media (max-width: 420px) {
    .vc-mobile-panel__head {
        min-height: 78px;
        padding-inline: 20px;
        gap: 12px;
    }

    .vc-mobile-panel__logo img {
        width: 138px;
    }

    .vc-mobile-panel > nav {
        padding: 28px 22px 0;
    }

    .vc-mobile-panel a {
        font-size: 18px;
        padding-block: 12px;
    }

    .vc-mobile-panel__actions {
        padding-inline: 22px;
    }

    .vc-mobile-panel .vc-mobile-panel__cta {
        width: min(100%, 280px);
        font-size: 17px;
        padding-inline: 20px;
    }

    .vc-mobile-panel__socials {
        gap: 22px;
    }
}
