:root {
  --brown: #A97C50;
  --brown-dark: #6B4423;
  --brown-darker: #4A2E1E;
  --orange: #F5821F;
  --orange-light: #FF8C42;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --blue: #6FB1C9;
  --green: #8FBF7F;
  --text: #4A2E1E;
  --text-soft: #8A6F5C;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(107, 68, 35, 0.12);
  --shadow-card: 0 6px 18px rgba(107, 68, 35, 0.10);
  --offer-banner-h: 0px;
  --orange-dark: #D66A0F;
  --urgency: #C1421F;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown-darker);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.35);
}
.btn-primary:hover { background: var(--orange-light); }

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: white; }

.btn-dark {
  background: var(--brown-darker);
  color: white;
}
.btn-dark:hover { background: var(--brown-dark); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.icon-btn {
  background: none;
  border: none;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: var(--offer-banner-h, 0px);
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 68, 35, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; display: block; }
.footer-logo-img { height: 72px; width: auto; display: block; margin: 0 auto; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}
.letter-brown { color: var(--brown-dark); }
.letter-orange { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 60px;
  background: linear-gradient(180deg, #FFF8F0 0%, #FCEEDD 100%);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-block;
  background: rgba(245, 130, 31, 0.12);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  max-width: 100%;
}
@media (max-width: 480px) {
  .eyebrow { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.68rem; padding: 6px 12px; }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.highlight { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
}

.mascot-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 6;
}

.asset-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 10px;
  font-style: italic;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}
.shape-1 { width: 90px; height: 90px; background: var(--orange-light); top: -20px; left: -10px; }
.shape-2 { width: 60px; height: 60px; background: var(--blue); bottom: 10px; right: -20px; }
.shape-3 { width: 40px; height: 40px; background: var(--green); bottom: -10px; left: 40px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid rgba(107,68,35,0.06);
  border-bottom: 1px solid rgba(107,68,35,0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item p {
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 0.95rem;
  margin-top: 8px;
}
.trust-icon { font-size: 1.8rem; }

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: 2.2rem;
  margin: 10px 0 12px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}
.section-head .eyebrow { margin-bottom: 0; }

/* ---------- Products ---------- */
.products { padding: 90px 0; }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.product-thumb {
  position: relative;
  background: #F2E7D8;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-placeholder { font-size: 3.5rem; }
.product-title-link { text-decoration: none; color: inherit; }
.product-title-link:hover h3 { color: var(--orange); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: white;
}
.badge-new { background: var(--blue); }
.badge-best { background: var(--orange); }
.badge-school { background: var(--green); }

.product-body { padding: 20px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 10px;
  min-height: 40px;
}
.stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.stars span { color: var(--text-soft); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-darker);
}

/* ---------- Why ---------- */
.why { padding: 90px 0 40px; background: var(--white); }

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

.why-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---------- How it works ---------- */
.how-it-works { padding: 90px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 20px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.3);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 40px 0 90px; background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-card .stars { margin-bottom: 12px; }
.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
}
.testimonial-author div:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}
.testimonial-author span { color: var(--text-soft); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  padding: 70px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.newsletter-inner { width: 100%; }
.newsletter-mascot { width: 84px; height: auto; margin: 0 auto 10px; display: block; }
.newsletter h2 { color: white; font-size: 2rem; margin-bottom: 10px; }
.newsletter p { opacity: 0.95; margin-bottom: 28px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: 3px solid var(--brown-darker); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-darker);
  color: #F1E2D2;
  padding: 70px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.footer-brand .logo-text .letter-brown { color: #E8C9A6; }
.footer-brand .logo-text .letter-orange { color: var(--orange-light); }
.footer-brand p {
  margin: 14px auto 0;
  font-size: 0.9rem;
  color: #D8C0A6;
  max-width: 280px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.social-icons a:hover { background: var(--orange); }
.social-icons a img { width: 18px; height: 18px; object-fit: contain; }

.footer-col h4 {
  font-family: 'Baloo 2', sans-serif;
  color: white;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-col a {
  display: block;
  color: #D8C0A6;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: #C4A98A;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Video / play placeholders ---------- */
.video-section { padding: 90px 0; background: var(--cream); }

.video-main {
  position: relative;
  max-width: 860px;
  margin: 0 auto 28px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #F2E7D8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.video-thumbs {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: #F2E7D8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(74, 46, 30, 0.75);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.video-thumb .play-btn { width: 46px; height: 46px; }
.play-btn::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--orange);
  margin-left: 4px;
}
.video-thumb .play-btn::after { border-width: 8px 0 8px 12px; }

.placeholder-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(74,46,30,0.75);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- Stats / impact strip ---------- */
.stats-strip {
  background: var(--brown-darker);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-value {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange-light);
}
.stat-label {
  color: #E8D3BB;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 6px;
}
.stats-note {
  text-align: center;
  color: #C4A98A;
  font-size: 0.75rem;
  margin-top: 24px;
  font-style: italic;
}

/* ---------- Featured kit / zoom section ---------- */
.zoom-kit { padding: 90px 0; background: var(--white); }

.zoom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.zoom-gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: #F2E7D8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 14px;
  position: relative;
}
.zoom-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.zoom-gallery-thumbs div {
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: #EDE0CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.zoom-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.zoom-content h2 { font-size: 1.9rem; margin-bottom: 10px; }
.zoom-content > p { color: var(--text-soft); margin-bottom: 24px; }

.zoom-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.zoom-spec { font-size: 0.85rem; }
.zoom-spec strong { display: block; color: var(--brown-darker); font-family: 'Baloo 2', sans-serif; }
.zoom-spec span { color: var(--text-soft); }

.zoom-contents {
  list-style: none;
  margin-bottom: 26px;
}
.zoom-contents li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(107,68,35,0.15);
  font-size: 0.95rem;
}
.zoom-contents li:last-child { border-bottom: none; }
.zoom-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.zoom-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Reviews summary ---------- */
.reviews-summary {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
}
.reviews-score { text-align: center; }
.reviews-score .score { font-family: 'Baloo 2', sans-serif; font-size: 3rem; font-weight: 800; color: var(--brown-darker); }
.reviews-score .stars { font-size: 1.1rem; }
.reviews-score .count { font-size: 0.85rem; color: var(--text-soft); }

.reviews-bars { flex: 1; min-width: 220px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; margin-bottom: 6px; color: var(--text-soft); }
.review-bar-track { flex: 1; height: 8px; background: #EEDFCB; border-radius: var(--radius-pill); overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--orange); }

.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.video-testimonial {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background: #EDE0CE;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-testimonial-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(74,46,30,0.85), transparent);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Press / partners ---------- */
.press { padding: 60px 0; background: var(--cream); }
.press-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 30px;
}
.press-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.press-logo {
  width: 150px;
  height: 60px;
  border: 2px dashed rgba(107,68,35,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- Instagram / UGC gallery ---------- */
.ugc { padding: 90px 0; background: var(--white); }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ugc-item {
  aspect-ratio: 1/1;
  border-radius: 14px;
  background: #F2E7D8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
}
.ugc-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Feature row (product page: material / creativity storytelling) ---------- */
.feature-row-section { padding: 70px 0; background: var(--white); }
.feature-row-section.alt { background: var(--cream); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.reverse .feature-row-media { order: 2; }
.feature-row.reverse .feature-row-text { order: 1; }
.feature-row-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display: block;
}
.feature-row-text h2 { font-size: 1.9rem; margin: 8px 0 16px; }
.feature-row-text p { color: var(--text-soft); margin-bottom: 20px; }
.feature-row-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-row-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--text); }
.feature-row-list .check { color: var(--green); font-weight: 800; flex-shrink: 0; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 26px; }
  .feature-row.reverse .feature-row-media { order: 1; }
  .feature-row.reverse .feature-row-text { order: 2; }
}

/* ---------- Before/after reveal slider (product page) ---------- */
.reveal-section { padding: 70px 0; background: var(--white); }
.reveal-slider {
  position: relative; width: 100%; aspect-ratio: 16/9; max-height: 560px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  cursor: ew-resize; touch-action: pan-y; user-select: none;
}
.reveal-layer { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.reveal-before { background: #F2E7D8; }
.reveal-after { background: var(--cream); clip-path: inset(0 20% 0 0); }
.reveal-layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reveal-handle {
  position: absolute; top: 0; bottom: 0; left: 80%; width: 4px; background: white;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(74,46,30,0.1); pointer-events: none;
}
.reveal-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: white; box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--orange);
}
.reveal-tag {
  position: absolute; top: 16px; background: rgba(74,46,30,0.72); color: white; font-size: 0.78rem;
  font-weight: 700; padding: 6px 14px; border-radius: 999px; pointer-events: none;
}
.reveal-tag-left { left: 16px; }
.reveal-tag-right { right: 16px; }
@media (max-width: 640px) {
  .reveal-slider { aspect-ratio: 3/4; }
  .reveal-tag { font-size: 0.68rem; padding: 5px 10px; }
}

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-darker);
}
.faq-icon { transition: transform 0.25s ease; font-size: 1.2rem; color: var(--orange); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- Trust guarantee strip ---------- */
.guarantee-strip {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid rgba(107,68,35,0.06);
  border-bottom: 1px solid rgba(107,68,35,0.06);
}
.guarantee-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.guarantee-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--brown-dark); font-size: 0.9rem; }
.guarantee-item .icon { font-size: 1.4rem; }
.stat[aria-hidden="true"], .guarantee-item[aria-hidden="true"], .stat-mascot { display: none; }

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.payment-icons span {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #D8C0A6;
}
.pay-icon {
  height: 26px; width: auto; object-fit: contain;
}

