:root {
    --container: 135px clamp(
        8%,
        calc((100% - 1280px) / 2),
        calc(100% - 1280px)
    );

    --g100: 100px;
    --g80: 80px;
    --g60: 60px;
    --g52: 52px;
    --g40: 40px;
    --g32: 32px;
    --g28: 28px;
    --g24: 24px;
    --g20: 20px;
    --g18: 18px;
    --g16: 16px;
    --g12: 12px;
    --g10: 10px;
    --g8: 8px;
    --g6: 6px;
    --g4: 4px;

    --br10: 10px;
    --br8: 8px;
    --br7: 7px;
    --br6: 6px;
    --br5: 5px;

        --shade1: #090402;
    --shade2: #130F0C;
    --shade3: #191716;
    --shade4: #21201F;
    --shade5: #2A2827;
    --shade6: #2A2827;
    --shade7: #3C3A39;
    --shade8: #454342;
    --shade9: #4F4D4C;
    --shade10: #595756;
    --shade11: #636160;
    --shade12: #6D6B6A;
    --shade13: #777574;
    --shade14: #81807E;
    --shade15: #8C8A88;
    --shade16: #969492;
    --shade17: #A09E9C;
    --shade18: #AAA8A6;
    --shade19: #B0AEAC;
    --shade20: #B5B2B0;

}

.button-main:hover {
	background-color: #99491E;
color: white;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Geist';

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #FCF9F5;
}

input {
    border: none;
    outline: none;
}

.pos-full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =======================================
  CONTAINER
======================================= */

.container {
    padding: var(--container);
}

/* =======================================
  A + BUTTON
======================================= */

a {
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

/* =======================================
  TYPOGRAPHY
======================================= */

.uppercase, h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    letter-spacing: -0.008em;
    line-height: 1.2;
}

h2 {
    color: #0F0505;
    font-variation-settings: 'wght' 850;
    font-size: 19px;
}

p {
    line-height: 1.5;
    color: #6A6362;
    font-weight: 500;
    font-size: 14px;
}

/* =======================================
  BUTTON MAIN
======================================= */

.button-main {
    padding: 10px 12px 9px 12px;
    background-color: #B65B2A;
    line-height: 1;
    text-transform: uppercase;
    color: #FAF3F0;
    font-variation-settings: 'wght' 850;
    border-radius: var(--br6);
    font-size: 13px;
}

/* =======================================
  TRANSITION
======================================= */

.dot,
button,
.tra,
.progress,
a,
input,
input::placeholder {
    transition: all 210ms cubic-bezier(0.33, 1, 0.68, 1);
}

/* =======================================
  SECTION
======================================= */

section {
    max-width: 100vw;
    overflow: hidden;
}

/* =======================================
  SLIDER
======================================= */

.flickity-page-dots {
    margin-top: var(--g40);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    gap: var(--g8);
}

.flickity-page-dots .dot {
    background-color: #110303;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    opacity: .5;
}

.dot.is-selected {
    opacity: 1 !important;
}

.flickity-enabled *:focus,
.flickity-enabled:focus {
    outline: none;
    border: none;
}

.progress {
    background-color: #110303;
    height: 4px;
    opacity: .6;
}


.progress-wrap {
    width: 100%;
    margin-top: calc(var(--g18) - (var(--g18) * 2));
    background-color: hsl(0, 0%, 0%, .08);
    border-radius: 50px;
    overflow: hidden;
    height: 4px;

}

/* ==============================================================================

  BREAKPOINT 1

============================================================================== */

@media (max-width: 1340px) {
    :root {
        --container: 122px 8%;

        --g24: 22px;
        --g20: 18px;
        --g18: 16px;
        --g16: 14px;
        --g12: 11px;
        --g10: 9px;
        --g8: 7px;
        --g6: 5px;
        --g4: 4px;

    }

    /* =======================================
        BUTTON MAIN
    ======================================= */

    .button-main {
        padding: 9px 11px 9 11px;
        font-size: 12px;
    }

    /* =======================================
        TYPOGRAPHY
    ======================================= */

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
    }

}


/* ==============================================================================

  BREAKPOINT 2

============================================================================== */

@media (max-width: 1027px) {
    :root {
        --container: 122px 7%;

    }

    /* =======================================
        BUTTON MAIN
    ======================================= */

    .button-main {
        padding: 10px 12px 9px 12px;
        font-size: 13px;
    }

}

/* ==============================================================================

  BREAKPOINT 3

============================================================================== */

@media (max-width: 703px) {
    :root {
        --container: 109px 6%;

        --g24: 19px;
        --g20: 16px;
        --g18: 15px;
        --g16: 13px;
        --g12: 10px;
        --g10: 8px;
        --g8: 6px;
        --g6: 5px;
        --g4: 3px;

        --br6: 5px;

    }

    /* =======================================
        BUTTON MAIN
    ======================================= */

    .button-main {
        padding: 9px 11px 9 11px;
        font-size: 12px;
    }

    
    /* =======================================
        SLIDER
    ======================================= */

    .flickity-page-dots .dot {
        background-color: #110303;
        height: 4px;
        width: 4px;
        border-radius: 50px;
        opacity: .5;
    }

    /* =======================================
        TYPOGRAPHY
    ======================================= */

    h2 {
        font-size: 17px;
    }

    p {
        font-size: 12.5px;
    }


}


/* =====================================================================

  FOOTER

===================================================================== */



footer {
    padding-top: var(--g80) !important;
    padding-bottom: var(--g80) !important;
    background-color: #171717;
    display: grid;
    row-gap: var(--g80);
    grid-template-columns: auto 1fr 1fr;
}

