*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --text:#171717;
  --muted:#7c7c7c;
  --line:#d6d6d6;
  --bg:#f4f4f4;
  --white:#fff;
  --black:#000;
  --accent:#d92d45;
  --gold:#c6a95f;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Jost', sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.4;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:30;
  color:#fff;
}

.nav{
  min-height:84px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
}

.nav-left,
.nav-right{
  display:flex;
  align-items:center;
}

.nav-left{
  gap:28px;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:1.9px;
  font-weight:500;
}

.nav-right{
  justify-content:flex-end;
  gap:10px;
}

.logo{
  font-family:'Allura', cursive;
  font-size:46px;
  line-height:1;
  text-align:center;
}

.select-pill{
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  min-height:32px;
  padding:0 12px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  background:rgba(255,255,255,.08);
}

.icon-btn{
  position:relative;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
}

.cart-badge{
  position:absolute;
  top:-4px;
  right:-3px;
  background:#fff;
  color:#000;
  width:15px;
  height:15px;
  border-radius:50%;
  font-size:9px;
  display:grid;
  place-items:center;
  font-weight:700;
}

.mobile-toggle,
.mobile-menu{
  display:none;
}

.hero-section{
  position:relative;
  overflow:hidden;
}

.hero-main{
  min-height:760px;
}

.hero-secondary{
  min-height:420px;
}

.hero-bg,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  background:linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.24) 38%, rgba(0,0,0,.1) 100%);
}

.dark-soft{
  background:rgba(0,0,0,.34);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-content-center{
  min-height:inherit;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  font-size:11px;
  letter-spacing:3px;
  font-weight:600;
}

.hero-main h1{
  font-size:72px;
  line-height:1;
  letter-spacing:1px;
  margin-bottom:18px;
}

.hero-secondary h2{
  font-size:58px;
  line-height:1.05;
  letter-spacing:1px;
  margin-bottom:18px;
}

.hero-content p{
  font-size:14px;
  color:rgba(255,255,255,.82);
  margin-bottom:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:135px;
  height:44px;
  padding:0 24px;
  border-radius:8px;
  font-size:11px;
  letter-spacing:1.8px;
  font-weight:700;
  text-transform:uppercase;
  transition:.25s ease;
}

.btn-white{
  background:#fff;
  color:#111;
}

.btn-white:hover{
  transform:translateY(-2px);
}

.btn-dark{
  background:#000;
  color:#fff;
  border-radius:6px;
  margin-top:34px;
}

.section-light{
  background:var(--bg);
}

.products-section,
.categories-section{
  padding:68px 0 74px;
}

.section-heading{
  text-align:center;
  margin-bottom:44px;
}

.section-heading h2{
  font-size:38px;
  letter-spacing:1px;
  font-weight:500;
}

.section-heading p{
  font-size:14px;
  color:#8f8f8f;
  margin-top:10px;
}

.divider{
  width:64px;
  height:2px;
  background:#c9c9c9;
  margin:22px auto 0;
}

.product-grid{
  display:grid;
  gap:18px;
}

.four-cols{
  grid-template-columns:repeat(4, 1fr);
}

.product-card{
  position:relative;
  background:#efefef;
  padding:22px 18px 26px;
  text-align:center;
  overflow:hidden;
}

.product-image{
  aspect-ratio:1/1;
  background:#f5f5f5;
  display:grid;
  place-items:center;
  margin-bottom:18px;
}

.product-image img{
  width:74%;
  height:74%;
  object-fit:contain;
  transition:.35s ease;
}

.product-card:hover .product-image img{
  transform:scale(1.05);
}

.product-card h3{
  font-size:13px;
  font-weight:500;
  margin-bottom:10px;
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.price{
  font-size: 17px;
    font-weight: bold;
  color:var(--gold);
}

.old-price{
  font-size:12px;
  color:#a6a6a6;
  text-decoration:line-through;
}

.sale-ribbon{
  position:absolute;
  top:10px;
  right:-29px;
  transform:rotate(45deg);
  background:var(--accent);
  color:#fff;
  font-size:10px;
  font-weight:700;
  width:104px;
  text-align:center;
  padding:6px 0;
}

.dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:20px;
}

.dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#b6b6b6;
}

.dots span.active{
  background:#4e4e4e;
}

.dots.small{
  margin-top:14px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:28px;
  align-items:start;
}

.category-card{
  text-align:center;
}

.category-thumb{
  width:172px;
  height:172px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#ededed;
  padding:24px;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.category-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.category-card h3{
  font-size:22px;
  font-weight:500;
}

.deal-section{
  padding:84px 0;
  background:#fff;
  overflow:hidden;
}

.deal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:24px;
}

.deal-copy h2{
  font-size:58px;
  line-height:1;
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:18px;
}