/* ---------- Page header (shop page) ---------- */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #FFF8F0 0%, #FCEEDD 100%);
}
.page-header h1 { font-size: 2.6rem; margin-bottom: 12px; }
.page-header p { color: var(--text-soft); max-width: 560px; margin: 0 auto; }

.breadcrumb { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--orange); font-weight: 700; }

/* ---------- Filter bar ---------- */
.filter-bar {
  padding: 30px 0;
  border-bottom: 1px solid rgba(107,68,35,0.1);
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(107,68,35,0.15);
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { border-color: var(--orange); }
.filter-chip.active { background: var(--orange); border-color: var(--orange); color: white; }

.sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(107,68,35,0.15);
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Nunito', sans-serif;
}

.shop-grid { padding: 50px 0 90px; }
.product-grid.shop-grid-inner { grid-template-columns: repeat(4, 1fr); }
.product-card[hidden] { display: none; }
.no-results { text-align: center; color: var(--text-soft); padding: 40px 0; display: none; }
.no-results.visible { display: block; }

/* ---------- Header nav dropdown (mega menu) ---------- */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-caret { font-size: 0.6rem; transition: transform 0.2s ease; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  min-width: 280px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.nav-item-dropdown:hover .nav-dropdown-panel,
.nav-item-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.nav-dropdown-panel a:hover { background: var(--cream); color: var(--orange); }
.nav-dropdown-panel a span { color: var(--text-soft); font-weight: 600; }
.nav-dropdown-panel .dropdown-cta {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(107,68,35,0.1);
  color: var(--orange) !important;
  justify-content: center;
}

/* ---------- Language switcher ---------- */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(107,68,35,0.15);
  background: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brown-dark);
  cursor: pointer;
  white-space: nowrap;
}
.lang-current:hover { border-color: var(--orange); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  min-width: 180px;
  display: none;
  z-index: 90;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.lang-option:hover { background: var(--cream); }
.lang-option.active { background: #FFF3E7; color: var(--orange); }

/* ---------- Hero (video background) ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  padding: 72px 0 60px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #C79865 0%, #8A5C34 55%, #6B4423 100%);
}
.hero-media video, .hero-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74,46,30,0.72) 0%, rgba(74,46,30,0.45) 55%, rgba(74,46,30,0.25) 100%);
}
.hero-media-tag {
  position: absolute;
  top: auto;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { background: rgba(255,255,255,0.16); color: #FFE3C2; }
.hero h1 { color: white; }
.hero .highlight { color: var(--orange-light); }
.hero-sub { color: #F3E4D2; }
.hero-trust { color: white; }
.hero-mascot-badge {
  position: absolute;
  bottom: -26px;
  right: 24px;
  width: 84px;
  height: 84px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* ---------- Offer banner (promo countdown) ---------- */
.offer-banner {
  background: repeating-linear-gradient(135deg, var(--orange-light), var(--orange-light) 14px, var(--orange) 14px, var(--orange) 28px);
  color: white;
  position: sticky;
  top: 0;
  z-index: 110;
}
.offer-banner-inner {
  max-width: 1180px; margin: 0 auto; padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px; line-height: 1;
  flex-wrap: wrap; text-align: center; font-size: 0.92rem; font-weight: 700;
}
.offer-banner strong { font-family: 'Baloo 2', sans-serif; }
.offer-banner .ob-timer {
  display: inline-flex; align-items: center; gap: 4px; background: rgba(0,0,0,0.2); padding: 4px 8px; border-radius: 6px;
  font-weight: 800; letter-spacing: 0.03em; white-space: nowrap; line-height: 1; font-variant-numeric: tabular-nums;
}
.offer-banner .ob-code {
  display: inline-flex; align-items: center; font-weight: 800; background: white; color: var(--orange);
  padding: 3px 8px; border-radius: 5px; border: 1.5px dashed white; cursor: pointer; white-space: nowrap; line-height: 1;
}
.offer-banner .ob-code:hover { filter: brightness(0.97); }
.ob-full, .ob-short { display: inline-flex; align-items: center; white-space: nowrap; }
.ob-short { display: none; }
@media (max-width: 640px) {
  .offer-banner-inner { flex-wrap: nowrap; overflow-x: auto; gap: 6px; padding: 8px 14px; font-size: 0.78rem; -ms-overflow-style: none; scrollbar-width: none; }
  .offer-banner-inner::-webkit-scrollbar { display: none; }
  .ob-full { display: none; }
  .ob-short { display: inline-flex; }
}

/* ---------- Trust cards (manual slider, product pages) ---------- */
.trust-slider-wrap { position: relative; }
.trust-slider {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 10px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.trust-slider::-webkit-scrollbar { display: none; }
.trust-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card);
  flex: 0 0 300px; scroll-snap-align: start;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.trust-card .icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 0 14px;
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--brown-darker); }
.trust-card p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }
.trust-card a { color: var(--orange); font-weight: 700; }
.trust-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(107,68,35,0.15); box-shadow: var(--shadow-card);
  display: none; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; color: var(--brown-dark); z-index: 3;
}
.trust-slider-arrow.left { left: -8px; }
.trust-slider-arrow.right { right: -8px; }
@media (max-width: 640px) {
  .trust-card { flex-basis: 82vw; }
}
@media (min-width: 641px) {
  .trust-slider { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .trust-card { flex: none; }
}

/* ---------- Ticker (infinite marquee) ---------- */
.ticker-section { padding: 44px 0; background: var(--cream); overflow: hidden; }
.ticker-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 56px;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-logo {
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
}
.ticker-logo img { max-height: 100%; width: auto; max-width: 150px; object-fit: contain; display: block; }
.ticker-logo:has(img[src*="3.PNG"]) { width: 56px; }

/* ---------- Kit highlight (interactive) ---------- */
.kit-highlight { padding: 40px 0 40px; background: var(--cream); }
.kit-highlight-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.kit-highlight-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.kit-highlight-image {
  aspect-ratio: 16/11;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.kit-highlight-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.kit-highlight-main h3 { font-size: 1.7rem; }
.kit-highlight-main .stars { margin: 10px 0 14px; }
.kit-highlight-main p.desc { color: var(--text-soft); margin-bottom: 20px; }
.kit-highlight-specs { display: flex; gap: 22px; margin-bottom: 22px; flex-wrap: wrap; }
.kit-highlight-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.kit-highlight-detail-link {
  border: none;
  padding: 0;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
}
.kit-highlight-detail-link:hover { color: var(--orange); }

.kit-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kit-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-align: left;
  width: 100%;
}
.kit-highlight-item:hover { transform: translateY(-2px); }
.kit-highlight-item.active { border-color: var(--orange); background: #FFF3E7; }
.kit-highlight-item-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.kit-highlight-item-name { font-weight: 800; font-size: 0.9rem; color: var(--brown-darker); display: block; }
.kit-highlight-item-price { font-size: 0.8rem; color: var(--text-soft); }

/* ---------- Interactive steps ---------- */
.steps-interactive {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.step-tabs { display: flex; flex-direction: column; gap: 14px; }
.step-tab {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: left;
  width: 100%;
}
.step-tab.active { border-color: var(--orange); background: #FFF3E7; }
.step-tab .step-number { flex-shrink: 0; margin: 0; width: 44px; height: 44px; font-size: 1.15rem; }
.step-tab h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step-tab p { color: var(--text-soft); font-size: 0.88rem; }
.step-preview {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

/* ---------- Testimonial infinite sliders ---------- */
.slider-viewport { overflow: hidden; margin-bottom: 16px; }
.video-testimonials.slider-track,
.testimonial-grid.slider-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: ticker-scroll 42s linear infinite;
}
.video-testimonials.slider-track:hover,
.testimonial-grid.slider-track:hover { animation-play-state: paused; }
.video-testimonials.slider-track .video-testimonial { width: 220px; flex-shrink: 0; }
.testimonial-grid.slider-track .testimonial-card { width: 340px; flex-shrink: 0; }

/* ---------- Image separator ---------- */
.image-separator {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('assets/12.PNG');
  background-size: cover;
  background-position: center;
}
.image-separator-overlay { position: absolute; inset: 0; background: rgba(74,46,30,0.38); }
.image-separator-content { position: relative; z-index: 1; text-align: center; color: white; padding: 0 24px; }
.image-separator-content h2 { color: white; font-size: 1.8rem; margin-bottom: 6px; }
.image-separator-content p { color: #F3E4D2; }

/* ---------- Newsletter background image ---------- */
.newsletter { position: relative; overflow: hidden; }
.newsletter-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/19.PNG');
  background-size: cover;
  background-position: center;
}
.newsletter-overlay { position: absolute; inset: 0; background: rgba(74,46,30,0.45); }
.newsletter-inner { position: relative; z-index: 1; }

/* ---------- Product page: value props, qty stepper, cross-sell, guarantee callout ---------- */
.value-props { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 8px; }
.value-props li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text); font-weight: 600; }
.value-props li .check { color: var(--green); font-weight: 800; flex-shrink: 0; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(107,68,35,0.15);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}
.qty-stepper .qty-btn { width: 28px; height: 28px; }
.qty-stepper span { font-weight: 800; min-width: 16px; text-align: center; }

.cross-sell-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cross-sell-thumb {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: #F2E7D8;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.cross-sell-info { flex: 1; min-width: 140px; display: flex; flex-direction: column; }
.cross-sell-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); }
.cross-sell-info strong { color: var(--brown-darker); font-size: 0.95rem; }
.cross-sell-price { font-size: 0.85rem; color: var(--orange); font-weight: 800; }

.guarantee-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFF3E7;
  border: 2px solid rgba(245,130,31,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.guarantee-callout .icon { font-size: 1.8rem; flex-shrink: 0; }
.guarantee-callout strong { display: block; color: var(--brown-darker); font-size: 1.02rem; margin-bottom: 4px; }
.guarantee-callout p { color: var(--text-soft); font-size: 0.9rem; }

.mini-video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto 40px; }
.mini-video-row .video-testimonial { aspect-ratio: 4/5; }

/* ================================================================
   PRODUCT PAGE — clean rebuild (namespaced .phero-* to avoid
   fighting the older boxy/gradient component styles below)
   ================================================================ */
.phero { padding: 44px 0 70px; }
.phero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- gallery / image placeholder: flat, calm, intentional --- */
.phero-image {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #F2E7D8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.phero-image-icon { font-size: 4.5rem; opacity: 0.9; }
.phero-photo-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 12px;
  font-style: italic;
}
.phero-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.phero-thumb {
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: #F2E7D8;
  border: 2px solid transparent;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.phero-thumb.active { border-color: var(--orange); }

/* --- info column --- */
.phero-rating { display: flex; align-items: baseline; gap: 6px; color: var(--orange); font-size: 0.95rem; margin-bottom: 14px; }
.phero-rating strong { color: var(--brown-darker); font-size: 1rem; }
.phero-rating span { color: var(--text-soft); font-weight: 600; font-size: 0.88rem; }

.phero-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.phero-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--brown-darker);
  margin-bottom: 3px;
}