/* CTA WRAP */

.footer-email-cta-wrap {
    background-color: hsl(0, 0%, 100%, .05);
    grid-column: 1 / 4;
    margin-bottom: var(--g20);
    padding: var(--g20);
    border-radius: var(--br10);
    display: grid;
    grid-template-columns: 1fr min-content;
    grid-template-rows: auto auto ;
}

.footer-email-cta-wrap h2 {
    color: #FCFCFC;
    font-size: 15px;
    font-variation-settings: 'wght' 750;
}

.footer-email-cta-wrap p {
    color: #ABABAB;
    font-size: 13px;
    margin-top: var(--g6);
}

.footer-email-cta-wrap form {
    align-self: center;
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}

.email-cta-input {
    font-variation-settings: 'wght' 500;
    width: 350px;
    font-size: 13px;
    padding: 0 11px;
    color: #0F0505;
    outline: 3px solid transparent;
    height: 30px;
    background-color: #EDEDED;
    border-radius: var(--br5);
}

.footer-email-cta-wrap form button {
    white-space: nowrap;
    height: 30px;
    font-size: 13px;
}

.email-cta-input::placeholder {
    color: #999999;
    font-variation-settings: 'wght' 450;
}

.email-cta-input:focus,
.email-cta-input:hover {
    background-color: white;
}

.email-cta-input:hover::placeholder,
.email-cta-input:focus::placeholder {
    color: #808080;
}

.email-cta-input:focus {
    outline: 3px solid hsl(0, 0%, 100%, .25);
}

/* FOOTER LINKS */

.footer-navigation-link-wrap {
    grid-column: 2 / 4;
    justify-self: end;
}

.footer-navigation-link-wrap h3 {
    font-size: 15px;
    color: #EBEBEB;
    font-variation-settings: 'wght' 700;
}

.footer-link {
    font-size: 13px;
    color: #949494;
    font-variation-settings: 'wght' 400;
    line-height: 1;
}

.footer-link:hover {
    color: white;
}

/* FOOTER LOGO */

.footer-logo-wrap p{
    font-size: 13px;
    color: #737373;
}

.footer-logo svg {
    opacity: .9;
    height: 12px;
    transition: inherit;
}

.footer-logo:hover svg {
    opacity: 1;
}

/* SOCIAL BUTTONS */

.footer-button-wrap {
    justify-self: end;
    align-self: center;
}

.footer-social-button {
    height: 30px;
    aspect-ratio: 1;
    border-radius: var(--br6);
}

.footer-social-button svg {
    height: 16px;
    fill: #BFBFBF;
}

.footer-social-button.youtube svg {
    height: 14px;
    transform: translateX(1px);
}

.footer-social-button:hover {
    background-color: hsl(0, 0%, 100%, .05);
}

.footer-social-button:hover svg {
    fill: white;
}

/* CTA */

.copy-right {
    color: #595959;
    font-size: 13px;
    align-self: center;
    grid-column: 1 / 3;
}







/* =========================================================================================================

  BREAK POINT TWO

========================================================================================================= */

@media (max-width: 1340px) {


    /* =====================================================================

        FOOTER

    ===================================================================== */

    /* CTA WRAP */

    .footer-email-cta-wrap h2 {
        font-size: 14px;
    }

    .footer-email-cta-wrap p {
        font-size: 12px;
    }

    .email-cta-input {
        width: 320px;
        font-size: 12px;
        padding: 0 10px;
        height: 28px;
    }

    .footer-email-cta-wrap form button {
        height: 28px;
        font-size: 12px;
    }

    /* FOOTER LINKS */

    .footer-navigation-link-wrap h3 {
        font-size: 14px;
    }

    .footer-navigation-link-wrap div {
        gap: var(--g16);
    }

    .footer-navigation-link-wrap ul {
        gap: var(--g10) !important;
    }

    .footer-link {
        font-size: 12px;
    }

    /* FOOTER LOGO */

    .footer-logo-wrap p{
        font-size: 12px;
    }

    .footer-logo svg {
        height: 11px;
    }

    /* SOCIAL BUTTONS */

    .footer-social-button {
        height: 28px;
    }

    .footer-social-button svg {
        height: 15px;
    }

    .footer-social-button.youtube svg {
        height: 13px;
    }


    /* CTA */

    .copy-right {
        color: #595959;
        font-size: 12px;
        grid-column: 1 / 3;
    }

}


/* =========================================================================================================

  BREAK POINT THREE

========================================================================================================= */

@media (max-width: 1027px) {

    /* =====================================================================

        FOOTER

    ===================================================================== */


    /* CTA WRAP */

    footer {
        grid-template-columns: auto auto min-content !important;
    }

    .footer-email-cta-wrap {
        grid-template-columns: 1fr ;
        grid-template-rows: repeat(3, auto);
    }

    .footer-email-cta-wrap h2 {
        font-size: 15px;
    }

    .footer-email-cta-wrap p {
        font-size: 13px;
    }

    .footer-email-cta-wrap form {
        grid-column: 1 / 1;
        grid-row: 3 / 4;
        margin-top: var(--g28);
    }

    .email-cta-input {
        width: 360px;
        font-size: 13px;
        padding: 0 11px;
        height: 30px;
    }

    .footer-email-cta-wrap form button {
        height: 30px;
        font-size: 13px;
    }

    /* FOOTER LINKS */

    .footer-navigation-link-wrap {
        grid-column: 1 / 4;
        gap: 0px !important;
        width: 100%;
        justify-content: space-between;
    }

    .footer-navigation-link-wrap h3 {
        font-size: 15px;
    }

    .footer-navigation-link-wrap div {
        gap: var(--g18);
    }

    .footer-navigation-link-wrap ul {
        gap: var(--g12) !important;
    }

    .footer-link {
        font-size: 13px;
    }

    /* FOOTER LOGO */

    .footer-logo-wrap {
        grid-column: 1 / 4;
    }

    .footer-logo-wrap p{
        font-size: 13px;
    }

    .footer-logo svg {
        height: 13px;
    }

    /* SOCIAL BUTTONS */

    .footer-social-button {
        height: 30px;
    }

    .footer-social-button svg {
        height: 16px;
    }

    .footer-social-button.youtube svg {
        height: 14px;
    }


    /* CTA */

    .copy-right {
        color: #595959;
        font-size: 12px;
        grid-column: 1 / 3;
    }
}


