@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:'Outfit',sans-serif;
    color:#333;
    background:#f5f0eb;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}
a{color:#333;text-decoration:none}
a:hover{opacity:.8}
img{max-width:100%;height:auto;display:block}

.menu--top-header{
    background:#ebe4db;
    font-size:12px;
    color:#666;
    padding:8px 0;
}
.menu--top-header--wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}
.top-header__left{
    font-family:'Outfit',sans-serif;
    font-size:12px;
    color:#888;
    font-weight:400;
    letter-spacing:.3px;
}
.top-header__right{
    display:flex;
    gap:18px;
    align-items:center;
}
.top-header__right a{
    font-size:12px;
    color:#666;
    font-weight:400;
}

.header{
    background:#fff;
    position:sticky;
    width:100%;
    top:0;
    z-index:100;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.region-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    height:70px;
}
.branding__logo{
    max-height:42px;
    width:auto;
}
.branding__link{
    display:flex;
    align-items:center;
    gap:0;
}
.branding__logo{
    height:40px;
    width:auto;
    display:block;
}

.header-navigation__list{
    list-style:none;
    margin:0;padding:0;
    display:flex;
    align-items:center;
    gap:4px;
}
.header-navigation__item a{
    color:#333;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    font-family:'Outfit',sans-serif;
    padding:8px 14px;
    border-radius:20px;
    -webkit-transition:all .2s ease;
    transition:all .2s ease;
}
.header-navigation__item a:hover{
    color:#d4982a;
    background:rgba(212,152,42,.06);
    opacity:1;
}
.header-navigation__item--active a{
    color:#d4982a;
    font-weight:600;
}

.hdr_rightArea{
    display:flex;
    align-items:center;
    gap:16px;
}
.cart_trigger{
    position:relative;
    cursor:pointer;
    background:none;
    border:none;
    display:flex;
    align-items:center;
    gap:4px;
    font-family:'Outfit',sans-serif;
    font-size:14px;
    color:#333;
    padding:8px 12px;
    border-radius:20px;
    -webkit-transition:background .2s;
    transition:background .2s;
}
.cart_trigger:hover{background:rgba(0,0,0,.04)}
.cart_trigger i{font-size:20px}
.cart_badge{
    position:absolute;top:2px;right:2px;
    background:#c0392b;color:#fff;
    font-size:10px;font-weight:700;
    width:18px;height:18px;
    border-radius:50%;
    display:none;
    align-items:center;justify-content:center;
    line-height:1;
    font-family:'DM Sans',sans-serif;
}

.burger-menu{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
    font-size:24px;
    color:#1a1a1a;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    border:none;
    font-family:'Outfit',sans-serif;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
    line-height:1.4;
}
.btn--bg-yellow{
    background:#d4982a;
    color:#fff;
}
.btn--bg-yellow:hover{
    background:#c08a22;
    transform:translateY(-1px);
    box-shadow:0 4px 12px rgba(212,152,42,.35);
    opacity:1;
}
.btn--bg-transparent{
    background:transparent;
    border:2px solid #333;
    color:#333;
}
.btn--bg-transparent:hover{
    background:#333;
    color:#fff;
    opacity:1;
}
.btn--smaller{
    padding:8px 16px;
    font-size:13px;
}
.btn i{font-size:16px}

.link--yellow{
    color:#d4982a;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    border-bottom:2px solid #d4982a;
    padding-bottom:2px;
}
.link--yellow:hover{
    color:#c08a22;
    border-color:#c08a22;
    opacity:1;
}

.home-meet-lattiz{
    position:relative;
    min-height:80vh;
    overflow:hidden;
    background:#2a2018;
}
.block-bg-video__wrapper{
    position:absolute;
    top:0;left:0;
    width:100%;height:100%;
    background-size:cover;
    background-position:center;
    opacity:.55;
}
.home-meet-lattiz__content{
    position:relative;
    z-index:2;
    padding:160px 40px 80px;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
.home-meet-lattiz__title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.08;
    margin:0 0 20px;
    font-family:'DM Sans',sans-serif;
}
.home-meet-lattiz__sub{
    font-size:17px;
    color:rgba(255,255,255,.85);
    font-weight:400;
    margin:0 0 32px;
    line-height:1.6;
}
.home-meet-lattiz__ctas{
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
    justify-content:center;
}

.reviews-slider{
    padding:40px 0 30px;
    max-width:1200px;
    margin:0 auto;
    overflow:hidden;
}
.reviews-slider__inner{
    display:flex;
    gap:0;
    align-items:stretch;
}
.review-tile{
    text-align:center;
    padding:30px 24px;
    flex:1;
    min-width:0;
}
.review-tile__review{
    font-size:16px;
    font-style:italic;
    line-height:1.55;
    color:#444;
    margin-bottom:18px;
    font-family:'DM Sans',sans-serif;
    font-weight:400;
}
.review-tile__reviewer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}
.review-tile__avatar{
    width:42px;height:42px;
    border-radius:50%;
    background:#d4982a;
    display:flex;
    align-items:center;justify-content:center;
    color:#fff;
    font-family:'DM Sans',sans-serif;
    font-size:15px;font-weight:700;
}
.review-tile__info{}
.review-tile__name{
    font-weight:700;
    font-size:14px;
    color:#1a1a1a;
    font-family:'DM Sans',sans-serif;
}
.review-tile__job{
    font-size:12px;
    color:#888;
    font-weight:400;
}

