.site-header-v2 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    color: #22223b;
    box-shadow: 0 8px 26px rgba(16, 43, 70, .08)
}

body {
    padding-top: 152px
}

.hdr-main {
    border-bottom: 1px solid #ecebef
}

.hdr-main-inner {
    width: min(1160px, calc(100% - 40px));
    height: 86px;
    margin: auto;
    display: grid;
    grid-template-columns: 220px minmax(260px, 440px) 1fr;
    align-items: center;
    gap: 36px
}

.hdr-brand-box {
    display: flex;
    align-items: center;
    align-self: center;
    min-height: 48px;
    gap: 9px
}

.hdr-brand-logo-img {
    display: block;
    width: 200px;
    height: auto;
    object-fit: contain
}

.hdr-brand-box>span {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.hdr-brand-box b {
    color: #ff5a2d;
    font-size: 21px;
    letter-spacing: -1px
}

.hdr-brand-box small {
    font-size: 16px;
    font-weight: 800
}

.hdr-search-pill {
    align-self: center;
    height: 43px;
    border: 1px solid #dcdbe1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 13px 0 18px
}

.hdr-search-pill input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px
}

.hdr-search-pill button {
    border: 0;
    background: transparent;
    padding: 4px;
    display: grid;
    place-items: center
}

.hdr-search-pill svg {
    width: 18px;
    height: 18px
}

.hdr-actions {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: flex-end;
    min-height: 48px;
    gap: 25px
}

.hdr-action-link {
    position: relative;
    border: 0;
    background: none;
    padding: 0;
    color: #22223b;
    display: flex;
    min-width: 64px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer
}

.hdr-action-link>span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    font-size: 18px;
    line-height: 1
}

.hdr-cart-icon {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.hdr-action-link small {
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap
}

.hdr-cart-badge {
    position: absolute;
    right: -5px;
    top: -8px;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ff5a2d;
    color: #fff;
    font-size: 8px;
    justify-content:center;
    align-items: center;
}

.hdr-nav-bar {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: var(--green, #005a43)
}

.hdr-nav-list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    list-style: none;
    margin: 0;
    padding: 0
}

.hdr-nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative
}

.hdr-nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: color .18s ease
}

.hdr-nav-item.active .hdr-nav-link,
.hdr-nav-link:hover {
    color: var(--yellow, #ffc64d);
}

.hdr-dropdown-caret {
    margin-left: 5px;
    display: inline-flex;
    align-items: center
}

.indicator-icon {
    display: inline-block;
    position: relative;
    line-height: 1
}

.indicator-icon:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: inherit
}

.hdr-nav-item.has-mega:hover .hdr-mega-menu,
.hdr-nav-item.has-mega:focus-within .hdr-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1)
}

.hdr-mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translate(-50%, 12px) scale(.98);
    width: min(590px, calc(100vw - 32px));
    padding: 20px 20px 17px;
    background: #fff;
    border: 1px solid #f0eff4;
    box-shadow: 0 22px 54px rgba(31, 24, 51, .12);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 22px;
    opacity: 0;
    visibility: hidden;
    transition: all .22s ease;
    z-index: 30
}

.hdr-mega-menu-compact {
    width: 290px;
    grid-template-columns: 1fr;
    padding: 20px 22px 16px;
}

.hdr-mega-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #f0eff4;
    border-top: 1px solid #f0eff4
}

.hdr-mega-col {
    position: relative
}

.hdr-mega-menu h5 {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--secondary);
}

.hdr-mega-menu a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: #494a5f;
    line-height: 1.5;
    transition: color .18s ease
}

.hdr-mega-menu a:hover {
    color: var(--secondary)
}

.hdr-shipping {
    height: 47px;
    background: #21102d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px
}

.hdr-shipping strong {
    color: #ffc64d;
    margin-left: 4px
}

.hdr-mobile-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 24px
}

@media(max-width:900px) {
    .hdr-main-inner {
        grid-template-columns: 200px 1fr auto
    }

    .hdr-search-pill {
        max-width: 350px
    }

    .hdr-actions {
        gap: 16px
    }

    .hdr-nav-list {
        gap: 25px
    }
}

@media(max-width:680px) {
    body {
        padding-top: 72px
    }

    .hdr-main-inner {
        width: min(100% - 28px, 1160px);
        height: 72px;
        display: flex;
        gap: 12px
    }

    .hdr-brand-box {
        margin-right: auto
    }

    .hdr-brand-logo-img {
        width: 132px;
        height: auto;
        max-height: 38px;
        object-fit: contain;
        object-position: left center
    }

    .hdr-brand-box b {
        font-size: 17px
    }

    .hdr-brand-box small {
        font-size: 13px
    }

    .hdr-search-pill {
        display: none
    }

    .hdr-action-link:not(.hdr-cart-btn) {
        display: none
    }

    .hdr-action-link small {
        display: none
    }

    .hdr-cart-btn {
        min-width: 38px;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center
    }

    .hdr-cart-icon {
        width: 23px;
        height: 23px
    }

    .hdr-mobile-btn {
        display: block
    }

    .hdr-nav-bar {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        height: auto;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: var(--green, #005a43);
        box-shadow: 0 16px 30px #0002
    }

    .hdr-menu-open .hdr-nav-bar {
        display: block
    }

    .hdr-nav-list {
        display: block;
        height: auto;
        padding: 12px 20px
    }

    .hdr-nav-item {
        height: auto;
        display: block
    }

    .hdr-nav-link {
        height: auto;
        padding: 11px 0
    }

    .hdr-mega-menu {
        display: none
    }

    .hdr-nav-item.mobile-open .hdr-nav-link {
        color: var(--yellow, #ffc64d)
    }

    .hdr-nav-item.mobile-open .hdr-dropdown-caret {
        transform: rotate(180deg)
    }

    .hdr-nav-item.mobile-open .hdr-mega-menu {
        position: static;
        display: grid;
        width: 100%;
        margin: 2px 0 10px;
        padding: 13px 15px;
        grid-template-columns: 1fr;
        gap: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        border-radius: 10px;
        box-shadow: none
    }

    .hdr-nav-item.mobile-open .hdr-mega-menu::before {
        display: none
    }

    .hdr-nav-item.mobile-open .hdr-mega-menu h5 {
        margin-top: 8px
    }

    .hdr-nav-item.mobile-open .hdr-mega-menu a {
        padding: 7px 0
    }

    .hdr-shipping {
        height: 42px;
        font-size: 8px
    }

    .hdr-actions {
        gap: 12px
    }
}