.phero-lede { color: var(--text-soft); font-size: 1.02rem; line-height: 1.6; margin-bottom: 30px; max-width: 46ch; }

.phero-offer-card {
  border: 1px solid rgba(74,46,30,0.10);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(74,46,30,0.05);
  padding: 26px 28px;
  margin-bottom: 18px;
}
.phero-offer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(74,46,30,0.08);
}
.phero-offer-name { display: block; font-family: 'Baloo 2', sans-serif; font-size: 1.15rem; color: var(--brown-darker); }
.phero-offer-meta { font-size: 0.84rem; color: var(--text-soft); }
.phero-offer-price { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--brown-darker); white-space: nowrap; }

.phero-offer-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.phero-offer-bullets li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); font-weight: 600; }
.phero-offer-bullets .tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: white; font-size: 0.68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.phero-buy-row { display: flex; gap: 12px; margin-bottom: 14px; }
.phero-buy-row .qty-stepper { flex-shrink: 0; border-color: rgba(74,46,30,0.12); }
.phero-cta { flex: 1; padding: 15px 20px; font-size: 1.02rem; letter-spacing: 0.01em; }

.phero-video-link {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 10px;
  margin-bottom: 24px;
}
.phero-video-link:hover { color: var(--orange); }

.phero-crosssell {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(74,46,30,0.08);
  border-bottom: 1px solid rgba(74,46,30,0.08);
  margin-bottom: 26px;
}
.phero-crosssell-icon {
  width: 36px; height: 36px; border-radius: 10px; background: #F2E7D8;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.phero-crosssell-text { flex: 1; font-size: 0.86rem; color: var(--text-soft); }
.phero-crosssell-text strong { color: var(--brown-darker); }
.phero-crosssell-btn {
  background: none; border: none; color: var(--orange); font-weight: 800; font-size: 0.86rem; cursor: pointer;
}
.phero-crosssell-btn:hover { text-decoration: underline; }

.phero-timeline { display: flex; justify-content: space-between; margin-bottom: 8px; }
.phero-tl-step { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; flex: 1; }
.phero-tl-step .tl-icon { font-size: 1.2rem; margin-bottom: 2px; }
.phero-tl-step strong { font-size: 0.78rem; color: var(--brown-darker); }
.phero-tl-step small { font-size: 0.72rem; color: var(--text-soft); }
.phero-tl-sep { flex: 0.5; height: 1px; background: rgba(74,46,30,0.12); margin-top: 12px; }

.phero-more-link { text-align: center; margin-top: 40px; }
.phero-more-link a { font-size: 0.9rem; font-weight: 700; color: var(--orange); }

/* ---------- Buybox v2 (price stack, urgency, code, accordion) ---------- */
.pp-priceblock { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 14px; }
.pp-price-old { font-size: 1rem; color: var(--text-soft); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.pp-price-now-row { display: flex; align-items: flex-start; gap: 12px; flex-wrap: nowrap; }
.pp-price-now { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 2.1rem; color: var(--urgency); font-variant-numeric: tabular-nums; white-space: nowrap; }
.pp-price-pct { background: var(--green); color: white; font-weight: 800; font-size: 0.78rem; padding: 4px 9px; border-radius: 999px; white-space: nowrap; margin-top: 4px; }

.pp-code-note {
  display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px; flex-wrap: wrap;
  background: var(--cream); border: 1.5px dashed rgba(107,68,35,0.3); border-radius: 14px; padding: 10px 16px;
  font-size: 0.9rem; margin-bottom: 18px;
}
.pp-code-chip {
  font-weight: 800; background: white; border: 1.5px dashed var(--orange-dark); color: var(--orange-dark);
  padding: 3px 9px; border-radius: 6px; cursor: pointer; letter-spacing: 0.02em; white-space: nowrap;
}
.pp-code-chip:hover { background: #FFF3E7; }
.pp-final { font-weight: 800; color: var(--brown-darker); }
.cn-short { display: none; }
@media (max-width: 480px) {
  .pp-code-note { font-size: 0.78rem; gap: 4px; padding: 9px 12px; }
  .cn-full { display: none; }
  .cn-short { display: inline; }
}

.pp-urgency { display: flex; flex-direction: column; gap: 7px; font-size: 0.88rem; margin-bottom: 20px; }
.pp-stock { color: var(--urgency); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.pp-stockbar { height: 7px; border-radius: 999px; background: #EEDFCB; overflow: hidden; }
.pp-stockbar-fill { height: 100%; background: linear-gradient(90deg, var(--urgency), var(--orange)); }
.pp-viewers { color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.pp-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--urgency); display: inline-block; animation: pp-pulse 1.6s ease-in-out infinite; flex-shrink: 0; }
@keyframes pp-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }
@media (prefers-reduced-motion: reduce) { .pp-pulse { animation: none; } }

.pp-benefits { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pp-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--text); font-weight: 600; }
@media (max-width: 480px) {
  .pp-benefits li { white-space: nowrap; overflow-x: auto; font-size: 0.82rem; -ms-overflow-style: none; scrollbar-width: none; }
  .pp-benefits li::-webkit-scrollbar { display: none; }
}

.pp-secure-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--text-soft); margin: 14px 0 10px; }
.pp-paymethods { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.pp-paymethods span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; border: 1px solid rgba(107,68,35,0.18);
  background: white; color: var(--text-soft); padding: 5px 9px; border-radius: 6px; white-space: nowrap;
}
@media (max-width: 480px) { .pp-paymethods span { font-size: 0.6rem; padding: 4px 6px; } }

