/* Verbatim extraction from the protected homepage-v2 source. Do not hand-edit. */

.lv2-preview-body {
    margin: 0;
    background: #fff;
    color: #12201a;
    overflow-x: hidden;
}

.lv2,
.lv2 * {
    box-sizing: border-box;
}

.lv2 {
    --ink: #12201a;
    --green: #0b7a3b;
    --green-dark: #095f2e;
    --lime: #a8d939;
    --warm: #f5f7f2;
    --line: #e3e8de;
    --muted: #5f6b62;
    --container: 1650px;
    width: 100%;
    min-width: 0;
    background: #fff;
    color: var(--ink);
    font: 400 16px/1.5 "Source Sans 3", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.lv2 a {
    color: inherit;
    text-decoration: none;
}

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

.lv2 img {
    display: block;
    max-width: 100%;
}

.lv2 button,
.lv2 input {
    font: inherit;
}

.lv2 button,
.lv2 a,
.lv2 input {
    outline-offset: 3px;
}

.lv2 :focus-visible {
    outline: 3px solid var(--lime);
}

.lv2-container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.lv2-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.lv2-skip {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100000;
    padding: 12px 18px;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    transform: translateY(-160%);
}

.lv2-skip:focus {
    transform: none;
}

.lv2-utility {
    background: var(--ink);
    color: #dce4da;
}

.lv2-utility__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
}

.lv2-utility nav {
    display: flex;
    gap: 26px;
}

.lv2-utility a:hover {
    color: #fff;
}

.lv2-utility .lv2-utility__seller {
    color: var(--lime);
    font-weight: 700;
}

.lv2-head-main {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.lv2-head-main__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: 190px minmax(340px, 1fr) auto;
    align-items: center;
    gap: 36px;
}

.lv2-logo {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.lv2-logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.lv2-logo span {
    color: var(--green);
    font: 700 32px/1 Outfit, "Trebuchet MS", sans-serif;
}

.lv2-search {
    display: flex;
    min-width: 0;
    height: 48px;
    border: 2px solid var(--green);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.lv2-search input[type="search"] {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 18px;
    color: var(--ink);
    background: transparent;
}

.lv2-search input[type="search"]:focus {
    outline: 0;
}

.lv2-search button {
    min-width: 112px;
    border: 0;
    padding: 0 22px;
    background: var(--green);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.lv2-search button:hover {
    background: var(--green-dark);
}

.lv2-search--mobile {
    display: none;
}

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

.lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
}

.lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger > span:first-child {
    color: var(--green);
    font-size: 24px;
}

.lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.lv2-account-nav small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
}

.lv2-hover-menu {
    position: relative;
}

.lv2-hover-panel {
    position: absolute;
    z-index: 500;
    top: calc(100% + 12px);
    width: 320px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(18, 32, 26, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.lv2-hover-panel::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.lv2-hover-menu:hover > .lv2-hover-panel,
.lv2-hover-menu:focus-within > .lv2-hover-panel,
.lv2-hover-menu.is-open > .lv2-hover-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.lv2-hover-panel > strong {
    display: block;
    margin-bottom: 13px;
    color: var(--ink);
    font: 700 18px/1.25 Outfit, "Trebuchet MS", sans-serif;
}

.lv2-hover-panel p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
}

.lv2-account-panel,
.lv2-cart-panel {
    right: 0;
}

.lv2-account-panel > a:not(.lv2-panel-button),
.lv2-category-panel > div a {
    min-height: 38px;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 6px;
    padding: 9px 10px;
    font-size: 14px;
    font-weight: 600;
    outline: 0;
    box-shadow: none;
    transition: background-color .06s ease-out, color .06s ease-out;
}

.lv2-account-panel > a:not(.lv2-panel-button):hover,
.lv2-account-panel > a:not(.lv2-panel-button):focus-visible,
.lv2-category-panel > div a:hover,
.lv2-category-panel > div a:focus-visible {
    background: var(--green);
    color: #fff !important;
    outline: 0;
    box-shadow: none;
}

.lv2-panel-button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 7px;
    background: var(--green);
    color: #fff !important;
    font-weight: 700;
}

.lv2-cart-panel {
    width: 390px;
}

.lv2-mini-cart-items {
    max-height: 330px;
    margin: 0;
    overflow: auto;
    padding: 0;
    list-style: none;
}

.lv2-mini-cart-items li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 28px;
    gap: 11px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.lv2-mini-cart-items a {
    min-height: 0;
    font-size: 13px;
    line-height: 1.3;
}

.lv2-mini-cart-image img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.lv2-mini-cart-items small {
    display: block;
    margin-top: 6px;
}

.lv2-mini-cart-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--muted);
    font-size: 20px !important;
}

.lv2-mini-cart-remove:hover {
    background: #f2f4ef;
    color: #b42318;
}