/* =========================================================================================================

  BREAK POINT FOUR

========================================================================================================= */

@media (max-width: 660px) {

    /* =====================================================================

        FOOTER

    ===================================================================== */

    /* CTA WRAP */

    .footer-email-cta-wrap h2 {
        font-size: 15px;
    }

    .footer-email-cta-wrap p {
        font-size: 12.5px;
    }

    .email-cta-input {
        width: 100% !important;
        font-size: 16px;      /* prevents iOS Safari zoom */
        padding: 0 10px;
        height: 36px;
        margin-right: -24%;
        transform: scale(0.75);
        transform-origin: left center;
    }

    .footer-email-cta-wrap form button {
        height: 27px;
        font-size: 12px;
    }

    /* FOOTER LINKS */

    .footer-navigation-link-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: var(--g52) !important;
        margin: var(--g10) 0;
    }

    .footer-navigation-link-wrap > :nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .footer-navigation-link-wrap h3 {
        font-size: 13px;
    }


    .footer-link {
        font-size: 12px;
    }

    /* FOOTER LOGO */

    .footer-logo-wrap p{
        font-size: 13px;
    }

    .footer-logo svg {
        height: 11px;
        margin-bottom: 1px;
    }

    /* SOCIAL BUTTONS */

    .footer-button-wrap {
        margin-top: -36px;
    }

    .footer-social-button {
        height: 28px;
    }

    .footer-social-button svg {
        height: 15px;
    }

    .footer-social-button.youtube svg {
        height: 13px;
    }


    /* CTA */

    .copy-right {
        color: #595959;
        font-size: 12px;
        grid-column: 1 / 4;
    }
}


/* ==============================================================================

  BREAK SECTION

============================================================================== */

.break-section {
    height: 630px;
    position: relative;
    margin: var(--g80) 0;
}

.break-section img,
.break-section picture {
    position: absolute;
    width: auto;
    left: 50%;
    translate: -50%;
    height: 100%;
    bottom: 0;
    object-position: center;
    object-fit: contain ;
}

.break-section .jar {
    transition-duration: .4s !important;
}

.break-section:hover .jar {
    transform: translateY(0);
}

.break-section * {
    position: relative;
}

.break-section h2 {
    font-size: 29px;
    font-weight: 900;
    margin-top: var(--g40);
    color: white;
    margin-bottom: var(--g4);
}

.break-section p {
    font-size: 15px;
    color: #AAAAA9;
    margin-bottom: var(--g20);
}

.break-section .button-main {
    font-size: 14px;
}

/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    
    /* ==============================================================================

        HERO

    ============================================================================== */

    .break-section {
        height: 500px;
    }


    .break-section h2 {
        font-size: 28px;
    }

    .break-section p {
        font-size: 14px;
    }

    .break-section .button-main {
        font-size: 13px;
    }

    
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .break-section {
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 14% !important;
        height: auto;
        text-align: center;
        aspect-ratio: 1 / 1;
    }


    .break-section h2 {
        font-size: 30px;
    }

    .break-section p {
        font-size: 15px;
    }

    .break-section .button-main {
        font-size: 14px;
    }

    
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .break-section {
        aspect-ratio: 1 / 1.2;
        padding-bottom: 17% !important;
    }


    .break-section h2 {
        font-size: 26px;
    }

    .break-section p {
        font-size: 13px;
    }

    .break-section .button-main {
        font-size: 12.5px;
    }

    
}


/* ==============================================================================

  CART

============================================================================== */

.background-blur {
    position: fixed;
    background-color: hsl(0, 0%, 0%, .08);
    backdrop-filter: blur(2px);
    z-index: 1000;
    transition-duration: .3s !important;pointer-events: none;
    opacity: 0;
}

.background-blur.open {
    opacity: 1;
    pointer-events: all;
}

.cart-wrap {
    width: 390px;
    position: fixed;
    transition-duration: .3s !important;
    right: 0;
    top: 0;
    height: 100%;
    background-color: white;
    box-shadow: -1px 0px 5px 0px rgba(0, 0, 0, 20%);
    z-index: 1001;
    transform: translateX(105%);
    filter: blur(2px);
}


.cart-wrap.open {
    transform: translateX(0);
    filter: blur(0px);
}

/* =======================================
  TOP BLOCK
======================================= */

.cart-top-block {
    display: grid;
    grid-template-columns: 1fr min-content;
    border-bottom: 1px solid hsl(0, 0%, 0%, .04);
    background-color: #FCFAF8;
    padding: var(--g18);
}

.cart-top-block .close {
    height: 12px;
    width: 12px;
    align-self: center;
}

.cart-top-block .close svg {
    height: 9px;
    fill: #808080;
    transition: inherit;
    overflow: visible;
}

.cart-top-block .close:hover svg {
    fill: black;
}

