/** Shopify CDN: Minification failed

Line 111:0 Unexpected "}"

**/
:root{
  --sn-black:#111111;
  --sn-white:#ffffff;
  --sn-grey:#666666;
  --sn-radius:16px;
  --sn-container:1400px;
}

.sn-container{
  max-width:var(--sn-container);
  margin:0 auto;
  padding:0 20px;
}

.sn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 32px;
  border-radius:999px;
  text-decoration:none;
}

.sn-btn-primary{
  background:#111;
  color:#fff;
}

.sn-btn-secondary{
  border:1px solid #111;
  color:#111;
}/* HERO */

.sn-hero{
  padding:80px 0;
}

.sn-hero .sn-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.sn-hero__subheading{
  font-size:14px;
  font-weight:600;
  margin-bottom:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.sn-hero__title{
  font-size:72px;
  line-height:1;
  font-weight:700;
  margin:0 0 24px;
  max-width:650px;
}

.sn-hero__description{
  font-size:18px;
  line-height:1.7;
  max-width:600px;
  margin-bottom:30px;
}

.sn-hero__buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.sn-hero__reviews{
  font-size:15px;
  font-weight:500;
}

.sn-hero__image{
  position:relative;
  width:100%;
}

.sn-hero{
  overflow:hidden;
}

.sn-hero__image{
  position:relative;
  right:-50px;
}

.sn-hero{
  overflow:hidden;
}

.sn-hero__image{
  position:relative;
  right:-50px;
}

.sn-hero__image img{
  width:100%;
  display:block;
}
}
}

@media screen and (max-width:990px){

.sn-hero .sn-container{
  grid-template-columns:1fr;
}

.sn-hero__title{
  font-size:48px;
}

}

@media screen and (max-width:768px){

.sn-hero{
  padding:50px 0;
}

.sn-hero__title{
  font-size:38px;
}

.sn-hero__buttons{
  flex-direction:column;
}

}
/* TRUST BAR */

.sn-trust-bar{
  padding:30px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.sn-trust-bar .sn-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.sn-trust-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  font-weight:600;
  font-size:15px;
}

.sn-trust-item img{
  width:24px;
  height:24px;
  object-fit:contain;
}

@media(max-width:768px){

.sn-trust-bar .sn-container{
  grid-template-columns:repeat(2,1fr);
}

}
/* BRAND STORY */

.sn-brand-header{
  text-align:center;
  max-width:850px;
  margin:0 auto 60px;
}

.sn-brand-header h2{
  font-size:56px;
  margin-bottom:20px;
  line-height:1;
}

.sn-brand-description{
  font-size:18px;
  line-height:1.8;
}

.sn-brand-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.sn-brand-card{
  overflow:hidden;
  border-radius:20px;
  background:#f7f7f7;
}

.sn-brand-card img{
  width:100%;
  aspect-ratio:1/1.2;
  object-fit:cover;
  display:block;
}

.sn-brand-card__content{
  padding:24px;
}

.sn-brand-card__content h3{
  margin:0;
  font-size:24px;
}

.sn-brand-card__content p{
  margin-top:10px;
}

@media(max-width:990px){

.sn-brand-grid{
  grid-template-columns:1fr;
}

.sn-brand-header h2{
  font-size:40px;
}

}/* FEATURED PRODUCTS */

.sn-products-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
}

.sn-products-header h2{
  font-size:56px;
  margin:0;
}

.sn-products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.sn-product-card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}

.sn-product-card img{
  width:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}

.sn-product-info{
  padding:24px;
}

.sn-product-info h3{
  margin:0 0 10px;
}

.sn-product-price{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.sn-product-info p{
  margin-bottom:20px;
  line-height:1.6;
}

@media(max-width:990px){

.sn-products-grid{
  grid-template-columns:1fr;
}

.sn-products-header{
  flex-direction:column;
  gap:20px;
}

.sn-products-header h2{
  font-size:40px;
}

}