.pp-buy-accordion.info-accordion { max-width: none; margin: 26px 0 0; }
.pp-buy-accordion .info-row-question { font-size: 0.92rem; padding: 14px 10px; gap: 10px; white-space: nowrap; }
.pp-buy-accordion .info-row.open .info-row-answer { padding: 0 10px 18px; }
.pp-buy-accordion .info-row-answer p { font-size: 0.86rem; }
.pp-buy-accordion .info-row { margin-bottom: 10px; }
@media (max-width: 480px) {
  .pp-buy-accordion .info-row-question { font-size: 0.74rem; gap: 6px; padding: 12px 8px; }
  .pp-buy-accordion .info-row-question .icon { font-size: 0.9rem; }
}
@media (max-width: 640px) {
  .phero { padding-bottom: 20px; }
}
@media (max-width: 900px) {
  header.site-header .header-inner { padding-top: 10px; padding-bottom: 10px; }
}

/* ---------- Product hero (premium offer layout) ---------- */
.product-hero { padding: 36px 0 60px; }
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: start;
}

.trust-badge-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.trust-badge-line strong { color: var(--brown-darker); font-weight: 800; }
.trust-badge-line .count { color: var(--text-soft); font-weight: 600; }

.product-offer .eyebrow { margin-bottom: 10px; }
.product-offer .zoom-badge { margin-left: 8px; vertical-align: middle; }