.cart-top-block .label {
    font-size: 13px;
    font-variation-settings: 'wght' 550;
    align-self: center;
    color: #6F6D6D;
    align-self: center;
}

.cart-top-block .label span {
    font-variation-settings: 'wght' 600;
    color: #1C1C1C;
}

.reward-wrapper {
    position: relative;
    grid-column: 1 / 3;
    margin-top: var(--g16);
}

.reward-meter .reward-meter-label-ammount {
    font-size: 11px;
    font-variation-settings: 'wght' 500;
    font-weight: 600;
    color: #FFFFFF;
    position: absolute;
    top: 11px;
}

.reward-meter > :first-child {
    transform: translateY(-48%) translateX(-50%);
    left: calc(34% / 2);
}

.reward-meter > :nth-child(2) {
    left: 50%;
    transform: translateY(-48%) translateX(-50%);
}

.reward-meter > :nth-child(3) {
    right: calc(34% / 2);
    transform: translateY(-48%) translateX(50%);
}

.reward-meter-label {
    margin-top: var(--g6);
    color: #827F7D;
    transition: inherit;
    font-weight: 500;
    font-size: 11.5px;
}

.reward-meter.tier-3 > :nth-last-child(1),
.reward-meter.tier-2 > :nth-last-child(2),
.reward-meter.tier-1 > :nth-last-child(3) {
    color: #181111;
    font-weight: 600;
}


/* =======================================
  PRODUCT-TILE
======================================= */

.product-tile {
    border-bottom: 1px solid hsl(0, 0%, 0%, .04);
    padding: var(--g18);
    display: grid;
    grid-template-rows: min-content min-content;
    grid-template-columns: min-content 1fr min-content;
    row-gap: var(--g12);
    column-gap: var(--g12);
}

.product-tile img {
    height: 64px;
    grid-row: 1 / 3;
}

.product-tile h3 {
    font-size: 13px;
    font-weight: 800;
    color: #2C2A2A;
}

.product-tile .price {
    font-size: 13px;
    font-weight: 800;
    color: #181111;
}

.product-tile .quantity-wrap-tile {
    height: 26px;
    margin-right: auto;
    overflow: hidden;
    border-radius: var(--br6);
    border: 1px solid #CDCBCB;
}

.product-tile .quantity-wrap-tile button {
    height: 100%;
    aspect-ratio: 1;
    fill: hsl(0, 0%, 50%);
}

.product-tile .quantity-wrap-tile button:hover {
    background-color: hsl(0, 0%, 0%, .04);
    fill: #181111;
}

.product-tile .quantity-wrap-tile button svg {
    fill: inherit ;
}

.product-tile .quantity-wrap-tile > :first-child svg {
    transform: translateX(.5px) translateY(.5px);
    width: 8px !important;
}

.product-tile .quantity-wrap-tile > :last-child svg {
    height: 8px !important;
    transform: translateX(.5px) translateY(.5px);
}

.product-tile .quantity-wrap-tile input{
    flex: 1;
    width: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #404040;
    max-width: 40px;
}

.quantity-wrap-tile input {
    outline: none;
    border: none;
    background-color: transparent;
}

.product-tile .delete svg {
    fill: #7F7F7F;
    height: 13px;
    transition: inherit;
}

.product-tile .delete {
    justify-self: end;
}

.product-tile .delete:hover svg {
    fill: #D41B1B;
}

.nothing-in-cart {
    text-align: center;
    padding: var(--g18);
    align-items: center;
    gap: var(--g10);
}


.nothing-in-cart p {
    font-size: 19px;
    color: #090101;
    font-weight: 900;
}

.nothing-in-cart .button-main {
    font-size: 12px;
}

/* =======================================
  BOTTOM BLOCK
======================================= */

.cart-bottom-block {
    background-color: #FCFAF8;
    padding: var(--g18);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid hsl(0, 0%, 0%, .04);
}

.cart-bottom-block > :nth-last-child(3),
.cart-bottom-block > :nth-last-child(2) {
    margin-top: var(--g8);
}

.cart-bottom-block .label {
    color: #272525;
    line-height: 1;
    font-weight: 800;
    font-size: 13px;
}

.cart-bottom-block .price {
    align-self: center;
    justify-self: end;
    line-height: 1;
    color: #090101;
    font-weight: 700;
    font-size: 13px;
}

.cart-bottom-block .button-main {
    margin-top: var(--g24);
    grid-column: 1 / 3;
}

.cart-bottom-block .promotion-banner {
    grid-column: 1 / 3;
    background-color: #3C5C45;
    padding: var(--g10) var(--g12);
    margin-bottom: var(--g24);
    border-radius: 1000px;
} 

.cart-bottom-block .promotion-banner svg {
    height: 12px;
}

.cart-bottom-block .promotion-banner p {
    line-height: 1;
    color: #F5F6F5;
    font-size: 12px;
    font-weight: 600;
}

.promotion-banner-wrap {
    grid-column: 1 / 3;
    overflow: hidden;
}

.cart-bottom-block .price.sale {
    color: #D41B1B;
}

.cart-bottom-block .price.discount {
    color: #747070;
    text-decoration: line-through;
}