.benefits{
    padding:5rem 0 4.5rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}
.benefits__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:40px;
    gap:40px;
}
.benefits__title{
    font-size:36px;
    font-weight:800;
    color:#1a1a1a;
    line-height:1.15;
    font-family:'DM Sans',sans-serif;
    margin:0;
    max-width:420px;
}
.benefits__description{
    font-size:16px;
    line-height:1.65;
    color:#555;
    max-width:480px;
}
.benefits__link{margin-top:14px;display:inline-block}

.benefits-carousel__wrapper{
    display:flex;
    gap:24px;
}
.benefits-tile{
    border-radius:12px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    flex:1;
    -webkit-transition:transform .3s ease;
    transition:transform .3s ease;
}
.benefits-tile:hover{
    transform:translateY(-4px);
}
.benefits-tile__figure{
    margin:0;
    overflow:hidden;
    height:240px;
    background:#e8e0d5;
    display:flex;
    align-items:center;
    justify-content:center;
}
.benefits-tile__figure i{
    font-size:64px;
    color:#d4982a;
    opacity:.7;
}
.benefits-tile__wrapper{
    padding:22px;
    background:#fff;
}
.benefits-tile__title{
    font-size:18px;
    font-weight:700;
    display:block;
    margin-bottom:8px;
    color:#1a1a1a;
    font-family:'DM Sans',sans-serif;
}
.benefits-tile__description{
    font-size:14px;
    color:#666;
    line-height:1.55;
}

.bcp{
    background:#d4982a;
    padding:56px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border-radius:16px;
    margin:0 auto;
    max-width:1160px;
}
.bcp__content{
    position:relative;
    z-index:2;
}
.bcp__title-thin{
    font-size:22px;
    font-weight:300;
    color:#fff;
    margin:0;
    font-family:'Outfit',sans-serif;
}
.bcp__title{
    font-size:36px;
    font-weight:800;
    color:#fff;
    margin:0;
    font-family:'DM Sans',sans-serif;
}
.bcp__subtitle{
    font-size:16px;
    font-weight:400;
    color:rgba(255,255,255,.9);
    margin:10px 0 24px;
}
.bcp__deco{
    position:absolute;
    font-size:120px;
    color:rgba(255,255,255,.08);
}
.bcp__deco--tl{top:-15px;left:20px}
.bcp__deco--br{bottom:-15px;right:20px}

.general-information{
    padding:3.5rem 0 3.75rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}
.general-information__title{
    font-size:32px;
    font-weight:800;
    color:#1a1a1a;
    margin-bottom:40px;
    text-align:center;
    font-family:'DM Sans',sans-serif;
}
.general-information__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
.general-information-tile{
    text-align:center;
    padding:0 8px;
}
.general-information-tile__icon{
    width:80px;height:80px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;justify-content:center;
    margin:0 auto 18px;
    box-shadow:0 4px 16px rgba(0,0,0,.06);
}
.general-information-tile__icon i{
    font-size:32px;
    color:#d4982a;
}
.general-information-tile__num{
    font-family:'DM Sans',sans-serif;
    font-size:28px;
    font-weight:800;
    color:#d4982a;
    margin-bottom:6px;
}
.general-information-tile__title{
    font-size:16px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:10px;
    font-family:'DM Sans',sans-serif;
}
.general-information-tile__data{
    font-size:14px;
    color:#666;
    line-height:1.6;
    font-weight:400;
}

.products-list-component{
    padding:55px 0 3.5rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}
.products-list-component__title{
    font-size:32px;
    font-weight:800;
    color:#1a1a1a;
    text-align:center;
    margin-bottom:12px;
    font-family:'DM Sans',sans-serif;
}
.products-list-component__sub{
    text-align:center;
    font-size:15px;
    color:#888;
    margin-bottom:36px;
    font-weight:400;
}

.products-list__wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.product-teaser{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    -webkit-transition:transform .3s ease, box-shadow .3s ease;
    transition:transform .3s ease, box-shadow .3s ease;
    position:relative;
    cursor:pointer;
}
.product-teaser:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,.1);
}

.product-teaser__badge{
    position:absolute;top:14px;left:14px;
    background:#c0392b;color:#fff;
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    padding:4px 12px;
    border-radius:15px;
    letter-spacing:.5px;
    text-transform:uppercase;
    z-index:2;
}