.product-title-lg {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--brown-darker);
  margin: 10px 0 14px;
}

.product-hero-pitch { color: var(--text-soft); font-size: 1rem; margin-bottom: 20px; }

.section-divider-text {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 4px 0 20px;
}

.offer-box {
  border: 2px solid rgba(245,130,31,0.35);
  background: #FFFAF4;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 18px;
}
.offer-box-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(245,130,31,0.3);
}
.offer-box-head strong { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; color: var(--brown-darker); display: block; }
.offer-box-sub { font-size: 0.82rem; color: var(--text-soft); }
.offer-box-head .price { font-size: 1.5rem; font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--orange); white-space: nowrap; }
.offer-bonus-row { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); padding: 5px 0; }
.offer-bonus-row .tick { color: var(--green); font-weight: 800; }

.qty-add-row { display: flex; gap: 12px; margin-bottom: 12px; }
.qty-add-row .qty-stepper { flex-shrink: 0; }
.qty-add-row .btn { flex: 1; padding: 14px 20px; font-size: 1.02rem; }
.btn-full { width: 100%; text-align: center; display: block; }

.cross-sell-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 18px 0;
}
.cross-sell-row .cross-sell-thumb { width: 42px; height: 42px; font-size: 1.2rem; }
.cross-sell-row .cross-sell-info { flex: 1; display: flex; flex-direction: column; }
.cross-sell-row .cross-sell-info strong { font-size: 0.88rem; color: var(--brown-darker); }
.cross-sell-row .cross-sell-info span { font-size: 0.8rem; color: var(--orange); font-weight: 800; }

