/* =============================================
   Pukka Chamomile Vanilla Manuka Honey — style.css
   Color system: Warm honey gold / chamomile / sage
   Mobile-first responsive
   ============================================= */

:root {
  --honey:        #C8870A;
  --honey-dark:   #8A5800;
  --honey-mid:    #E09C1A;
  --honey-pale:   #FEF7E6;
  --chamomile:    #F5E4A0;
  --chamomile-mid:#EDD060;
  --sage:         #6B8C5A;
  --sage-lite:    #DFF0D8;
  --sage-mid:     #A8C890;
  --vanilla:      #FAF3E0;
  --cream:        #FDFBF5;
  --text:         #1E1608;
  --text-mid:     #4A3C18;
  --text-lite:    #8A7840;
  --border:       #E8D898;
  --border-lite:  #F2EAC8;
  --bg:           #FDFAF0;
  --white:        #FFFFFF;
  --star:         #C07A00;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }

.sr { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

/* ─── HEADER ─── */
.site-header {
  background: linear-gradient(135deg, var(--honey-dark) 0%, var(--honey) 55%, var(--honey-mid) 100%);
  padding: 0.9rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(138,88,0,0.35);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.header-logo {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--chamomile);
  letter-spacing: 0.06em;
  text-decoration: none;
}
.header-sub {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.62);
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  padding: 1.75rem 1.1rem;
  max-width: 1160px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 22px rgba(200,135,10,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ─── GALLERY ─── */
.gallery-col {
  padding: 1.25rem;
  background: var(--honey-pale);
  border-bottom: 1px solid var(--border);
}
.main-slide {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border-lite);
  background: var(--white);
}
.slide { display: none; }
.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--honey-pale);
}

#g1:checked ~ .main-slide .s1 { display: block; }
#g2:checked ~ .main-slide .s2 { display: block; }
#g3:checked ~ .main-slide .s3 { display: block; }
#g4:checked ~ .main-slide .s4 { display: block; }

.thumb-row {
  display: flex;
  gap: 8px;
  margin-top: 0.75rem;
}
.thumb {
  flex: 1;
  max-width: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--honey-pale);
}
#g1:checked ~ .thumb-row label:nth-child(1),
#g2:checked ~ .thumb-row label:nth-child(2),
#g3:checked ~ .thumb-row label:nth-child(3),
#g4:checked ~ .thumb-row label:nth-child(4) {
  border-color: var(--honey);
}

.dot-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 0.6rem;
}
.dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
#g1:checked ~ .dot-row label:nth-child(1),
#g2:checked ~ .dot-row label:nth-child(2),
#g3:checked ~ .dot-row label:nth-child(3),
#g4:checked ~ .dot-row label:nth-child(4) {
  background: var(--honey);
}

/* ─── INFO COLUMN ─── */
.info-col {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.product-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.38;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.badge {
  background: var(--chamomile);
  color: var(--honey-dark);
  border: 1px solid var(--chamomile-mid);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
}

.product-desc { display: flex; flex-direction: column; gap: 0; }

.desc-heading {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--honey-dark);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--chamomile-mid);
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-lite);
}
.feature-item:last-of-type { border-bottom: none; }
.feat-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
  min-width: 24px;
  text-align: center;
}
.feature-item div {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.68;
}
.feature-item strong {
  color: var(--honey-dark);
  font-weight: 700;
}

.seo-note {
  margin-top: 1rem;
  background: var(--sage-lite);
  border-left: 3px solid var(--sage);
  padding: 0.9rem 1rem;
  border-radius: 0 6px 6px 0;
}
.seo-note p {
  font-size: 0.86rem;
  color: var(--text-lite);
  line-height: 1.65;
}
.seo-note strong { color: var(--sage); }

/* ─── CTA ─── */
.cta-section {
  padding: 2.25rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, var(--honey-pale) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.05rem 3.4rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(200,135,10,0.4);
  border: 2px solid var(--honey-dark);
  transition: box-shadow 0.2s, transform 0.15s;
}
.cta-btn:hover {
  box-shadow: 0 6px 22px rgba(138,88,0,0.5);
  transform: translateY(-1px);
}

/* ─── REVIEWS ─── */
.reviews-section {
  padding: 2.5rem 1.1rem 3.5rem;
  background: var(--bg);
}
.reviews-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.reviews-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--chamomile-mid);
}

.review {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-lite);
}
.review:last-child { border-bottom: none; }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}
.avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--chamomile-mid);
  background: var(--chamomile);
}
.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.reviewer-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.stars {
  font-size: 1rem;
  color: var(--star);
  letter-spacing: 2px;
  line-height: 1;
}
.review-headline {
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.review-location {
  font-size: 0.8rem;
  color: var(--text-lite);
  margin-bottom: 0.2rem;
}
.review-attr {
  font-size: 0.78rem;
  color: var(--text-lite);
  margin-bottom: 0.85rem;
}
.review-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
}
.review-photos {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}
.review-photos img {
  max-width: 140px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

/* ─── FOOTER ─── */
.site-footer {
  background: linear-gradient(135deg, var(--honey-dark) 0%, var(--honey) 100%);
  padding: 1.75rem 1.25rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chamomile);
  letter-spacing: 0.08em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 600px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .header-sub { text-align: right; max-width: 55%; }
  .cta-btn { font-size: 1.2rem; padding: 1.1rem 3.8rem; }
}

@media (min-width: 820px) {
  .product-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .gallery-col {
    width: 420px;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 64px;
    align-self: flex-start;
  }
  .info-col {
    flex: 1;
    padding: 2rem 2rem 2rem 1.75rem;
  }
  .product-title { font-size: 1.28rem; }
  .product-section { padding: 2rem; }
  .cta-section { padding: 2.5rem 2rem; }
  .reviews-section { padding: 3rem 2rem 4rem; }
  .site-header { padding: 0.75rem 2rem; }
}

@media (min-width: 1024px) {
  .gallery-col { width: 460px; }
}