.product-teaser__image{
    padding:24px 18px 16px;
    position:relative;
    background:#faf6f1;
    min-height:200px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.product-teaser__image-shape{
    position:absolute;
    bottom:0;left:50%;
    transform:translateX(-50%);
    width:160px;height:80px;
    background:#d4982a;
    border-radius:160px 160px 0 0;
    opacity:.12;
}
.product-teaser__image i{
    font-size:72px;
    color:#8b7355;
    position:relative;z-index:2;
    opacity:.65;
}

.product-teaser__summary{
    padding:18px 18px 22px;
}
.product-teaser__label{
    font-size:12px;
    color:#d4982a;
    font-weight:600;
    margin-bottom:4px;
}
.product-teaser__name{
    font-size:16px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:6px;
    font-family:'DM Sans',sans-serif;
}
.product-teaser__specs{
    font-size:12px;
    color:#999;
    font-weight:400;
    margin-bottom:10px;
    line-height:1.45;
}
.product-teaser__priceRow{
    display:flex;
    align-items:baseline;
    gap:8px;
    justify-content:center;
    margin-bottom:10px;
}
.product-teaser__price{
    font-family:'DM Sans',sans-serif;
    font-size:20px;
    font-weight:800;
    color:#1a1a1a;
}
.product-teaser__oldprice{
    font-family:'Outfit',sans-serif;
    font-size:14px;
    color:#bbb;
    text-decoration:line-through;
    font-weight:400;
}
.product-teaser__stock{
    font-size:12px;
    color:#4a7c59;
    font-weight:500;
    margin-bottom:14px;
}
.product-teaser__stock.outOfStock{color:#c0392b}
.product-teaser__cartBtn{
    border:none;
    background:#d4982a;
    color:#fff;
    padding:10px 20px;
    border-radius:25px;
    font-family:'Outfit',sans-serif;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    -webkit-transition:all .2s ease;
    transition:all .2s ease;
    width:calc(100% - 36px);
    margin:0 auto;
    display:block;
}
.product-teaser__cartBtn:hover{
    background:#c08a22;
    transform:translateY(-1px);
}

.serving_section{
    padding:3.75rem 0 3.25rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.serving_section__title{
    font-size:32px;
    font-weight:800;
    color:#1a1a1a;
    margin-bottom:36px;
    text-align:center;
    font-family:'DM Sans',sans-serif;
}
.serving_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.serving_tile{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    padding:30px 20px;
    -webkit-transition:transform .3s;
    transition:transform .3s;
}
.serving_tile:hover{transform:translateY(-3px)}
.serving_tile__icon{
    width:64px;height:64px;
    border-radius:50%;
    background:rgba(212,152,42,.1);
    display:flex;
    align-items:center;justify-content:center;
    margin:0 auto 16px;
}
.serving_tile__icon i{
    font-size:26px;
    color:#d4982a;
}
.serving_tile__title{
    font-size:15px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:8px;
    font-family:'DM Sans',sans-serif;
}
.serving_tile__desc{
    font-size:13px;
    color:#888;
    line-height:1.55;
    font-weight:400;
}

.home-testimonials{
    padding:4rem 0 4.375rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.home-testimonials__header{margin-bottom:36px}
.home-testimonials__title{
    font-size:32px;
    font-weight:800;
    color:#1a1a1a;
    margin:0 0 8px;
    font-family:'DM Sans',sans-serif;
}
.home-testimonials__description{
    font-size:15px;
    color:#888;
    margin:0;
    font-weight:400;
}
.testimonials-carousel-slide{
    display:flex;
    gap:32px;
    align-items:flex-start;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
}
.testimonials-carousel-slide__figure{
    flex-shrink:0;
    margin:0;
    overflow:hidden;
    background:#e8e0d5;
    min-height:320px;
    width:420px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.testimonials-carousel-slide__figure i{
    font-size:80px;
    color:#d4982a;
    opacity:.4;
}
.testimonials-carousel-slide__body{
    padding:36px 30px 36px 0;
    flex:1;
}
.testimonials-carousel-slide__title{
    font-size:20px;
    font-weight:700;
    color:#1a1a1a;
    margin:0 0 4px;
    font-family:'DM Sans',sans-serif;
}
.testimonials-carousel-slide__subtitle{
    font-size:14px;
    color:#888;
    font-weight:400;
    margin:0 0 18px;
}
.testimonials-carousel-slide__desc{
    font-size:15px;
    color:#444;
    line-height:1.65;
    font-style:italic;
    margin:0 0 20px;
    font-family:'DM Sans',sans-serif;
    font-weight:400;
}

.inspiration-overview{
    background:#d4982a;
    padding:4.25rem 0 4.5rem;
    color:#fff;
}
.inspiration-overview__wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}
.inspiration-overview__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:36px;
    gap:40px;
}
.inspiration-overview__title{
    font-size:34px;
    font-weight:800;
    color:#fff;
    margin:0;
    font-family:'DM Sans',sans-serif;
}
.inspiration-overview__desc{
    font-size:15px;
    line-height:1.6;
    color:rgba(255,255,255,.88);
    max-width:420px;
}
.inspiration-overview__articles{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.inspiration-article{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    color:#333;
    -webkit-transition:transform .3s;
    transition:transform .3s;
}
.inspiration-article:hover{transform:translateY(-3px)}
.inspiration-article__fig{
    margin:0;
    height:180px;
    background:#f0ebe4;
    display:flex;
    align-items:center;justify-content:center;
}
.inspiration-article__fig i{
    font-size:48px;
    color:#d4982a;
    opacity:.45;
}
.inspiration-article__content{
    padding:18px 20px 22px;
}
.inspiration-article__type{
    font-size:11px;
    color:#d4982a;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:6px;
}
.inspiration-article__title{
    font-size:16px;
    font-weight:700;
    color:#1a1a1a;
    margin:0 0 8px;
    font-family:'DM Sans',sans-serif;
}
.inspiration-article__desc{
    font-size:13px;
    color:#888;
    line-height:1.55;
}

.highlight-block{
    padding:4.25rem 0 4rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.highlight-block__header{
    display:flex;
    gap:48px;
    align-items:flex-start;
    margin-bottom:36px;
}
.highlight-block__desc{flex:1}
.highlight-block__title{
    font-size:34px;
    font-weight:800;
    color:#1a1a1a;
    margin:0 0 12px;
    font-family:'DM Sans',sans-serif;
}
.highlight-block__description{
    font-size:15px;
    color:#555;
    line-height:1.65;
    margin:0 0 20px;
}
.highlight-block__main{flex:1}
.highlight-block__details{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.highlight-block__line{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:15px;
    font-weight:600;
    color:#1a1a1a;
}
.highlight-block__icon{
    width:48px;height:48px;
    border-radius:50%;
    background:rgba(212,152,42,.1);
    display:flex;
    align-items:center;justify-content:center;
    flex-shrink:0;
}
.highlight-block__icon i{
    font-size:22px;
    color:#d4982a;
}
.highlight-block__body{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:36px;
}
.highlight-block__block{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    -webkit-transition:transform .3s;
    transition:transform .3s;
}
.highlight-block__block:hover{transform:translateY(-3px)}
.highlight-block__block-visual{
    height:180px;
    background:#f0ebe4;
    display:flex;
    align-items:center;justify-content:center;
}
.highlight-block__block-visual i{
    font-size:48px;
    color:#d4982a;
    opacity:.4;
}
.highlight-block__block-title{
    font-size:16px;
    font-weight:700;
    padding:16px 18px 6px;
    font-family:'DM Sans',sans-serif;
    color:#1a1a1a;
}
.highlight-block__block-description{
    font-size:13px;
    color:#888;
    padding:0 18px 18px;
    line-height:1.55;
}

.webform{
    padding:4.25rem 0 4rem;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.form__wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
}
.form__main{
    flex:1;
    padding:36px;
}
.form__title{
    font-size:26px;
    font-weight:800;
    color:#1a1a1a;
    margin:0 0 6px;
    font-family:'DM Sans',sans-serif;
}
.form__subtitle{
    font-size:14px;
    color:#888;
    margin:0 0 24px;
    font-weight:400;
}
.form__row{margin-bottom:14px}
.form__row--2col{
    display:flex;
    gap:14px;
}
.form__row--2col .form__field{flex:1}
.form__label{
    display:block;
    font-size:13px;
    color:#444;
    margin-bottom:5px;
    font-weight:500;
}
.form__input{
    width:100%;
    padding:10px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    font-family:'Outfit',sans-serif;
    -webkit-transition:border-color .2s;
    transition:border-color .2s;
    background:#faf9f7;
    color:#333;
}
.form__input:focus{
    border-color:#d4982a;
    outline:none;
    background:#fff;
}
.form__textarea{
    width:100%;
    padding:10px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    font-family:'Outfit',sans-serif;
    resize:vertical;
    min-height:70px;
    -webkit-transition:border-color .2s;
    transition:border-color .2s;
    background:#faf9f7;
}
.form__textarea:focus{
    border-color:#d4982a;
    outline:none;
    background:#fff;
}

.payBlock{
    margin:18px 0 0;
    padding:18px;
    border:1px solid #eee;
    border-radius:10px;
    background:#faf9f7;
}
.payBlock__title{
    font-family:'DM Sans',sans-serif;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#1a1a1a;
    margin-bottom:12px;
}
.payOpt{
    display:flex;
    align-items:flex-start;
    gap:8px;
    padding:8px 0;
    border-bottom:1px solid #f0f0f0;
    cursor:pointer;
}
.payOpt:last-child{border-bottom:none}
.payOpt input[type="radio"]{
    margin-top:3px;
    accent-color:#d4982a;
}
.payOpt__name{
    font-size:14px;
    font-weight:600;
    color:#1a1a1a;
}
.payOpt__desc{
    font-size:12px;
    color:#999;
    font-weight:400;
    margin-top:2px;
}

.form__aside{
    flex-shrink:0;
    width:340px;
    background:#faf6f1;
    min-height:100%;
    padding:36px 28px;
}
.summBox__title{
    font-family:'DM Sans',sans-serif;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#1a1a1a;
    margin-bottom:14px;
    padding-bottom:10px;
    border-bottom:1px solid #e0d8ce;
}
.summBox__items{}
.summBox__empty{
    font-size:13px;
    color:#bbb;
    font-weight:400;
    padding:16px 0;
}
.summItem{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid #ebe4da;
}
.summItem__name{
    font-size:13px;
    color:#555;
    font-weight:400;
}
.summItem__total{
    font-family:'DM Sans',sans-serif;
    font-size:13px;
    font-weight:700;
    color:#1a1a1a;
}
.summBox__totalRow{
    display:flex;
    justify-content:space-between;
    padding:14px 0 8px;
    font-family:'DM Sans',sans-serif;
    font-size:15px;
    font-weight:800;
    color:#1a1a1a;
}
.summBox__note{
    font-size:11px;
    color:#aaa;
    font-weight:400;
    margin-top:6px;
    line-height:1.5;
}

.thankYou_overlay{
    position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,.5);
    z-index:10000;
    display:none;
    align-items:center;justify-content:center;
    padding:20px;
}
.thankYou_overlay.open{display:flex}
.thankYou_box{
    background:#fff;
    border-radius:16px;
    max-width:480px;
    width:100%;
    text-align:center;
    padding:48px 36px;
}
.thankYou_icon{
    font-size:56px;
    color:#4a7c59;
    margin-bottom:16px;
}
.thankYou_title{
    font-family:'DM Sans',sans-serif;
    font-size:22px;
    font-weight:800;
    color:#1a1a1a;
    margin-bottom:12px;
}
.thankYou_txt{
    font-size:14px;
    color:#888;
    line-height:1.65;
    font-weight:400;
    margin-bottom:24px;
}
.thankYou_close{
    position:absolute;top:16px;right:20px;
    font-size:24px;cursor:pointer;color:#aaa;
}

.prodModal_overlay{
    position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,.55);
    z-index:10000;
    display:none;
    align-items:center;justify-content:center;
    padding:20px;
}
.prodModal_overlay.open{display:flex}
.prodModal_box{
    background:#fff;
    max-width:780px;
    width:100%;
    max-height:90vh;
    overflow-y:auto;
    position:relative;
    border-radius:16px;
}
.prodModal_close{
    position:absolute;top:14px;right:18px;
    font-size:24px;cursor:pointer;color:#888;z-index:2;
}
.prodModal_content{
    display:flex;
    gap:0;
}
.prodModal_imgWrap{
    flex:1;
    background:#faf6f1;
    min-height:300px;
    display:flex;
    align-items:center;justify-content:center;
    position:relative;
}
.prodModal_imgWrap i{
    font-size:80px;
    color:#8b7355;
    opacity:.5;
}
.prodModal_imgWrap .product-teaser__badge{
    position:absolute;top:16px;left:16px;
}
.prodModal_info{
    flex:1;
    padding:32px 28px;
    display:flex;flex-direction:column;
}
.prodModal_name{
    font-family:'DM Sans',sans-serif;
    font-size:20px;font-weight:800;
    color:#1a1a1a;
    margin-bottom:6px;
}
.prodModal_specs{
    font-size:13px;
    color:#999;
    font-weight:400;
    margin-bottom:10px;
    line-height:1.5;
}
.prodModal_desc{
    font-size:14px;
    color:#555;
    line-height:1.65;
    margin-bottom:14px;
    font-weight:400;
}
.prodModal_stock{
    font-size:13px;
    color:#4a7c59;
    font-weight:500;
    margin-bottom:14px;
}
.prodModal_stock.outOfStock{color:#c0392b}
.prodModal_priceRow{
    display:flex;align-items:baseline;gap:10px;
    margin-bottom:18px;
}
.prodModal_qtyRow{
    display:flex;align-items:center;gap:10px;
    margin-bottom:18px;
}
.prodModal_qtyRow label{
    font-size:13px;font-weight:600;color:#1a1a1a;
}
.prodModal_qtySel{
    width:64px;
    padding:6px 8px;
    border:1px solid #ddd;
    border-radius:6px;
    font-family:'Outfit',sans-serif;
    font-size:14px;
}
.prodModal_addBtn{
    width:100%;
    margin-top:auto;
}

.cartPanel_overlay{
    position:fixed;top:0;right:0;bottom:0;left:0;
    background:rgba(0,0,0,.4);
    z-index:10001;
    display:none;
}
.cartPanel_overlay.open{display:block}
.cartPanel_box{
    position:absolute;
    right:0;top:0;bottom:0;
    width:380px;
    max-width:100vw;
    background:#fff;
    display:flex;flex-direction:column;
    box-shadow:-4px 0 20px rgba(0,0,0,.1);
}
.cartPanel_hdr{
    display:flex;justify-content:space-between;align-items:center;
    padding:20px 24px;
    border-bottom:1px solid #eee;
}
.cartPanel_title{
    font-family:'DM Sans',sans-serif;
    font-size:16px;font-weight:800;
    letter-spacing:1px;text-transform:uppercase;
}
.cartPanel_close{
    font-size:22px;cursor:pointer;color:#888;
    background:none;border:none;
}
.cartPanel_items{
    flex:1;overflow-y:auto;
    padding:14px 24px;
}
.cartPanel_empty{
    font-size:14px;color:#bbb;
    text-align:center;
    padding:40px 0;
    font-weight:400;
}
.cartItem_row{
    display:flex;justify-content:space-between;align-items:center;
    padding:12px 0;
    border-bottom:1px solid #f5f0eb;
}
.cartItem_name{
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:700;
    color:#1a1a1a;margin-bottom:2px;
}
.cartItem_price{
    font-size:12px;color:#888;font-weight:400;
}
.cartItem_controls{
    display:flex;align-items:center;gap:5px;
}
.cartItem_qtyBtn{
    width:26px;height:26px;
    border:1px solid #ddd;background:transparent;
    cursor:pointer;font-size:14px;
    display:flex;align-items:center;justify-content:center;
    border-radius:6px;
    font-family:'Outfit',sans-serif;
    color:#333;
    -webkit-transition:background .15s;
    transition:background .15s;
}
.cartItem_qtyBtn:hover{background:#f5f0eb}
.cartItem_qty{
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:700;
    min-width:20px;text-align:center;
}
.cartItem_removeBtn{
    border:none;background:transparent;cursor:pointer;
    color:#ccc;display:flex;align-items:center;
    margin-left:4px;font-size:18px;
    -webkit-transition:color .15s;
    transition:color .15s;
}
.cartItem_removeBtn:hover{color:#c0392b}
.cartPanel_footer{
    padding:18px 24px;
    border-top:1px solid #eee;
}
.cartPanel_totalRow{
    display:flex;justify-content:space-between;
    font-family:'DM Sans',sans-serif;
    font-size:15px;font-weight:800;
    margin-bottom:14px;
}
.cartPanel_checkBtn{
    display:block;width:100%;text-align:center;
}

.cartNotif_bar{
    position:fixed;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    background:#1a1a1a;
    color:#fff;
    padding:12px 24px;
    font-family:'Outfit',sans-serif;
    font-size:13px;font-weight:600;
    display:flex;align-items:center;gap:8px;
    border-radius:25px;
    z-index:10002;
    -webkit-transition:bottom .3s;
    transition:bottom .3s;
    white-space:nowrap;
}
.cartNotif_bar i{font-size:18px;color:#4a7c59}
.cartNotif_bar.show{bottom:30px}

.numbers_strip{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
    display:flex;
    justify-content:center;
    gap:60px;
    text-align:center;
}
.numbers_strip__item{}
.numbers_strip__val{
    font-family:'DM Sans',sans-serif;
    font-size:36px;
    font-weight:800;
    color:#d4982a;
    line-height:1.1;
}
.numbers_strip__label{
    font-size:13px;
    color:#888;
    font-weight:400;
    margin-top:4px;
}

.request-demo{
    padding:60px 0;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.request-demo__wrap{
    display:flex;
    gap:0;
    align-items:center;
    background:#1a1a1a;
    border-radius:16px;
    overflow:hidden;
}
.request-demo__visual{
    flex-shrink:0;
    width:380px;
    min-height:280px;
    background:#2a2018;
    display:flex;
    align-items:center;justify-content:center;
}
.request-demo__visual i{
    font-size:80px;
    color:#d4982a;
    opacity:.35;
}
.request-demo__content{
    padding:40px 44px;
    flex:1;
}
.request-demo__title{
    font-size:26px;
    font-weight:800;
    color:#fff;
    margin:0 0 10px;
    font-family:'DM Sans',sans-serif;
}
.request-demo__text{
    font-size:15px;
    color:rgba(255,255,255,.7);
    margin:0 0 22px;
    line-height:1.6;
}

.footer{
    position:relative;
    overflow:hidden;
    background:#1a1a1a;
    margin-top:40px;
}
.region-top-footer{
    padding:60px 0 30px;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;padding-right:20px;
}
.main-footer{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}
.ftr_col{flex:1;min-width:180px}
.ftr_col__title{
    font-family:'DM Sans',sans-serif;
    font-size:13px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}
.footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-menu__item a{
    color:rgba(255,255,255,.6);
    text-decoration:none;
    font-size:14px;
    display:block;
    padding:4px 0;
    font-weight:400;
    -webkit-transition:color .15s;
    transition:color .15s;
}
.footer-menu__item a:hover{
    color:#fff;
    opacity:1;
}
.ftr_contact{
    font-size:14px;
    color:rgba(255,255,255,.6);
    line-height:1.8;
    font-weight:400;
}
.ftr_contact a{
    color:rgba(255,255,255,.6);
    -webkit-transition:color .15s;
    transition:color .15s;
}
.ftr_contact a:hover{color:#fff;opacity:1}

.footer-legals{
    border-top:1px solid rgba(255,255,255,.1);
    padding:20px 0;
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}
.footer-legals__list{
    list-style:none;
    padding:0;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.footer-legals__item a{
    color:rgba(255,255,255,.4);
    text-decoration:none;
    font-size:12px;
    -webkit-transition:color .15s;
    transition:color .15s;
}
.footer-legals__item a:hover{color:rgba(255,255,255,.8);opacity:1}
.footer-copy{
    font-size:11px;
    color:rgba(255,255,255,.3);
    font-weight:400;
}

.ckBanner_wrap{
    position:fixed;
    bottom:0;left:0;right:0;
    z-index:99999;
    display:none;
}
.ckBanner_box{
    max-width:1100px;
    margin:0 auto;
    background:#1a1a1a;
    color:#fff;
    padding:20px 28px;
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    border-radius:16px 16px 0 0;
    box-shadow:0 -4px 20px rgba(0,0,0,.15);
}
.ckBanner_txt{
    flex:1;
    font-size:13px;
    font-weight:400;
    line-height:1.6;
    min-width:250px;
    color:rgba(255,255,255,.7);
}
.ckBanner_txt a{
    color:#fff;
    text-decoration:underline;
}
.ckBanner_btns{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.ckBtn{
    padding:10px 18px;
    font-family:'Outfit',sans-serif;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    border-radius:20px;
    -webkit-transition:opacity .15s;
    transition:opacity .15s;
    border:none;
}
.ckBtn:hover{opacity:.85}
.ckBtn--accept{background:#d4982a;color:#fff}
.ckBtn--reject{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.3)}
.ckBtn--settings{background:transparent;color:rgba(255,255,255,.6);border:1px solid rgba(255,255,255,.15)}

.ckSettings_overlay{
    position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,.5);
    z-index:100000;
    display:none;
    align-items:center;justify-content:center;
    padding:20px;
}
.ckSettings_overlay.open{display:flex}
.ckSettings_box{
    background:#fff;
    max-width:480px;
    width:100%;
    max-height:90vh;
    overflow-y:auto;
    border-radius:16px;
}
.ckSettings_hdr{
    display:flex;justify-content:space-between;align-items:center;
    padding:20px 24px;
    border-bottom:1px solid #eee;
}
.ckSettings_title{
    font-family:'DM Sans',sans-serif;
    font-size:15px;font-weight:700;
    color:#1a1a1a;
}
.ckSettings_close{
    font-size:22px;cursor:pointer;color:#888;
    background:none;border:none;
}
.ckSettings_body{padding:14px 24px}
.ckOpt_row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #f5f0eb;
}
.ckOpt_row:last-child{border-bottom:none}
.ckOpt_name{
    font-size:14px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:3px;
    font-family:'DM Sans',sans-serif;
}
.ckOpt_desc{
    font-size:12px;
    color:#999;
    font-weight:400;
    line-height:1.5;
}
.ckToggle_label{
    position:relative;
    display:inline-block;
    width:44px;height:24px;
    cursor:pointer;
    flex-shrink:0;
}
.ckToggle_label input{opacity:0;width:0;height:0}
.ckToggle_slider{
    position:absolute;top:0;left:0;right:0;bottom:0;
    background:#ddd;
    -webkit-transition:background .2s;
    transition:background .2s;
    border-radius:12px;
}
.ckToggle_slider:before{
    content:"";
    position:absolute;
    height:18px;width:18px;
    left:3px;bottom:3px;
    background:#fff;
    -webkit-transition:transform .2s;
    transition:transform .2s;
    border-radius:50%;
}
.ckToggle_label input:checked + .ckToggle_slider{background:#d4982a}
.ckToggle_label input:checked + .ckToggle_slider:before{transform:translateX(20px)}
.ckToggle_locked{background:#4a7c59;cursor:not-allowed}
.ckToggle_locked:before{transform:translateX(20px)}
.ckSettings_ftr{
    display:flex;gap:8px;
    padding:14px 24px 20px;
    border-top:1px solid #eee;
}
.ckSettings_ftr .ckBtn{flex:1;text-align:center}

.mobNav_overlay{
    position:fixed;top:0;right:0;bottom:0;left:0;
    background:rgba(0,0,0,.45);
    z-index:9999;
    display:none;
}
.mobNav_overlay.open{display:block}
.mobNav_panel{
    position:absolute;
    right:0;top:0;bottom:0;
    width:280px;
    background:#fff;
    padding:60px 28px 28px;
    display:flex;flex-direction:column;gap:6px;
}
.mobNav_panel a{
    font-family:'DM Sans',sans-serif;
    font-size:15px;
    font-weight:600;
    color:#1a1a1a;
    padding:10px 0;
    border-bottom:1px solid #f5f0eb;
}
.mobNav_close{
    position:absolute;top:16px;right:20px;
    font-size:24px;cursor:pointer;color:#888;
    background:none;border:none;
}

@media (max-width:959px){
    .header-navigation{display:none}
    .burger-menu{display:block}
    .benefits__header{flex-direction:column}
    .benefits-carousel__wrapper{flex-direction:column}
    .products-list__wrapper{grid-template-columns:repeat(2,1fr)}
    .general-information__grid{grid-template-columns:repeat(2,1fr)}
    .serving_grid{grid-template-columns:repeat(2,1fr)}
    .form__wrapper{flex-direction:column}
    .form__aside{width:100%}
    .request-demo__wrap{flex-direction:column}
    .request-demo__visual{width:100%;min-height:200px}
    .highlight-block__header{flex-direction:column;gap:24px}
    .highlight-block__body{grid-template-columns:repeat(2,1fr)}
    .testimonials-carousel-slide{flex-direction:column}
    .testimonials-carousel-slide__figure{width:100%;min-height:220px}
    .testimonials-carousel-slide__body{padding:24px}
    .inspiration-overview__header{flex-direction:column}
    .inspiration-overview__articles{grid-template-columns:repeat(2,1fr)}
    .home-meet-lattiz__title{font-size:38px}
    .main-footer{gap:30px}
    .reviews-slider__inner{flex-direction:column}
    .numbers_strip{gap:30px;flex-wrap:wrap}
    .prodModal_content{flex-direction:column}
    .prodModal_imgWrap{min-height:200px}
    .prodModal_info{padding:24px}
}

@media (max-width:767px){
    .home-meet-lattiz__title{font-size:30px}
    .home-meet-lattiz__content{padding:120px 20px 60px}
    .home-meet-lattiz__sub{font-size:15px}
    .benefits__title{font-size:28px}
    .products-list__wrapper{grid-template-columns:1fr 1fr;gap:14px}
    .general-information__grid{grid-template-columns:1fr 1fr}
    .serving_grid{grid-template-columns:1fr 1fr}
    .bcp{margin:0 16px;padding:36px 20px}
    .inspiration-overview__articles{grid-template-columns:1fr}
    .highlight-block__body{grid-template-columns:1fr}
    .form__row--2col{flex-direction:column;gap:0}
    .cartPanel_box{width:100%}
    .menu--top-header--wrapper{flex-direction:column;gap:4px;text-align:center}
    .top-header__right{gap:10px;flex-wrap:wrap;justify-content:center}
    .request-demo__content{padding:28px 24px}
    .numbers_strip{gap:20px}
    .numbers_strip__val{font-size:28px}
}

@media (max-width:480px){
    .products-list__wrapper{grid-template-columns:1fr}
    .general-information__grid{grid-template-columns:1fr}
    .serving_grid{grid-template-columns:1fr}
    .general-information__title{font-size:26px}
    .products-list-component__title{font-size:26px}
    .highlight-block__title{font-size:26px}
    .home-testimonials__title{font-size:26px}
    .inspiration-overview__title{font-size:26px}
    .serving_section__title{font-size:26px}
    .faq_q span{font-size:14px}
}

.bTile_img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.tSlide_img{
    width:100%;height:100%;
    object-fit:cover;
    display:block;
}
.inspImg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.hlBlock_img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.reqDemo_img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.prodModal_mainimg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.pTeaser_img{
    max-height:170px;
    width:auto;
    position:relative;
    z-index:2;
    margin:0 auto;
}

.faq_list{}
.faq_item{
    border-bottom:1px solid #e0d8ce;
}
.faq_q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:17px 0;
    cursor:pointer;
    gap:12px;
}
.faq_q span{
    font-family:'DM Sans',sans-serif;
    font-size:15px;
    font-weight:700;
    color:#1a1a1a;
}
.faq_arrow{
    font-size:20px;
    color:#aaa;
    -webkit-transition:transform .2s;
    transition:transform .2s;
    flex-shrink:0;
}
.faq_item.open .faq_arrow{
    transform:rotate(180deg);
}
.faq_a{
    max-height:0;
    overflow:hidden;
    -webkit-transition:max-height .25s ease;
    transition:max-height .25s ease;
}
.faq_item.open .faq_a{
    max-height:400px;
}
.faq_a p{
    font-size:14px;
    font-weight:400;
    color:#666;
    line-height:1.75;
    padding:0 0 18px;
}
.fert_hero{
    position:relative;
    min-height:52vh;
    overflow:hidden;
    background:#2a2018;
}
.fert_hero__bg{
    position:absolute;
    top:0;left:0;
    width:100%;height:100%;
    background-size:cover;
    background-position:center;
    opacity:.5;
}
.fert_hero__content{
    position:relative;
    z-index:2;
    padding:140px 40px 70px;
    max-width:620px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
.fert_hero__title{
    font-size:42px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin:0 0 18px;
    font-family:'DM Sans',sans-serif;
}
.fert_hero__sub{
    font-size:16px;
    color:rgba(255,255,255,.82);
    font-weight:400;
    line-height:1.65;
}

.fert_split{
    display:flex;
    gap:0;
    align-items:stretch;
    max-width:1200px;
    margin:0 auto;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
}
.fert_split__img{
    flex:1;
    min-height:340px;
    background:#f0ebe4;
    overflow:hidden;
}
.fert_split__img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.fert_split__text{
    flex:1;
    padding:36px 34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.fert_split__title{
    font-family:'DM Sans',sans-serif;
    font-size:24px;
    font-weight:800;
    color:#1a1a1a;
    margin:0 0 14px;
}
.fert_split__desc{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin:0 0 12px;
    font-weight:400;
}
.fert_split__checks{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
}
.fert_split__checks .highlight-block__line{
    font-size:14px;
}
.fert_split__checks .highlight-block__icon{
    width:38px;height:38px;
}
.fert_split__checks .highlight-block__icon i{
    font-size:18px;
}

.fert_gallery{
    max-width:1200px;
    margin:0 auto;
    padding:2.5rem 20px 1rem;
}
.fert_gallery__inner{
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}
.fert_gallery__img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}
.fert_gallery__caption{
    padding:18px 24px 22px;
    font-size:14px;
    color:#888;
    font-weight:400;
    line-height:1.6;
}

.legalPage_wrap{
    max-width:740px;
    margin:0 auto;
    padding:40px 28px 50px;
}
.legalPage_wrap h1{
    font-family:'DM Sans',sans-serif;
    font-size:28px;
    font-weight:800;
    color:#1a1a1a;
    margin-bottom:28px;
    padding-bottom:14px;
    border-bottom:1px solid #e0d8ce;
}
.legalPage_wrap h2{
    font-family:'DM Sans',sans-serif;
    font-size:15px;
    font-weight:700;
    color:#1a1a1a;
    margin-top:26px;
    margin-bottom:8px;
}
.legalPage_wrap h3{
    font-family:'Outfit',sans-serif;
    font-size:12px;
    font-weight:400;
    color:#bbb;
    margin-top:32px;
}
.legalPage_wrap p{
    font-family:'Outfit',sans-serif;
    font-size:14px;
    font-weight:400;
    color:#666;
    line-height:1.8;
    margin-bottom:6px;
}
.legalPage_wrap a{
    color:#d4982a;
}
.legalPage_wrap a:hover{
    color:#c08a22;
    opacity:1;
}

@media (max-width:959px){
    .fert_split{flex-direction:column}
    .fert_split__img{min-height:240px}
    .fert_split__text{padding:28px 24px}
    .fert_hero__title{font-size:32px}
    .fert_hero__content{padding:110px 24px 50px}
}

@media (max-width:640px){
    .fert_hero__title{font-size:26px}
    .fert_hero__content{padding:100px 18px 40px}
    .fert_gallery__img{height:220px}
    .legalPage_wrap{padding:28px 16px 40px}
    .legalPage_wrap h1{font-size:22px}
}