.order-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 22px 0 6px;
}
.timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; flex: 1; }
.timeline-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brown-darker); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 2px;
}
.timeline-step strong { font-size: 0.78rem; color: var(--brown-darker); }
.timeline-step span { font-size: 0.72rem; color: var(--text-soft); }
.timeline-line { flex: 0.6; height: 2px; background: rgba(107,68,35,0.2); margin-top: 19px; }

.hero-secondary-info {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(107,68,35,0.1);
}
.hero-contents-link { font-size: 0.88rem; font-weight: 700; color: var(--orange); text-decoration: underline; }

/* Sticky add-to-cart bar */
.sticky-cart-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(74,46,30,0.12);
  padding: 12px 0;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  z-index: 150;
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-bar-inner { display: flex; align-items: center; gap: 14px; }
.sticky-cart-thumb {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: #F2E7D8;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.sticky-cart-info { flex: 1; min-width: 0; }
.sticky-cart-info strong { display: block; font-size: 0.9rem; color: var(--brown-darker); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cart-info span { font-size: 0.85rem; color: var(--orange); font-weight: 800; }
.sticky-cart-bar .btn { flex-shrink: 0; }

/* ---------- Product detail page ---------- */
.product-gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 14px;
  position: relative;
  background: #F2E7D8;
}
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-gallery-thumbs div {
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: #EDE0CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.related-products { padding: 70px 0 90px; background: var(--white); }
.related-products .product-grid { grid-template-columns: repeat(3, minmax(0, 300px)); justify-content: center; }
@media (max-width: 860px) { .related-products .product-grid { grid-template-columns: minmax(0, 300px); } }

/* ---------- Cart badge + drawer ---------- */
.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74,46,30,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 92vw;
  height: 100%;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(74,46,30,0.2);
  transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(107,68,35,0.1);
}
.cart-drawer-header h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.cart-title-mascot { width: 32px; height: 32px; }

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(107,68,35,0.08);
}
.cart-item-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #F2E7D8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-weight: 800; font-size: 0.92rem; color: var(--brown-darker); }
.cart-item-price { font-size: 0.85rem; color: var(--text-soft); }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(107,68,35,0.15);
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.cart-item-remove {
  background: none; border: none; color: var(--text-soft);
  cursor: pointer; font-size: 0.9rem; align-self: flex-start;
}
.cart-item-remove:hover { color: var(--orange); }

.cart-drawer-empty {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
  color: var(--text-soft);
}
.cart-drawer-empty span { font-size: 2.5rem; }

.cart-drawer-footer { padding: 20px 24px 24px; border-top: 1px solid rgba(107,68,35,0.1); }
.cart-drawer-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 1.05rem;
}
.cart-drawer-total-row strong { font-family: 'Baloo 2', sans-serif; font-size: 1.3rem; color: var(--brown-darker); }
.cart-total-old { text-decoration: line-through; color: var(--text-soft); font-size: 0.9rem; font-weight: 600; margin-right: 6px; }

/* ---------- Cart drawer: reservation banner ---------- */
.cart-reserved-bar {
  align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(135deg, var(--orange-light), var(--orange-light) 10px, var(--orange) 10px, var(--orange) 20px);
  color: white; font-size: 0.8rem; font-weight: 700; padding: 8px 16px; text-align: center;
}
.cart-reserved-timer {
  font-family: 'Baloo 2', sans-serif; background: rgba(0,0,0,0.2); padding: 2px 8px; border-radius: 6px;
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}

/* ---------- Cart drawer: free shipping progress ---------- */
.cart-shipping-progress { padding: 14px 24px 0; }
.cart-shipping-msg { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 8px; text-align: center; }
.cart-shipping-msg strong { color: var(--brown-darker); }
.cart-shipping-progress.reached .cart-shipping-msg { color: var(--green); font-weight: 700; }
.cart-shipping-track { height: 8px; border-radius: 999px; background: #F2E7D8; overflow: hidden; }
.cart-shipping-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transition: width 0.4s ease; }
.cart-shipping-progress.reached .cart-shipping-fill { background: var(--green); }