.deal-copy h3{
  font-size:38px;
  font-weight:500;
  margin-bottom:14px;
}

.price-large{
  justify-content:flex-start;
  margin-bottom:24px;
}

.deal-copy p{
  max-width:280px;
  color:#5f5f5f;
  font-size:18px;
  margin-bottom:24px;
}

.countdown{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.count-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:62px;
}

.count-item strong{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.count-item span{
  font-size:10px;
  letter-spacing:1.5px;
  color:#444;
}

.deal-visual{
  position:relative;
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.deal-shape{
  position:absolute;
  inset:18px auto 18px 34px;
  width:460px;
  height:460px;
  border-radius:50%;
  background:linear-gradient(135deg, #f3f3f3 0%, #f7ecd9 100%);
}

.deal-visual img{
  position:relative;
  z-index:1;
  width:470px;
  height:470px;
  object-fit:cover;
  border-radius:50%;
}

.instagram-strip{
  background:#fff;
}

.insta-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
}

.insta-item{
  min-height:190px;
}

.insta-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.insta-center{
  background:#666;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  padding:24px;
}

.insta-center i{
  font-size:40px;
}

.insta-center span{
  font-size:12px;
  letter-spacing:1.8px;
}

.insta-center strong{
  font-size:18px;
  font-weight:500;
}

.footer{
  background:#fff;
  position:relative;
  padding-top:30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr 1fr;
  gap:26px;
  padding:36px 0;
  border-bottom:1px solid #ececec;
}

.footer-logo{
  display:inline-block;
  margin-bottom:16px;
  color:#111;
}

.footer-brand p,
.footer-col p{
  color:#666;
  font-size:14px;
  margin-bottom:8px;
}

.footer-brand h3{
  font-size:38px;
  font-weight:500;
  margin-bottom:14px;
}

.footer-col h4{
  font-size:13px;
  letter-spacing:1.8px;
  margin-bottom:20px;
}

.footer-col a{
  display:block;
  color:#6f6f6f;
  margin-bottom:10px;
  font-size:14px;
}

.newsletter-form{
  display:flex;
  margin-top:18px;
  border:1px solid #ddd;
  height:48px;
}

.newsletter-form input{
  flex:1;
  border:none;
  outline:none;
  padding:0 16px;
  font:inherit;
}

.newsletter-form button{
  width:54px;
  border:none;
  background:#000;
  color:#fff;
  cursor:pointer;
}

.socials{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.socials a{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid #ddd;
  display:grid;
  place-items:center;
  color:#333;
}

.footer-bottom{
  min-height:72px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:#7a7a7a;
  font-size:13px;
}

.payments{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-weight:500;
}

.scroll-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#000;
  color:#fff;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:50;
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
}

@media (max-width: 1100px){
  .four-cols{
    grid-template-columns:repeat(2, 1fr);
  }

  .category-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .deal-grid{
    grid-template-columns:1fr;
  }

  .deal-copy{
    text-align:center;
  }

  .price-large,
  .countdown{
    justify-content:center;
  }

  .deal-copy p{
    margin-inline:auto;
  }
}

@media (max-width: 840px){
  .nav{
    grid-template-columns:auto 1fr auto;
  }

  .nav-left,
  .nav-right{
    display:none;
  }

  .logo{
    text-align:left;
    font-size:40px;
    margin-left:12px;
  }

  .mobile-toggle{
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    justify-self:end;
    border:none;
    background:rgba(255,255,255,.12);
    color:#fff;
    border-radius:8px;
  }

  .mobile-menu{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding:0 16px 18px;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }

  .mobile-menu.open{
    max-height:320px;
  }

  .mobile-menu a{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:12px;
  }

  .hero-main h1{
    font-size:52px;
  }

  .hero-secondary h2,
  .deal-copy h2{
    font-size:42px;
  }

  .deal-copy h3{
    font-size:30px;
  }

  .insta-grid{
    grid-template-columns:1fr 1fr;
  }

  .insta-center{
    grid-column:1 / -1;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 24px, 1200px);
  }

  .hero-main{
    min-height:620px;
  }

  .hero-secondary{
    min-height:360px;
  }

  .hero-main h1{
    font-size:42px;
  }

  .hero-secondary h2{
    font-size:34px;
  }

  .products-section,
  .categories-section,
  .deal-section{
    padding:52px 0;
  }

  .four-cols,
  .category-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .category-thumb{
    width:150px;
    height:150px;
  }

  .deal-visual{
    min-height:320px;
  }

  .deal-shape,
  .deal-visual img{
    width:290px;
    height:290px;
  }

  .footer-bottom{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:16px 0 24px;
  }
}

.video-hero{
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.video-background{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-background iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh; /* 16:9 */
  height: 56.25vw;       /* 16:9 */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-hero .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-hero .hero-content{
  position: relative;
  z-index: 2;
}