/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    
    /* ==============================================================================

        HERO

    ============================================================================== */

    .cart-wrap {
        width: 380px;
    }

    /* =======================================
        TOP BLOCK
    ======================================= */


    .cart-top-block .close {
        height: 11px;
        width: 11px;
    }

    .cart-top-block .close svg {
        height: 8px;
    }

    .cart-top-block .label {
        font-size: 12.5px;
    }

    .reward-meter .reward-meter-label-ammount {
        font-size: 10.5px;
        top: 11px;
    }

    .reward-meter-label {
        font-size: 11px;
    }

    /* =======================================
    PRODUCT-TILE
    ======================================= */

    .product-tile img {
        height: 62px;
    }

    .product-tile h3 {
        font-size: 12.5px;
    }

    .product-tile .price {
        font-size: 12.5px;
    }

    .product-tile .quantity-wrap-tile {
        height: 24px;
    }

    .product-tile .quantity-wrap-tile > :first-child svg {
        transform: translateX(.5px) translateY(.5px);
        width: 7px !important;
    }

    .product-tile .quantity-wrap-tile > :last-child svg {
        height: 7px !important;
        transform: translateX(.5px) translateY(.5px);
    }

    .product-tile .quantity-wrap-tile input{
        width: 36px;
        font-size: 12px;
        max-width: 36px;
    }

    .product-tile .delete svg {
        height: 12px;
    }

    .nothing-in-cart p {
        font-size: 18px;
        color: #090101;
        font-weight: 900;
    }

    .nothing-in-cart .button-main {
        font-size: 12px;
    }


    /* =======================================
    BOTTOM BLOCK
    ======================================= */

    .cart-bottom-block .label {
        font-size: 12.5px;
    }

    .cart-bottom-block .price {
        font-size: 12.5px;
    }

    .cart-bottom-block .promotion-banner svg {
        height: 11px;
    }

    .cart-bottom-block .promotion-banner p {
        font-size: 11px;
    }

    
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .cart-wrap {
        width:  500px;
    }

    /* =======================================
        TOP BLOCK
    ======================================= */


    .cart-top-block .close {
        height: 16px;
        width: 16px;
    }

    .cart-top-block .close svg {
        height: 10px;
    }

    .cart-top-block .label {
        font-size: 13px;
    }

    .reward-meter .reward-meter-label-ammount {
        font-size: 12px;
        top: 11.5px;
        font-variation-settings: 'wght' 650 !important;
    }

    .reward-meter-label {
        font-size: 12px;
    }

    .reward-meter-block {
        height: 24px !important;
    }

    /* =======================================
    PRODUCT-TILE
    ======================================= */

    .product-tile img {
        height: 62px;
    }

    .product-tile {
        gap: var(--g16);
    }

    .product-tile h3 {
        font-size: 13px;
    }

    .product-tile .price {
        font-size: 13px;
    }

    .product-tile .quantity-wrap-tile {
        height: 26px;
    }

    .product-tile .quantity-wrap-tile > :first-child svg {
        transform: translateX(.5px) translateY(.5px);
        width: 8px !important;
    }

    .product-tile .quantity-wrap-tile > :last-child svg {
        height: 8px !important;
        transform: translateX(.5px) translateY(.5px);
    }

    .product-tile .quantity-wrap-tile input{
        width: 40px;
        font-size: 13px;
        max-width: 40px;
    }

    .product-tile .delete svg {
        height: 15px;
    }


    /* =======================================
    BOTTOM BLOCK
    ======================================= */

    .cart-bottom-block .label {
        font-size: 13px;
    }
    
    .cart-bottom-block .promotion-banner {
        padding: var(--g12) var(--g12);
    }

    .cart-bottom-block .price {
        font-size: 13px;
    }

    .cart-bottom-block .promotion-banner svg {
        height: 12px;
    }

    .cart-bottom-block .promotion-banner p {
        font-size: 12px;
    }

    
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .cart-wrap {
        transition-duration: .45s !important;
        width:  100%;
    }

    /* =======================================
        TOP BLOCK
    ======================================= */


    .cart-top-block .close {
        height: 16px;
        width: 16px;
    }

    .cart-top-block .close svg {
        height: 10px;
    }

    .cart-top-block .label {
        font-size: 13px;
    }
    

    .reward-meter .reward-meter-label-ammount {
        font-size: 12px;
        top: 11.5px;
        font-variation-settings: 'wght' 650 !important;
    }

    .reward-meter-label {
        font-size: 12px;
    }

    .reward-meter-block {
        height: 24px !important;
    }

    .nothing-in-cart p {
        font-size: 16px;
        color: #090101;
        font-weight: 900;
    }

    /* =======================================
    PRODUCT-TILE
    ======================================= */

    .product-tile img {
        height: 62px;
    }

    .product-tile {
        gap: var(--g16);
    }

    .product-tile h3 {
        font-size: 13px;
    }

    .product-tile .price {
        font-size: 13px;
    }

    .product-tile .quantity-wrap-tile {
        height: 26px;
    }

    .product-tile .quantity-wrap-tile > :first-child svg {
        transform: translateX(.5px) translateY(.5px);
        width: 8px !important;
    }

    .product-tile .quantity-wrap-tile > :last-child svg {
        height: 8px !important;
        transform: translateX(.5px) translateY(.5px);
    }

    .product-tile .quantity-wrap-tile input{
        width: 40px;
        font-size: 13px;
        max-width: 40px;
    }

    .product-tile .delete svg {
        height: 15px;
    }


    /* =======================================
    BOTTOM BLOCK
    ======================================= */

    .cart-bottom-block .label {
        font-size: 13px;
    }
    
    .cart-bottom-block .promotion-banner {
        padding: var(--g12) var(--g12);
    }

    .cart-bottom-block .price {
        font-size: 13px;
    }

    .cart-bottom-block .promotion-banner svg {
        height: 12px;
    }

    .cart-bottom-block .promotion-banner p {
        font-size: 12px;
    }

    
}


/* ==============================================================================

  FAQ

============================================================================== */

