:root {
    --nav-mint: #00AEA9;
    --nav-red: #F84C5A;
    --nav-blue: #0066CC;
    --nav-height: 68px;
    --nav-max-width: 1120px;
}

body {
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

body.nav-is-open {
    overflow: hidden;
}

.site-header,
.site-header *,
.nav-drawer,
.nav-drawer * {
    box-sizing: border-box;
}

.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--nav-height);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.site-header__bar {
    background: var(--nav-blue);
    height: 3px;
    width: 100%;
}

.site-header__inner {
    align-items: center;
    display: flex;
    height: calc(var(--nav-height) - 3px);
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--nav-max-width);
    padding: 0 16px;
    width: 100%;
}

.site-header__brand {
    align-items: center;
    display: flex;
}

.site-header__logo-link {
    align-items: center;
    display: flex;
    line-height: 0;
}

.site-header__logo {
    display: block;
    height: 46px;
    max-width: 174px;
    object-fit: contain;
    width: auto;
}

.site-header__desktop {
    align-items: center;
    display: none;
    gap: 30px;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 24px;
}

.site-nav__link,
.nav-drawer__link,
.nav-drawer__terms {
    color: black;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__link {
    font-size: 14px;
    line-height: 1.2;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-nav__link:hover {
    color: #C2185B;
}

.site-header__cta {
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 141, 50, 0.3);
    color: #FFFFFF;
    display: inline-flex;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 1.2;
    padding: 9px 18px 9px 35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, #A4D83A 0%, #5D9A32 100%);
    position: relative;
}

.site-header__cta:hover {
    box-shadow: 0 6px 20px rgba(0, 141, 50, 0.4);
    transform: translateY(-2px);
}

.site-header__cta-icon {
    /* flex: 0 0 auto; */
    /* object-fit: contain; */
    /* width: 30px; */
    position: absolute;
    left: -20px;
    max-width: 50px;
}

.site-header__menu-button {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    padding: 10px;
}

.site-header__menu-line {
    background: black;
    border-radius: 2px;
    display: block;
    height: 3px;
    width: 25px;
}

.nav-drawer {
    background: rgba(0, 0, 0, 0.5);
    height: 100dvh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 2000;
}

.nav-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer__panel {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    overflow-y: auto;
    padding: 18px;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: min(86vw, 360px);
}

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

.nav-drawer__header {
    align-items: flex-start;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-bottom: 20px;
}

.nav-drawer__close {
    align-items: center;
    background: transparent;
    border: 0;
    color: black;
    cursor: pointer;
    display: inline-flex;
    font-size: 34px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 38px;
}

.nav-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 34px;
}

.nav-drawer__link {
    font-size: 18px;
    line-height: 1.2;
    padding: 8px 0;
}

.nav-drawer__link:hover {
    color: #C2185B;
}

.nav-drawer__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    width: 100%;
}

.site-header__cta--drawer {
    max-width: 100%;
    min-height: 44px;
    padding-right: 18px;
}

.nav-drawer__legal {
    margin-top: auto;
    padding-top: 28px;
    text-align: center;
}

.nav-drawer__promo {
    margin-bottom: 24px;
}

.nav-drawer__promo p {
    color: var(--nav-mint);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
}

.nav-drawer__terms {
    color: var(--nav-mint);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    :root {
        --nav-height: 80px;
    }

    .site-header__inner {
        padding: 0 24px;
    }

    .site-header__logo {
        height: 54px;
        max-width: 220px;
    }

    .site-header__desktop {
        display: flex;
    }

    .site-header__menu-button {
        display: none;
    }

    .site-nav {
        gap: 32px;
    }

    .site-header__cta {
        font-size: 13px;
        padding: 15px 22px 15px 35px;
    }
}
