@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Barlow:wght@400;500;600;700&family=Stoke&display=swap');

body {
    --template-nav-gap: 24px;
    --template-nav-height: 40px;
    --template-nav-font-size: 16px;
    --template-nav-small-font-size: 14px;
    --template-nav-letter-spacing: initial;
    --template-nav-font-weight: 400;
    --template-nav-color: #000;
    --template-nav-text-transform: uppercase;
    --template-nav-background: #fff;

    --peera-cart-background: #999;
    --peera-cart-color: #fff;
}

body .header {
    border-bottom: 1px solid #E5E5E5;
}

body .header__inner {
    padding: 0;
    min-height: 90px;    
}

body .header__title .logo {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
    width: 240px;
    max-width: calc(100vw - 220px);
    height: 70px;
    margin-left: 99px;
}

body .header__title .logo img {
    display: none; 
}

body .header__title .logo:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: block;
    width: 83px;
    height: 90px;
    border-right: 1px solid #E5E5E5;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50px 74px;
}

body .nav__item--menu {
    padding: 0 10px;
    border-left: 1px solid #E5E5E5;
    height: 90px !important;
}

body .nav__item--cart {
    height: 90px !important;
    background-color: var(--peera-cart-background);
    color: var(--peera-cart-color);
    padding: 0 16px;
}

@media (max-width: 999px) {
    body .header__inner {
        gap: 0 !important;
    }

    body .nav__action .nav__inner {
        gap: 0;
    }

    body .nav__item--cart .text__price {
        display: none !important;
    }    
}

@media (min-width: 1000px) {
    body .nav__item--cart {
        padding: 0 24px;
    }

    body .header__title .logo {
        margin-left: 107px;
    }
}

@media (min-width: 1200px) {
    body {
        background-size: cover;
        background-attachment: fixed;
        background-position: top center;
    }

    body:before {
        content: "";
        background: rgba(0,0,0,.4);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        backdrop-filter: blur(0px);
    }
}