.faq-wrap {
    padding: 20px;
    margin: -20px;
    background-image: url(./assets/blob/faq-blob-bp1.png);
    background-size: 100% 100%;
}


.faq {
    padding: var(--g16);
    text-align: left;
    background-color: #FEFEFD;
    border-radius: var(--br8);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 2%), 0px 1px 7px 0px rgba(0, 0, 0, 10%);
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: var(--g10);
}

.faq h3 {
    font-size: 15px;
    color: #353131;
    font-weight: 800;
    transition: inherit;
    line-height: 1.3;
}

.faq svg {
    transition: inherit;
    height: 11px;
    fill: #353131;
}

.faq-question-wrap {
    max-height: 0;
    overflow: hidden;
    transition: inherit;
}

.faq p {
    margin-top: var(--g6);
    font-size: 13px;
    line-height: 1.4;
    color: #5D5B5A;
}

.faq.open h3 {
    color: #CC5B24;
}

.faq.open svg{
    transform: rotate(45deg);
    fill: #CC5B24;
}


/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    
    /* ==============================================================================

        HERO

    ============================================================================== */

    .faq-wrap {
        padding: 17px;
        margin: -17px;
    }


    .faq h3 {
        font-size: 14px;
    }

    .faq svg {
        height: 10px;
    }

    .faq p {
        font-size: 12px;
    }

}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .faq-wrap {
        padding: 17px;
        margin: -17px;
    }


    .faq h3 {
        font-size: 15px;
    }

    .faq svg {
        height: 11px;
    }

    .faq p {
        font-size: 13px;
    }

    .faq-section {
        flex-direction: column !important;
        align-items: stretch ;
    }

    
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    .faq-wrap {
        padding: 12px;
        margin: -12px;
    }

    .faq h3 {
        font-size: 13px;
    }

    .faq svg {
        height: 10px;
    }

    .faq p {
        font-size: 12px;
    }

    
}


/* =======================================
  FLEX
======================================= */

.f-col {
    display: flex;
    flex-direction: column;
}

.f-row {
    display: flex;
    align-items: center;
}

.a-f-s {
    align-items: flex-start;
}

.j-c {
    justify-content: center;
}

.j-s-b {
    justify-content: space-between;
}

.j-f-e {
    justify-content: flex-end;
}

.flex {
    flex: 1;
}

.g100 {
    gap: var(--g100);
}

.g80 {
    gap: var(--g80);
}

.g60 {
    gap: var(--g60);
}

.g18 {
    gap: var(--g18);
}

.g16 {
    gap: var(--g16);
}

.g12 {
    gap: var(--g12);
}

.g10 {
    gap: var(--g10);
}

.g6 {
    gap: var(--g6);
}

section {
    position: relative;
}


/* ==============================================================================

  HERO

============================================================================== */

main {
    height: 700px;
    background-image: url(./assets/home/hero/hero-image-one.webp);
    background-size: 1950px;
    background-position: center bottom;
    margin-bottom: var(--g40);
}

main > :nth-child(2) {
    display: none;
}

main h1 {
    font-size: 28px;
    color: #FCFCFC;
    font-weight: 900;
    margin-bottom: var(--g4);
}

main p {
    font-size: 15px;
    color: #C7C8C8;
    font-weight: 400;
}

main .button-main {
    margin: var(--g20) 0;
}

/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: 600px;
        background-size: auto 600px;
    }

    main h1 {
        font-size: 27px;
    }

    main p {
        font-size: 14px;
    }
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: 800px;
        align-items: center !important;
        justify-content: flex-start !important;
        background-image: url(./assets/home/hero/hero-image-two.webp);
        background-size: 100%;
        text-align: center;
    }

    main p,
    main > :first-child {
        display: none;
    }

    main > :nth-child(2) {
        display: block;
    }

    main h1 {
        font-size: 36px;
    }
    
    main .button-main {
        padding: 10px 12px 9px 12px;
        font-size: 14px !important;
    }
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: auto;
        aspect-ratio: 1 / 1.5;
        background-size: 120% auto;
        background-position: center bottom;
        padding-top: 100px !important;
    }

    main h1 {
        font-size: 32px;
    }
    
    main .button-main {
        padding: 8px 11px 8px 11px;
        font-size: 13px !important;
    }
}


/* ==============================================================================

  NAV

============================================================================== */

nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: var(--g16) !important;
    padding-bottom: var(--g16) !important;
    z-index: 500;
}

nav .logo {
    opacity: .9;
}

nav .logo svg {
    height: 11px;
    fill: white;
}

nav.black .logo svg {
    height: 11px;
    fill: black !important;
}


nav .logo:hover {
    opacity: 1;
}

nav.black .cart-button svg {
    fill: black !important;
}

.cart-button {
    height: 26px;
    opacity: .8;
    aspect-ratio: 1;
    border-radius: var(--br6);
}

.cart-button svg {
    height: 13px;
}

nav.black .cart-button:hover {
    background-color: hsl(0, 0%, 0%, .1);
}

.cart-button:hover {
    background-color: hsl(0, 0%, 100%, .1);
    opacity: 1;
    backdrop-filter: blur(2px);
}



/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    
    /* ==============================================================================

        HERO

    ============================================================================== */

    nav .logo svg {
        height: 10px;
    }


    .cart-button {
        height: 24px;
    }

    .cart-button svg {
        height: 12px;
    }

    
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

        nav .logo svg {
        height: 9px;
    }


    .cart-button {
        height: 24px;
    }

    .cart-button svg {
        height: 12px;
    }

    
}


/* ==============================================================================

  PRODUCT SLIDER

============================================================================== */