.lv2-mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    color: var(--ink);
}

.lv2-mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lv2-mini-cart-actions a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    border-radius: 7px;
    color: var(--green);
}

.lv2-mini-cart-actions a:last-child {
    background: var(--green);
    color: #fff;
}

.lv2-menu-button,
.lv2-mobile-nav {
    display: none;
}

.lv2-category-nav {
    position: relative;
    z-index: 40;
    background: var(--warm);
    border-bottom: 1px solid var(--line);
}

.lv2-category-nav .lv2-container {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 3px;
    overflow: visible;
}

.lv2-category-nav a,
.lv2-category-nav__all {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.lv2-category-nav__all {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
}

.lv2-category-panel {
    top: calc(100% + 7px);
    left: 0;
    width: 360px;
}

.lv2-category-panel > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-gutter: stable;
}

.lv2-category-panel > div a {
    min-height: 40px;
    white-space: normal;
}

.lv2-category-nav .lv2-category-nav__products {
    margin-left: auto;
}

.lv2-footer {
    background: var(--ink);
    color: #c4d0c0;
}

.lv2-footer__grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr 1.35fr 1fr;
    gap: 44px;
    padding-block: 50px;
}

.lv2-footer-group h2 {
    margin: 0 0 16px;
    color: #fff;
    font: 700 16px/1.2 Outfit, "Trebuchet MS", sans-serif;
}

.lv2-footer-group h2 button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: default;
}

.lv2-footer-group h2 span {
    display: none;
}

.lv2-footer-group > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lv2-footer-group a {
    font-size: 14px;
    line-height: 1.45;
}

.lv2-footer-group a:hover,
.lv2-footer__bottom a:hover {
    color: #fff;
}

.lv2-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.lv2-footer__bottom .lv2-container {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding-block: 22px;
    text-align: center;
    font-size: 13px;
}

.lv2-footer__bottom p {
    margin: 0;
}

.lv2-footer__bottom nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
}

@media (max-width: 1040px) {
    .lv2-head-main__inner {
        grid-template-columns: 160px minmax(260px, 1fr) auto;
        gap: 18px;
    }

    .lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger > span:last-child,
    .lv2-category-nav a:nth-of-type(n+6):not(.lv2-category-nav__products) {
        display: none;
    }
    .lv2-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .lv2-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .lv2-utility,
    .lv2-category-nav,
    .lv2-search--header {
        display: none;
    }

    .lv2-head-main__inner {
        min-height: 60px;
        grid-template-columns: 44px 1fr auto;
        gap: 8px;
    }

    .lv2-menu-button {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 6px;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        font-size: 24px;
    }

    .lv2-logo img {
        width: auto;
        height: 27px;
    }

    .lv2-account-nav {
        gap: 0;
    }

    .lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger {
        width: 44px;
        justify-content: center;
    }

    .lv2-account-nav > .lv2-hover-menu > .lv2-hover-trigger > span:first-child {
        font-size: 21px;
    }

    .lv2-hover-panel {
        display: none;
    }

    .lv2-search--mobile {
        width: calc(100% - 28px);
        height: 46px;
        display: flex;
        margin: 0 auto 12px;
    }

    .lv2-search--mobile button {
        min-width: 92px;
        padding-inline: 14px;
    }

    .lv2-mobile-nav {
        display: grid;
        gap: 0;
        padding: 8px 14px 16px;
        border-bottom: 1px solid var(--line);
        background: #fff;
    }

    .lv2-mobile-nav[hidden] {
        display: none;
    }

    .lv2-mobile-nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-weight: 700;
    }
    .lv2-footer__grid {
        display: block;
        padding-block: 20px;
    }

    .lv2-footer-group {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .lv2-footer-group h2 {
        margin: 0;
    }

    .lv2-footer-group h2 button {
        min-height: 54px;
        cursor: pointer;
    }

    .lv2-footer-group h2 span {
        display: inline;
        font-size: 22px;
        transition: transform .2s ease;
    }

    .lv2-footer-group h2 button[aria-expanded="true"] span {
        transform: rotate(45deg);
    }

    .lv2-footer-group > div {
        padding: 0 0 18px;
    }

    .lv2-footer-group > div[hidden] {
        display: none;
    }

    .lv2-footer-group a {
        min-height: 42px;
        display: flex;
        align-items: center;
    }

    .lv2-footer__bottom .lv2-container {
        min-height: 0;
        align-items: center;
        flex-direction: column;
        padding-block: 24px;
        text-align: center;
    }

    .lv2-footer__bottom nav {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .lv2-container,
    .lv2-search--mobile {
        width: calc(100% - 22px);
    }

    .lv2-logo img {
        max-width: 132px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv2 *,
    .lv2 *::before,
    .lv2 *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