/* ---------- Cart drawer: upsell ---------- */
.cart-upsell { padding: 0 24px 12px; }
.cart-upsell-label { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 8px; }
.cart-upsell-card {
  display: flex; align-items: center; gap: 12px; background: var(--cream); border-radius: var(--radius-md); padding: 12px;
}
.cart-upsell-thumb {
  width: 44px; height: 44px; border-radius: 10px; background: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cart-upsell-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cart-upsell-info strong { font-size: 0.88rem; color: var(--brown-darker); }
.cart-upsell-info span { font-size: 0.8rem; color: var(--orange); font-weight: 700; }

/* ---------- Cart drawer: secure note + promo code ---------- */
.cart-secure-note { text-align: center; font-size: 0.78rem; color: var(--text-soft); font-weight: 700; margin-bottom: 12px; }
.cart-promo-row { display: flex; gap: 8px; margin-bottom: 6px; }
.cart-promo-input {
  flex: 1; border: 2px solid rgba(107,68,35,0.15); border-radius: var(--radius-pill);
  padding: 9px 16px; font-size: 0.85rem; font-family: 'Nunito', sans-serif;
}
.cart-promo-input:focus { outline: none; border-color: var(--orange); }
.cart-promo-msg { font-size: 0.78rem; margin-bottom: 12px; min-height: 1em; }
.cart-promo-msg.success { color: var(--green); font-weight: 700; }
.cart-promo-msg.error { color: #C0392B; font-weight: 700; }

/* ---------- Collapsible / accordion rows (product page) ---------- */
.info-accordion { max-width: 900px; margin: 0 auto; }
.info-row {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.info-row-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-darker);
}
.info-row-question .icon { font-size: 1.1rem; flex-shrink: 0; }
.info-row-icon-toggle { transition: transform 0.25s ease; color: var(--orange); flex-shrink: 0; margin-left: auto; }
.info-row.open .info-row-icon-toggle { transform: rotate(45deg); }
.info-row-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.info-row.open .info-row-answer { max-height: 500px; padding: 0 22px 20px; }
.info-row-answer p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 10px; }
.info-row-answer ul { padding-left: 18px; color: var(--text-soft); font-size: 0.94rem; }
.info-row-answer li { margin-bottom: 6px; }

/* ---------- Product page: trust / safety / video / payment ---------- */
.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.product-trust-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.product-trust-item .icon { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.product-trust-item span { font-size: 0.82rem; font-weight: 700; color: var(--brown-dark); display: block; }

.safety-section {
  background: var(--white);
  border: 1px solid rgba(74,46,30,0.10);
  box-shadow: 0 2px 16px rgba(74,46,30,0.05);
  padding: 40px 44px;
  border-radius: 18px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.safety-section h2 { color: var(--brown-darker); font-size: 1.3rem; margin-bottom: 24px; }
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.safety-item { display: flex; gap: 14px; align-items: flex-start; }
.safety-item .icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(143,191,127,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.safety-item p { color: var(--text-soft); font-size: 0.9rem; }
.safety-item strong { color: var(--brown-darker); display: block; margin-bottom: 4px; font-size: 0.95rem; }

.product-video-block { max-width: 900px; margin: 0 auto 60px; }
.product-payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.product-payment-row span:first-child { font-weight: 700; color: var(--brown-dark); font-size: 0.85rem; margin-right: 6px; }
.payment-badge {
  border: 1px solid rgba(107,68,35,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brown-dark);
  background: var(--white);
}

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; }
.checkout-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.checkout-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid rgba(107,68,35,0.15);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.checkout-input:focus { outline: none; border-color: var(--orange); }
label:has(.checkout-input) { display: block; margin-bottom: 4px; }

.payment-method-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-method-tab {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 2px solid rgba(107,68,35,0.15);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.payment-method-tab input { position: absolute; opacity: 0; pointer-events: none; }
.payment-method-tab.active { border-color: var(--orange); background: #FFF3E7; color: var(--orange); }

/* ---------- Admin panel ---------- */
.admin-login-wrap {
  max-width: 380px;
  margin: 90px auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-card); }
.admin-stat-card .value { font-family: 'Baloo 2', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--brown-darker); }
.admin-stat-card .label { font-size: 0.8rem; color: var(--text-soft); font-weight: 700; }

.admin-orders-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.admin-orders-table th, .admin-orders-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid rgba(107,68,35,0.08); font-size: 0.88rem; }
.admin-orders-table th { background: var(--cream); font-weight: 800; color: var(--brown-dark); }
.admin-status-select {
  padding: 6px 10px; border-radius: 8px; border: 1px solid rgba(107,68,35,0.2);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--brown-dark);
}
.admin-table-wrap { overflow-x: auto; }

/* ---------- Responsive ---------- */