.product-slider {
    background-image: url(./assets/blob/product-slider-blob.png);
    background-size: 100% 100%;
    padding: 20px 30px;
    margin: -20px -30px;
}

.product-card {
    width: 310px;
    margin-right: var(--g20);
    box-shadow:
        0px 1px 2px 0px rgba(0, 0, 0, 0.02),
        0px 1px 7px 0px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    background-color: white;
    border-radius: var(--br10);
    padding: var(--g18);
}

.product-card .image-wrap {
    width: 100%;
    position: relative;
    transition: inherit;
    overflow: hidden;
    aspect-ratio: 2.6 / 1.4;
}

.product-card .image-wrap img {
    position: absolute;
    left: 0;
    transition: inherit;
    top: 0;
    width: 100%;
}

.product-card:hover .image-wrap img {
    scale: 1.2;
}

.review-tag {
    margin: var(--g20) 0;
}

.product-card .review-tag {
    font-size: 12px;
    color: #999999;
    font-variation-settings: 'wght' 450;
}

.product-card .review-tag svg {
    transform: translateY(-1px);
}

.product-card .price {
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    color: #4F4A4A;
}

.product-card h3 {
    color: #181111;
    font-size: 15px;
    font-variation-settings: 'wght' 850;
    margin: var(--g16) 0 var(--g6) 0
}

.product-card .des {
    font-size: 13px;
    font-variation-settings: 'wght' 450;
    color: #757170;
}

.product-card .button-main {
    border-radius: var(--br5);
    padding: 8px 14px;
    margin-top: var(--g20);
    width: 100%;
}

/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    
    /* ==============================================================================

        PRODUCT SLIDER

    ============================================================================== */

    .product-slider {
        padding: 15px 25px;
        margin: -15px -25px;
    }

    .product-card {
        width: 290px;
    }

    .product-card .review-tag {
        font-size: 11.5px;
    }

    .product-card .review-tag svg {
        transform: translateY(0px);
    }

    .product-card .price {
        font-size: 11.5px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card .des {
        font-size: 12px;
    }

    .product-card .button-main {
        padding: 8px 14px;
    }

    
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */


    .product-card {
        width: 310px;
    }

    .product-card .review-tag {
        font-size: 12px;
    }

    .product-card .review-tag svg {
        transform: translateY(-1px);
    }

    .product-card .price {
        font-size: 12px;
    }

    .product-card h3 {
        font-size: 15px;
    }

    .product-card .des {
        font-size: 13px;
    }

}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    /* ==============================================================================

        PRODUCT SLIDER

    ============================================================================== */

    .product-slider {
        padding: 15px 25px;
        margin: -15px -25px;
    }

    .product-card {
        width: 265px;
    }

    .product-card .review-tag {
        font-size: 11.5px;
    }

    .product-card .review-tag svg {
        transform: translateY(0px);
    }

    .product-card .price {
        font-size: 11.5px;
    }

    .product-card h3 {
        font-size: 13.5px;
    }

    .product-card .des {
        font-size: 12px;
    }

    .product-card .button-main {
        padding: 8px 14px;
    }

    
}


/* ==============================================================================

  VALUE PROPOSITION

============================================================================== */

.value-proposition-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-prop {
    display: grid;
    grid-template-rows: 54px auto auto;
    text-align: center;
    justify-items: center;
    align-items: center;
}

.value-prop.bear img {
    height: 51px;
}

.value-prop.leaf img {
    height: 54px;
}

.value-prop.truck img {
    height: 38px;
}

.value-prop.tree img {
    height: 53px;
}

.value-prop h3 {
    margin-top: var(--g24);
    color: #110303;
    font-size: 16px;
    font-variation-settings: 'wght' 850;
    margin-bottom: var(--g6);
}

.value-prop p {
    line-height: 1.5;
    font-size: 13px;
    font-weight: 500;
    color: #5D5C5A;
}

/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    /* ==============================================================================

        VALUE PROPOSITION

    ============================================================================== */

    .value-prop {
        grid-template-rows: 49px auto auto;
    }

    .value-prop.bear img {
        height: 46px;
    }

    .value-prop.leaf img {
        height: 49px;
    }

    .value-prop.truck img {
        height: 34px;
    }

    .value-prop.tree img {
        height: 47px;
    }

    .value-prop h3 {
        font-size: 15px;
    }

    .value-prop p {
        font-size: 12px;
    }

   
}

@media (max-width: 1067px) {

    /* ==============================================================================

        VALUE PROPOSITION

    ============================================================================== */

    .value-proposition-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: var(--g80);
    }

    .value-prop {
        grid-template-rows: 54px auto auto;
    }

    .value-prop.bear img {
        height: 51px;
    }

    .value-prop.leaf img {
        height: 54px;
    }

    .value-prop.truck img {
        height: 38px;
    }

    .value-prop.tree img {
        height: 53px;
    }

    .value-prop h3 {
        font-size: 16px;
    }

    .value-prop p {
        font-size: 13px;
    }

}

@media (max-width: 703px) {

    /* ==============================================================================

        VALUE PROPOSITION

    ============================================================================== */

    .value-proposition-wrap {
        display: block !important;
        grid-template-columns: 1fr 1fr;
        row-gap: var(--g80);
    }

    .value-prop {
        margin-right: var(--g60);
        grid-template-rows: 49px auto auto;
    }

    .value-prop.bear img {
        height: 46px;
    }

    .value-prop.leaf img {
        height: 49px;
    }

    .value-prop.truck img {
        height: 34px;
    }

    .value-prop.tree img {
        height: 47px;
    }

    .value-prop h3 {
        font-size: 15px;
    }

    .value-prop p {
        font-size: 12px;
    }


}


