:root{
  --autumnrust: #A8562E;
  --autumnrust-dark: #7E3F20;
  --mossgreen: #5A6B3E;
  --mossgreen-dark: #414F2C;
  --pale: #F0E9DC;
  --ink: #24201A;
  --line: #E3D9C4;
  --bg: #FAF6EE;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
}

/* Hero band - different from prior header styles */
.hero-band{
  background:linear-gradient(135deg, var(--autumnrust) 0%, var(--autumnrust-dark) 100%);
  padding:36px 16px;
  text-align:center;
}
.hero-inner{
  max-width:700px;
  margin:0 auto;
}
.hero-eyebrow{
  display:inline-block;
  color:#F0E9DC;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  opacity:0.85;
  margin-bottom:6px;
}
.hero-title{
  color:#fff;
  font-size:1.9rem;
  font-weight:800;
  margin:0;
  letter-spacing:-0.01em;
}

/* Product section */
.product-section{
  max-width:1120px;
  margin:0 auto;
  padding:32px 16px 8px;
}
.product-card{
  display:flex;
  flex-direction:column;
  gap:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:0 4px 18px rgba(36,32,26,0.06);
}
@media (min-width:900px){
  .product-card{
    flex-direction:row;
    padding:36px;
  }
}

/* Gallery */
.gallery-wrap{
  flex:0 0 auto;
  width:100%;
  position:relative;
}
@media (min-width:900px){
  .gallery-wrap{width:40%;}
}
.gallery-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.gallery-main{
  width:100%;
  aspect-ratio:1/1;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background:var(--pale);
}
.slide{
  display:none;
  width:100%;
  height:100%;
  object-fit:contain;
}
#g1:checked ~ .gallery-main .s1,
#g2:checked ~ .gallery-main .s2,
#g3:checked ~ .gallery-main .s3,
#g4:checked ~ .gallery-main .s4{
  display:block;
}
.gallery-thumbs{
  display:flex;
  gap:10px;
  margin-top:14px;
  overflow-x:auto;
  padding-bottom:4px;
}
.thumb{
  flex:0 0 66px;
  width:66px;
  height:66px;
  border:2px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  display:block;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#g1:checked ~ .gallery-thumbs .t1,
#g2:checked ~ .gallery-thumbs .t2,
#g3:checked ~ .gallery-thumbs .t3,
#g4:checked ~ .gallery-thumbs .t4{
  border-color:var(--mossgreen);
}

/* Product info */
.product-info{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
}
.product-name{
  font-size:1.3rem;
  font-weight:800;
  margin:0 0 20px;
  color:var(--autumnrust-dark);
  line-height:1.35;
}
.description-heading{
  font-size:0.85rem;
  font-weight:800;
  margin:0 0 14px;
  color:var(--mossgreen-dark);
  text-transform:uppercase;
  letter-spacing:0.1em;
}

/* Badge grid - distinctly different from plain lists used elsewhere */
.badge-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:24px;
}
@media (min-width:600px){
  .badge-grid{grid-template-columns:1fr 1fr;}
}
.badge-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--pale);
  border-radius:10px;
  padding:14px;
}
.badge-num{
  flex:0 0 auto;
  font-size:0.78rem;
  font-weight:800;
  color:#fff;
  background:var(--mossgreen);
  border-radius:6px;
  padding:3px 8px;
  line-height:1.4;
}
.badge-item p{
  margin:0;
  font-size:0.92rem;
  color:var(--ink);
}

/* CTA */
.cta-button{
  display:block;
  text-align:center;
  background:var(--autumnrust);
  color:#fff;
  font-weight:700;
  font-size:1.05rem;
  padding:16px 24px;
  border-radius:999px;
  text-decoration:none;
  margin-top:auto;
  transition:background 0.2s ease, transform 0.15s ease;
}
.cta-button:hover{
  background:var(--autumnrust-dark);
  transform:translateY(-1px);
}
.cta-button-secondary{
  max-width:340px;
  margin:36px auto 0;
}

/* Reviews - left-accent card style, different from prior avatar-top layouts */
.reviews-section{
  max-width:900px;
  margin:0 auto;
  padding:44px 16px 64px;
}
.reviews-heading{
  font-size:1.35rem;
  font-weight:800;
  margin:0 0 26px;
  color:var(--autumnrust-dark);
}
.review{
  background:#fff;
  border-left:5px solid var(--mossgreen);
  border-radius:8px;
  padding:20px 22px;
  margin-bottom:18px;
  box-shadow:0 2px 10px rgba(36,32,26,0.05);
}
.review-top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:6px;
}
.review-avatar{
  width:42px;
  height:42px;
  border-radius:10px;
  object-fit:cover;
  flex:0 0 auto;
}
.review-head-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.review-author{
  font-weight:700;
  margin:0;
  font-size:0.95rem;
}
.review-author a{
  color:var(--autumnrust-dark);
  text-decoration:none;
}
.review-author a:hover{
  text-decoration:underline;
}
.review-stars{
  color:var(--mossgreen);
  margin:0;
  font-size:0.9rem;
  letter-spacing:0.05em;
}
.review-title{
  font-size:1rem;
  font-weight:700;
  margin:6px 0 2px;
  color:var(--ink);
}
.review-meta{
  font-size:0.75rem;
  color:var(--mossgreen-dark);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.05em;
  margin:0 0 10px;
}
.review-text{
  font-size:0.93rem;
  margin:0 0 12px;
  color:var(--ink);
}
.review-photos{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.review-photo{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:8px;
}

/* Footer */
.site-footer{
  background:var(--mossgreen-dark);
  color:#F0E9DC;
  text-align:center;
  padding:30px 16px;
}
.footer-title{
  font-weight:800;
  margin:0 0 12px;
}
.footer-links{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin:0;
  padding:0;
}
.footer-links a{
  color:#F0E9DC;
  font-size:0.85rem;
  text-decoration:underline;
}
.footer-links a:hover{
  color:#fff;
}