/* Tablet & below: collapse nav into burger, stack most grids to 2 columns */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .zoom-inner { grid-template-columns: 1fr; padding: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .video-thumbs { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.shop-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .kit-highlight-inner { grid-template-columns: 1fr; }
  .kit-highlight-list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }
  .kit-highlight-item {
    flex-direction: column;
    align-items: flex-start;
    width: 148px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .steps-interactive { grid-template-columns: 1fr; }
  .step-preview { order: -1; }
  .header-actions .btn-sm { display: none; }
  .testimonial-grid:not(.slider-track) { grid-template-columns: 1fr; }
}

/* Mobile nav: dropdown becomes an inline burger menu, mega-menu expands flat */
@media (max-width: 900px) {
  .header-inner { position: relative; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.open a { padding: 10px 0; border-bottom: 1px solid rgba(107,68,35,0.08); }
  .nav-item-dropdown { display: flex; flex-direction: column; }
  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
    display: none;
  }
  .main-nav.open .nav-item-dropdown .nav-dropdown-panel { display: grid; }
  .nav-dropdown-panel a { border-bottom: none; padding: 8px 0; }
}

/* Small phones */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero { min-height: 560px; padding: 56px 0 44px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-media-tag { left: 16px; right: 16px; text-align: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { flex-direction: column; }
  .product-grid.shop-grid-inner { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .filter-row { flex-direction: column; align-items: stretch; }

  .section-head h2 { font-size: 1.6rem; }
  .kit-highlight-main { padding: 22px; }
  .kit-highlight-main h3 { font-size: 1.35rem; }
  .kit-highlight-footer { flex-direction: column; align-items: stretch; }
  .kit-highlight-footer .btn { text-align: center; }

  .step-tab { padding: 14px; gap: 12px; }
  .step-tab .step-number { width: 36px; height: 36px; font-size: 1rem; }

  .video-testimonials.slider-track .video-testimonial { width: 170px; }
  .mini-video-row { grid-template-columns: 1fr; }
  .testimonial-grid.slider-track .testimonial-card { width: 82vw; }

  .image-separator { height: 220px; }
  .image-separator-content h2 { font-size: 1.4rem; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }

  .lang-dropdown { right: -12px; }
  .zoom-footer { flex-direction: column; align-items: stretch; }
  .zoom-footer .btn { text-align: center; }
  .product-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .qty-add-row { flex-direction: column; }
  .qty-add-row .qty-stepper { justify-content: center; }
  .order-timeline { margin: 18px 0 4px; }
  .timeline-step strong { font-size: 0.7rem; }
  .timeline-step span { font-size: 0.64rem; }
  .timeline-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .offer-box-head { flex-direction: column; }
  body { padding-bottom: 78px; }
  .sticky-cart-bar { padding: 10px 0; }
  .phero-buy-row { flex-direction: column; }
  .phero-buy-row .qty-stepper { justify-content: center; }
  .phero-offer-top { flex-direction: column; gap: 6px; }
  .phero-tl-step strong { font-size: 0.68rem; }
  .phero-tl-step small { font-size: 0.6rem; }

  .product-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .mini-video-row { grid-template-columns: repeat(2, 1fr); }
  .cross-sell-card { flex-direction: column; align-items: stretch; text-align: center; }
  .guarantee-callout { flex-direction: column; align-items: center; text-align: center; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-title-lg { font-size: 1.9rem; }
  .phero-grid { grid-template-columns: 1fr; gap: 28px; }
  .phero-title { font-size: 2rem; }
  .safety-section { padding: 36px 22px; border-radius: var(--radius-md); }
  .safety-grid { grid-template-columns: 1fr; }
  .info-row-question { font-size: 0.92rem; padding: 16px 18px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .admin-orders-table { font-size: 0.8rem; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-bar { flex-direction: column; align-items: flex-start; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .logo-text { font-size: 1.2rem; }
  .lang-current span:first-child { font-size: 0.78rem; }
  .header-actions { gap: 8px; }
  .stats-grid { grid-template-columns: 1fr; }
  .ticker-logo { width: 120px; height: 46px; }
}

/* ---------- Mobile homepage: hero stacks below its media; stats & guarantees become sliders ---------- */
@media (max-width: 768px) {
  .hero {
    display: block;
    min-height: 0;
    padding: 0 0 40px;
    background: linear-gradient(135deg, #C79865 0%, #8A5C34 55%, #6B4423 100%);
  }
  .hero-media { position: relative; inset: auto; height: 500px; background: none; }
  .hero-media picture { position: absolute; inset: 0; display: block; }
  .hero-overlay { display: none; }
  .hero-media-tag { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 26px; }

  .stats-strip { padding: 24px 0; overflow: hidden; }
  .stats-strip .container { padding: 0; max-width: none; }
  .stats-grid {
    display: flex; grid-template-columns: none; width: max-content;
    gap: 20px; align-items: center; animation: ticker-scroll 22s linear infinite; padding: 0 20px;
  }
  .stat[aria-hidden="true"] { display: block; }
  .stat { flex: none; white-space: nowrap; }
  .stat-value { font-size: 1.6rem; }
  .stat-mascot { display: flex; align-items: center; justify-content: center; flex: none; width: 34px; }
  .stat-mascot img { width: 100%; height: auto; }

  .guarantee-strip { background: var(--cream); border: none; padding: 18px 0; overflow: hidden; }
  .guarantee-strip .container { padding: 0; max-width: none; }
  .guarantee-grid {
    flex-wrap: nowrap; justify-content: flex-start; width: max-content;
    gap: 40px; animation: ticker-scroll 20s linear infinite;
  }
  .guarantee-item[aria-hidden="true"] { display: flex; }
  .guarantee-item { flex: none; white-space: nowrap; }

  .video-thumbs { display: none; }

  .kit-highlight-main { min-height: 480px; }

  .ticker-track { gap: 24px; }

  .kit-highlight { padding-top: 20px; padding-bottom: 30px; }
  .how-it-works { padding-top: 16px; padding-bottom: 16px; }
  .video-section { padding-top: 16px; }
  .why { padding-bottom: 16px; }
  .testimonials { padding-top: 16px; }

  header.site-header .header-inner { padding-top: 6px; padding-bottom: 6px; }
  .logo-img { height: 40px; }
}