/* =======================================
  BLOG
======================================= */

.blog-card {
    position: relative;
    width: 385px !important; 
    padding: var(--g24);
    margin-right: var(--g32);
    padding-bottom: var(--g32);
}

.blog-card.two {
    width: 390px;
}

.blog-card.two .blog-background {
    transform: scaleX(-1);
}

.blog-card * {
    position: relative;
}

.blog-background {
    transition: inherit;
    position: absolute;
    width: 101%;
    height: 103%;
    top: -1%;
    left: -1%;
}

.blog-background.two {
    transition: inherit;
    position: absolute;
    width: 103%;
    height: 103%;
    top: -1%;
    left: -1%;
}

.blog-card-image {
    position: relative;
    margin-bottom: var(--g20);
}

.blog-card-image > :first-child {
    border-radius: 4px;
    width: 100%;
}

.blog-card-image .tape {
    position: absolute !important;
    width: 113%;
    left: 51%;
    top: 51%;
    transform: translateX(-50%) translateY(-50%);
}

.blog-card-image.two .tape {
    left: 48%;
    top: 50%;
    width: 110%;
}

.blog-card h3 {
    color: var(--shade5);
    font-size: 16px;
    font-variation-settings: 'wght' 800;
    margin-top: var(--g4);
}

.blog-sub {
    font-size: 13px;
    font-variation-settings: 'wght' 500;
    margin-top: var(--g4);
}

.blog-card:hover {
    transform: rotate(1.5deg);
}

.blog-card.two:hover {
    transform: rotate(-1.5deg);
}

.g52 {
    gap: var(--g52);
}

@media (max-width: 1340px)  {
    /* =======================================
  BLOG
======================================= */

.blog-card {
    width: 365px !important; 
}

.blog-card.two {
    width: 370px;
}

.blog-card-image .tape {
    position: absolute !important;
    width: 113%;
    height: 120%;
    left: 51%;
    top: 51%;
    transform: translateX(-50%) translateY(-50%);
}

.blog-card-image.two .tape {
    left: 48%;
    height: 115%;
    top: 50%;
    width: 110%;
}

.blog-card-image {
    position: relative;
    margin-bottom: var(--g20);
}


.blog-card h3 {
    font-size: 14px;
    font-variation-settings: 'wght' 800;
    margin-top: var(--g4);
}

.blog-sub {
    font-size: 12px;
    font-variation-settings: 'wght' 500;
    margin-top: var(--g4);
}

.blog-card:hover {
    transform: rotate(1.5deg);
}

.blog-card.two:hover {
    transform: rotate(-1.5deg);
}
}


@media (max-width: 753px) {
    .blog-section > :first-child {
        flex-direction: column !important;
        align-items: flex-start;
        gap: var(--g20);
    }
}

.blog-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-section-grid .blog-card {
    margin-right: 0;
    max-width: 384px;
    width: 100% !important;
}

.blog-page-blog-wrap > :first-child p {
    white-space: nowrap;
}


@media (max-width: 1340px) {
    .blog-page-blog-wrap {
        flex-direction: column;
    }

    .blog-section-grid {
        flex-wrap: wrap;
        display: flex;
    }

    .blog-section-grid .blog-card {
        max-width: 384px;
    }
}







.policy-footer {
    padding-top: var(--g32) !important;
    padding-bottom: var(--g32) !important;
    background-color: #1C1C1C;
}

.policies-wrap {
    width: 900px;
}

.policies-wrap h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--shade1);
}

.policies-wrap h2.small {
    font-size: 16px;
}

.last-updated {
    margin-top: var(--g12);
    margin-bottom: var(--g40);
}

.policies-wrap span {
    font-weight: 600;
    color: var(--shade3);
}

.g32 {
    gap: var(--g32);
}


.contact-wrap {
    box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 6%), 0px 1px 1px 0px rgba(0, 0, 0, 2%), 0px 1px 7px 0px rgba(0, 0, 0, 10%);
    border-radius: var(--br10);
    flex: 1;
    padding: var(--g24);
    background-color: #FFFEFE;
}

.flex {
    flex: 1;
}

.contact-wrap textarea,
.contact-wrap input {
    color: var(--shade3);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--br6);
    outline: 4px solid transparent;
    border: 1px solid hsl(0, 0%, 0%, .14);
    padding: var(--g10);
}

.contact-wrap input {
    height: 36px;
}

.contact-wrap textarea {
    height: 100px;
}

.contact-wrap label {
    font-size: 13px;
    font-weight: 600;
}


.contact-wrap textarea:hover,
.contact-wrap input:hover {
    border: 1px solid hsl(0, 0%, 0%, .3);
    background-color: white;
}

.contact-wrap textarea:focus
.contact-wrap input:focus {
    outline: 4px solid hsl(0, 0%, 0%, .12);
    border-color: transparent;
} 

.contact-wrap input::placeholder {
    color: var(--shade20) !important;
    font-weight: 400;
}

.contact-wrap input:focus::placeholder,
.contact-wrap input:hover::placeholder {
    color: var(--shade14) !important;
}

@media (max-width: 1100px) {
    .contact-form {
        gap: var(--g32) !important;
        flex-direction: column;
    }

    .contact-form .contact-wrap {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-wrap > :first-child {
        flex-direction: column;
        align-items: stretch;
    }
}

.a-c {
    align-items: center;
}

.order-confirmation {
    text-align: center;
    height: 100%;
}

.f-h {
    height: 100%;
}

.order-confirmation img {
    width: 350px;
    margin-bottom: var(--g20);
}

.order-confirmation a {
    margin-top: var(--g16);
}