@font-face {
    font-family: 'Maax';
    src: url('../fonts/Maax-Regular.woff2') format('woff2'),
        url('../font/Maax-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'Maax';
  src: url('../fonts/Maax-Bold.woff2') format('woff2'),
      url('../font/Maax-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Maax';
  src: url('../fonts/Maax-Medium.woff2') format('woff2'),
      url('../font/Maax-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: 'America';
    src: url('../font/America.woff2') format('woff2'),
        url('../font/America.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'America';
  src: url('../font/americana.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
    --font-body-family: 'Maax';
    --font-body-style: normal;
    --font-body-weight: normal;

    --font-heading-family: 'America';
    --font-heading-style: normal;
    --font-heading-weight: bold;
    --font-body-scale: 1;
    --font-heading-scale: 1;
    --color-foreground: 0,0,0;
    --page-width: 1300px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}
body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100%;
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0rem;
    line-height: calc(1 + 0.27 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    color:#010100;
    -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  }
  @media screen and (min-width: 750px) {
    body {
      font-size: 1.6rem;
    }
  }

 #dynamic-react-root + div{
display: none!important;
  }
a{
color:#010100;
text-decoration: none;
}
img{
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
}

p.small{
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: 0;
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.2 / max(1, var(--font-heading-scale)));
  word-break: break-word;
  margin-top: 0;
}

.h0 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
  
  @media only screen and (min-width: 750px) {
    .h0 {
      font-size: calc(var(--font-heading-scale) * 5.2rem);
    }
  }
  
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 3.6rem);
    margin-top: 0;
    margin-bottom:3rem; 

  }
  
  @media only screen and (min-width: 750px) {
    h1,
    .h1 {
      font-size: calc(var(--font-heading-scale) * 4.6rem);
    }
  }
  
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 3rem);
  }
  
  @media only screen and (min-width: 750px) {
    h2,
    .h2 {
      font-size: calc(var(--font-heading-scale) * 3.8rem);
    }
  }
  
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
  
  @media only screen and (min-width: 750px) {
    h3,
    .h3 {
      font-size: calc(var(--font-heading-scale) * 3rem);
    }
  }
  
  h4,
  .h4 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
  @media only screen and (min-width: 750px) {
    h4,
    .h4 {
      font-family: var(--font-heading-family);
      font-style: var(--font-heading-style);
      font-size: calc(var(--font-heading-scale) * 2.4rem);
    }
  }
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.6rem);
  }
  
  @media only screen and (min-width: 750px) {
    h5,
    .h5 {
      font-size: calc(var(--font-heading-scale) * 2rem);
    }
  }
  
  h6,
  .h6 {
    color: rgba(var(--color-foreground), 1);
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    font-size: calc(var(--font-heading-scale) * 1.6rem);
  }
  .button{
    padding: 14px 40px;
    background:#C07D59;
    color: #fff;
    display: inline-block;
    box-sizing: border-box;
    font-weight: 500;
  }

  /* base */

.page-width {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1.6rem;
  }
