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

body{
  min-width:0;
  overflow-x:hidden;
  background:#faf7f1;
  color:#111;
  font-family:var(--font-main);
}

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

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

.promo-bar{
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#efe7db;
  color:#17130f;
  border-bottom:1px solid rgba(0,0,0,0.06);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:78px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 clamp(20px,5vw,72px);
  background:rgba(255,255,255,0.94);
  border-bottom:1px solid rgba(0,0,0,0.08);
  backdrop-filter:blur(14px);
}

.brand-link{
  display:flex;
  align-items:center;
  width:max-content;
}

.brand-link picture{
  display:block;
}

.brand-logo{
  width:240px;
  height:60px;
  object-fit:contain;
  object-position:left center;
}

.header-nav{
  display:flex;
  justify-content:center;
  gap:34px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.top-btn{
  justify-self:end;
  border:none;
  background:#111;
  color:#fff;
  min-height:40px;
  padding:0 20px;
  border-radius:6px;
  cursor:pointer;
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

.page{
  max-width:1440px;
  margin:0 auto;
  padding:28px clamp(16px,4vw,72px) 60px;
}

.product-shell{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(360px,0.85fr);
  gap:52px;
  align-items:start;
}

.gallery-shell{
  display:grid;
  grid-template-columns:116px minmax(0,1fr);
  gap:20px;
}

.thumbs{
  display:grid;
  gap:16px;
  align-content:start;
}

.thumb{
  width:116px;
  height:116px;
  overflow:hidden;
  padding:0;
  border:2px solid transparent;
  border-radius:12px;
  background:#eadfcc;
  cursor:pointer;
}

.thumb.active{
  border-color:#b37a2b;
}

.thumb img,
.thumb video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.media{
  position:relative;
  height:720px;
  overflow:hidden;
  background:#eadfcc;
  border-radius:14px;
}

.media img,
.media video,
.gallery-media{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
}

.badge{
  position:absolute;
  top:28px;
  left:28px;
  z-index:2;
  padding:9px 14px;
  background:#b37a2b;
  color:#fff;
  border-radius:5px;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.product-panel{
  padding-top:24px;
}

.breadcrumbs{
  margin-bottom:22px;
  color:#6d665d;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
}

.product-panel h1{
  margin-bottom:8px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:42px;
  line-height:1.05;
}

.variant-line{
  margin-bottom:22px;
  color:#4d463f;
  font-size:17px;
}

.price{
  margin-bottom:14px;
  color:#ad7625;
  font-size:32px;
  font-weight:800;
}

.rating{
  margin-bottom:18px;
  color:#b37a2b;
  font-size:14px;
  font-weight:800;
}

.summary{
  margin-bottom:24px;
  color:#4d463f;
  line-height:1.75;
}

.feature-list{
  display:grid;
  gap:18px;
  margin:26px 0;
  padding:26px 0;
  border-top:1px solid rgba(0,0,0,0.08);
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.feature-item{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  align-items:start;
}

.feature-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f0e4d2;
  color:#a46e21;
  font-weight:900;
}

.feature-icon::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:#a46e21;
}

.feature-item strong{
  display:block;
  margin-bottom:4px;
  font-size:14px;
}

.feature-item span{
  color:#6d665d;
  font-size:13px;
  line-height:1.45;
}

.option-label{
  margin-bottom:10px;
  color:#6d665d;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.3px;
  text-transform:uppercase;
}

.option-row{
  display:flex;
  gap:10px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.option{
  padding:11px 16px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.16);
  border-radius:6px;
  font-size:13px;
  font-weight:700;
}

.option.active{
  border-color:#b37a2b;
  box-shadow:0 0 0 1px #b37a2b inset;
}

#stockText{
  display:inline-flex;
  margin-bottom:18px;
  padding:9px 13px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}

.checkout-row{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.cta{
  min-height:52px;
  border:0;
  border-radius:6px;
  background:#b37a2b;
  color:#fff;
  cursor:pointer;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

.apple-pay{
  min-height:52px;
  display:grid;
  place-items:center;
  background:#050505;
  color:#fff;
  border-radius:6px;
  font-size:13px;
  font-weight:800;
}

.benefits{
  margin:48px 0 28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;
}

.benefit{
  padding:24px;
  border-right:1px solid rgba(0,0,0,0.08);
}

.benefit:last-child{
  border-right:0;
}

.benefit strong{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.benefit span{
  color:#6d665d;
  font-size:13px;
}

.details{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:34px;
  padding:34px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;
}

.details h2{
  margin-bottom:16px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:26px;
}

.details p{
  color:#4d463f;
  line-height:1.75;
}

.spec-list{
  display:grid;
  gap:10px;
  margin-top:18px;
  color:#4d463f;
  font-size:14px;
}

.box-list{
  display:grid;
  gap:14px;
  padding:24px;
  background:#faf7f1;
  border-radius:12px;
}

.related{
  margin-top:40px;
}

.related h2{
  margin-bottom:18px;
  text-align:center;
  font-family:Georgia, "Times New Roman", serif;
  font-size:28px;
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.related-card{
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;
}

.related-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.related-card div{
  padding:16px;
}

.related-card strong{
  display:block;
  margin-bottom:5px;
}

.related-card span{
  color:#ad7625;
  font-weight:800;
}

@media(max-width:980px){
  .site-header{
    grid-template-columns:1fr auto;
  }

  .header-nav{
    display:none;
  }

  .product-shell,
  .details{
    grid-template-columns:1fr;
  }

  .gallery-shell{
    grid-template-columns:1fr;
  }

  .thumbs{
    display:flex;
    overflow-x:auto;
    order:2;
  }

  .media{
    height:520px;
  }

  .benefits,
  .related-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .promo-bar{
    height:34px;
    padding:0 10px;
    text-align:center;
    font-size:9px;
    line-height:1.25;
    letter-spacing:0.7px;
  }

  .site-header{
    height:70px;
    padding:0 16px;
  }

  .brand-link{
    width:44px;
  }

  .brand-logo{
    width:44px;
    height:44px;
  }

  .top-btn{
    min-height:34px;
    padding:0 14px;
  }

  .page{
    padding:18px 14px 42px;
  }

  .media{
    height:380px;
  }

  .thumb{
    width:76px;
    height:76px;
  }

  .product-panel h1{
    font-size:32px;
  }

  .benefits,
  .related-grid{
    grid-template-columns:1fr;
  }

  .benefit{
    border-right:0;
    border-bottom:1px solid rgba(0,0,0,0.08);
  }

  .details{
    padding:24px;
  }
}