@media screen and (min-width: 750px) {
    .page-width {
      padding: 0 3rem;
    }
}
@media screen and (min-width: 1441px) {
  .page-width {
    padding: 0 10%;
    max-width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

*:focus {
  outline: 0;
  box-shadow: none;
}
/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 1rem;
  right: 1.5rem;
  top: calc(50% - 0.4rem);
}

summary::-webkit-details-marker {
  display: none;
}

/* ==== announcement ====*/
.mobile-header{
  display: flex;
  align-items: center;
}
.announcement-bar{
  font-size: 14px;
  font-family: var(--font-body-family);
  padding: 10px 15px;
  background-color: #EECCBC;
  text-align: center;
  font-weight: 400;
}
a.link{
  color:#C07D59;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* ==== Header ====*/
.header-sticky{
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #fff;
}
header{
  border-bottom:1px solid #000000;
}
.header{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 20px 0;

}
@media screen and (max-width: 749px) {
  .header{
    padding: 10px 0;
  }
}
.header ul{
  display: flex;
  align-items: center;
  list-style: none;
  gap: 37px;
  padding: 0;
}
.right-bar{
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  justify-content: flex-end;
}
.right-bar a.link{
  color:#C07D59;
  text-decoration: underline;

}
.mobile-shop-links{
  padding: 22px 16px;
  border-bottom: 1px solid #000;
}
.mobile-shop-links--container{
  display: flex;
  justify-content: space-around;
  text-align: center;
  text-decoration: underline;
  font-size: 14px;
}
.mobile-shop-links .link-item img{
  width: 86px;
  height: 86px;
  margin-bottom: 8px;
}
.mobile-shop-links--container span{
  display: block;
}
/* === Mobile menu*/
.icon-close{
  display: none;
}
.menu-drawer-container[open] .icon-close{
display: block;
}
.menu-drawer-container[open] .icon-menu{
  display: none;
  }
.menu-drawer{
  position: absolute;
  background:#FEFAF9 ;
  left: 0;
  top: 100%;
  width: 100%;
  border-bottom: 1px solid #000;
}
.menu-drawer ul{
 display: block;
 margin: 0;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid #000;
}
.menu-drawer ul li{
  border-bottom: 1px solid #000;
}
.menu-drawer ul a{
  padding: 16px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.menu-drawer .right-bar{
display: block;
  padding: 16px;
  text-align: center;
}
.menu-drawer .right-bar .button{
  width: 100%;
  width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}
/* ===== Image text ====*/
.image-with-text{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  
}
.image-with-text__image {
  border-left: 1px solid #000;
}
.image-with-text__image .image-with-text__image--grid{
display: grid;
grid-template-columns: 1fr 1fr;
}

.image-with-text__image img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.image-with-text__image--grid__item{
  position: relative;
}
.image-with-text__image--grid__item img{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.image-with-text__content{
  padding: 54px 16px;
}
.image-with-text__content--inner{
  max-width: 550px;
  margin: 0 auto;
}
.image-with-text__content .buttons{
margin-top: 40px;
}
@media screen and (max-width: 749px) {
  .image-with-text{
    grid-template-columns: 1fr;
  }
  .image-with-text__image {
    border-left: none;
    border-bottom: 1px solid #000;
    order:-1;
  }
}


.image-with-text__grid .image-with-text__content{
  height: 100%;
  padding: 84px 16px;
}
.image-with-text__grid .image-with-text__content .image-with-text__content--inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.image-with-text__grid .image-with-text__image {
  border: none;
}
.image-with-text__grid .image-with-text__content a.link{
  color:#C07D59;
  text-decoration: underline;
}
@media screen and (max-width: 749px) {
  .image-with-text__grid .image-with-text__content{
    height: 100%;
    padding: 60px 16px;
  }
}
/* ==== Featured Icons ====*/
.featured-icons{
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.featured-icons__item{
  width: 150px;
  flex: 0 0 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-icons__item h5{
  margin: 20px 0 0;
  line-height: 1.2;
  flex: 1;
  display: flex;
  align-items: center;
}
.featured-icons__item img{
  width: 80px;
  height: 80px;
}
.featured-icons::-webkit-scrollbar {
  height: 0.4rem;
  width: 0.4rem;
  display: none;
}
@media screen and (max-width: 1200px) {
  .featured-icons{
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.6rem;
    -webkit-overflow-scrolling: touch;
    --desktop-margin-left-first-item: 1.6rem;
    justify-content: flex-start;
    }
    .featured-icons:after {
      content: "";
      width: 0;
      padding-left: 1px;
    }
    .featured-icons .featured-icons__item:first-child {
      margin-left: var(--desktop-margin-left-first-item);
      scroll-margin-left: var(--desktop-margin-left-first-item);
    }
}
@media screen and (max-width: 749px) {
  .featured-icons{
    gap:10px ;
  }
  .featured-icons__item{
    width: 110px;
    flex: 0 0 110px;
    text-align: center;
  }
  .featured-icons__item img{
    width: 54px;
    height: 54px;
  }
  .featured-icons__item h5{
    font-size: 14px;
  }
}


/* === custom new faq ====*/
.faq-header{
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.faq-inner{
  max-width: 550px;
  margin: 0 auto;
}
.faq-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 88px 16px;
  gap: 16px;
}
.faq-wrapper h3{
  margin: 0;
}
.faq-item + .faq-item{
  margin-top: 140px;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease,
    padding-bottom 0.3s ease;
  padding: 0;
  box-sizing: content-box;
}
.accordion{
  border-top: 1px solid #000;
}
accordion-component .accordion:last-child{
  border-bottom: 1px solid #000;
}
.accordion.active .accordion-content {
  padding-top: 0rem;
  padding-bottom: 1.8rem;
  max-height: max-content;
  transition: max-height 0.3s ease, padding-top 0.3s ease,
    padding-bottom 0.3s ease;
}
.accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  padding: 18px 0;
  position: relative;
  gap: 1.6rem;
}
.accordion-header:after {
  content: "";
  width: 1.2rem;
  height: 0.2rem;
  background: currentcolor;
  position: absolute;
  right: 1rem;
  transition: all 0.3s ease;
}
.accordion-header:before {
  content: "";
  height: 1.2rem;
  width: 0.2rem;
  background: currentcolor;
  position: absolute;
  right: 1.5rem;
  transition: all 0.3s ease;
}

.accordion.active .accordion-header:before {
  transform: rotate(90deg);
}

.accordion__title{
margin: 0;
font-size: 16px;
font-weight: 500;
padding-right: 30px;
font-family: var(--font-body-family);
font-style: var(--font-body-style);
font-weight: 500;
}
.accordion-content{
  font-size: 14px;
}
.faq-item h4{
  margin: 0 0 34px;
}
@media screen and (max-width: 749px) {
  .faq-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    padding: 60px 16px 80px;
    gap: 80px;
  }
  .faq-item + .faq-item{
    margin-top: 84px;
  }
  .faq-inner{
    max-width: 550px;
    margin: 0 auto;
  }
}

/*===== products =====*/
.section-product{
  padding: 100px 0;
}
.product-wrapper{
  max-width: 1000px;
  margin:0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 14vw;
  position: relative;
}
.product-wrapper::after{
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
}
.product-item{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-item .product-image{
  max-width: 100%;
}
.product-item h4{
  margin-top: 0;
  margin-bottom: 14px;
}
.product-item h3{
  margin-top: 30px;
  margin-bottom: 5px;
}
.product-item .button{
  width: 100%;
}
@media screen and (max-width: 749px) {
  .section-product{
    padding: 60px 0 40px;
  }
  .product-wrapper{
    grid-template-columns: 1fr;
    gap: 120px;
  }
  .product-wrapper::after{
    content: "";
    height: 1px;
    width: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    top: calc(50% + 20px);
    left: 0;
  }
  .icon-review{
    height: 16px;
  }
}


/* ==== Behind the bar ====*/
.section-behind-the-bar{
  border-bottom: 1px solid #000;
}
.behind-the-bar{
display: flex;
gap: 90px;
padding:84px 0;

}
.behind-the-bar__content{
  flex: 0 0 36%;
  width: 36%;
}
.behind-the-bar__images{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.behind-the-bar__image--right{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  padding: 10px 0 50px;
  gap: 40px;
}
.behind-the-bar__image--right a{
  color: #000;
}
.behind-the-bar__image--left{
  padding-bottom: 100%;
  position: relative;
  height: 100%;
}
.behind-the-bar__image--left img,.behind-the-bar__image--left video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
.behind-the-bar__images{
  grid-template-columns: 1fr;
}
.behind-the-bar__image--left{
  padding-bottom: 100%;
  position: relative;
  height: 0;
}
.behind-the-bar__image--left img,.behind-the-bar__image--left video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
}
@media screen and (max-width: 749px) {
  .behind-the-bar{
    padding: 60px 0;
  }
  .behind-the-bar{
    flex-wrap: wrap;
    gap: 30px;
  }
  .behind-the-bar__content{
    width: 100%;
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 1025px) {
.section-on-shelf .behind-the-bar__image--right{
order: -1;
}
}

/* ==== Review ====*/
.section-review{
  padding: 84px 0;
  padding-left: 16px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1441px) {
  .section-review{
    padding-left: 10%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .section-review{
    padding-left: 6%;
  }
}
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .section-review{
    padding-left: 3rem;
  }
}
.section-review__wrapper{
display: grid;
grid-template-columns: 40% 60%;
gap: 30px;
}

.section-review__header--inner{
  max-width: 388px;
}
.section-review__slider{
  display: flex;
  max-width: 100%;
}
@media screen and (min-width: 990px) {
  .section-review__slider{
  padding-top: 80px;
  }
  }
.review__slider--item{
background:#EECCBC;
display:flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
}

.review-content{
  padding: 20px 25px;
  flex: 1;
  display:flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
}
.review-content img{
  width: auto;
}
.review-content .name{
  margin-top: 30px;
}

@media screen and (max-width: 749px) {
  .section-review{
    padding: 60px 0px 60px 16px;
  }
  .section-review__wrapper{
    display: block;
  }
  .section-review__slider{
    margin-top: 40px;
  }
  .review-content{
    padding: 20px;
  }
}


.reviewer__name{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.reviewer__verify{
  display: flex;
  gap: 5px;
  font-size: 12px;
  align-items: center;
  margin:0;
}
.reviewer__verify img{
  width: 12px;
  height: 12px;
}
.reviewer__product{
  display: flex;
  font-size: 12px;
  color:#C07D59;
  gap: 6px;
  align-items: center;
  margin-top: 16px;
}
@media screen and (min-width: 990px) {
.section-review-product__slider{
padding-top: 80px;
}
}
.slider-buttons{
  position: absolute;
  top: 0;
  right:9vw;
  display: flex;
  align-items: center;
  gap: 30px;
}
.slider-buttons .slider-button{
  background: none;
border: none;
}


/* ===== Footer =====*/
footer{
  padding: 65px 0;
}
.footer-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width:750px) {
.footer__item{
  width: 280px;
}
.footer__item--menus{
  display: grid;
  grid-template-columns: auto auto;
  gap: 60px;
  }
}

.footer__item--newsletter p{
  margin-top:0;
}
.footer__item--newsletter .social-icons{
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.footer__item ul{
  list-style: none;
  padding:0;
  margin: 0;
}
.klaviyo-form{
  border-bottom: 1px solid #000;
}
.klaviyo-form input{
  padding-left: 0!important;
}
.klaviyo-form-S6Kb3R button {
  padding-right: 0 !important;
  font-weight: 600 !important;
}
.footer__item--menu a{
  font-size: 14px;
  line-height: 1.7;
}
.footer__heading{
  font-weight: 500;
  margin-bottom: 30px;
}
.copyright{
  font-size: 12px;
  margin-top: 50px;
}
.footer__claim{
  padding: 12px 20px; border: 1px solid #000; margin-top: 24px;font-size: 12px;
}
@media screen and (max-width:749px) {
  footer{
    padding: 50px 0;
  }
  .footer__item--newsletter .social-icons{
    justify-content: center;
  }
  .copyright{
    font-size: 12px;
    margin-top: 26px;
  }
  .footer__item--menus{
    width: 100%;
  }
  .footer__heading{
    margin: 0;
    font-size: 14px;
  }
  .footer__item--menus .accordion:first-child{
    border: none;
  }
  .footer__item iframe{
width: 100%!important;
  }
  .footer__item .accordion-header{
    padding: 24px 0;
  }
  .footer__claim{
    margin-top: 40px;
  }
}


.marquee__group img{
  height: 220px;
  width: auto;
}
.marquee-wrapper {
  gap: 0px;
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: hidden;
}

:root {
  --color-text: navy;
  --color-bg-accent: #ecdcc0;
  --size: 300px;
  --gap: 0px;
  --duration: 12s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee {
  display: flex;
  user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
  animation: scroll var(--duration) linear infinite;
  padding: 0;
}
.marquee__group svg {
  vertical-align: middle;
}



.marquee__group h4 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.07rem;
}


@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media screen and (max-width: 749px) {
  :root {
    --size: 100vw;
    --gap: 0px;
    --duration: 15s;
  }
  .marquee__group h4 {
    font-size: 1.8rem;
  }
  .marquee__group svg {
    width: 28px;
    height: auto;
  }
  .marquee__group img{
    height: 180px;
    width: auto;
  }
}
.header .logo{display: flex;align-items: center;justify-content: center;}

