/*
Theme Name: deutschepepv1
Description: Luxury peptide brand single-product homepage. Upload and activate.
Version: 9.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: deutschepepv1
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --ann-bg:    #EEF2E8;
  --ann-top:   #2a2a2a;
  --white:     #ffffff;
  --off-white: #fafafa;
  --ink:       #1a1a1a;
  --ink-mid:   #444;
  --ink-light: #888;
  --border:    #e8e8e8;
  --lime:      #C8E84A;
  --lime-text: #1a1a1a;
  --sage-bg:   #EEF2E8;
  --section-bg:#f5f5f3;
  --fb: 'DM Sans', -apple-system, sans-serif;
  --logo-font: 'DM Serif Display', Georgia, serif;
}

body { background: var(--white); color: var(--ink); font-family: var(--fb); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── TOP BLACK STRIPE ── */
.top-stripe {
  height: 4px;
  background: var(--ann-top);
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--ann-bg);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }

.header-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Hamburger button (always visible) */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  border-radius: 4px;
  transition: background .2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--section-bg); }
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Logo */
.site-logo {
  text-align: center;
  font-family: var(--logo-font);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.site-logo img {
  max-height: 42px;
  width: auto;
  display: inline-block;
}

/* Right icons */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  opacity: .72;
  flex-shrink: 0;
}
.icon-btn:hover { opacity: 1; background: var(--section-bg); }
.icon-btn svg { width: 21px; height: 21px; }

/* ── SLIDE-OUT DRAWER ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 160;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-logo {
  font-family: var(--logo-font);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.drawer-logo img {
  max-height: 32px;
  width: auto;
  display: inline-block;
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  opacity: .6;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1;
  transition: opacity .2s, background .2s;
}
.drawer-close:hover { opacity: 1; background: var(--section-bg); }

.drawer-nav {
  padding: 16px 0;
  flex: 1;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: background .18s;
}
.drawer-nav a:hover { background: var(--section-bg); }
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav-arrow { opacity: .3; font-size: 14px; }

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-footer .cta-primary {
  max-width: 100%;
  padding: 15px 24px;
  font-size: 13px;
  margin-bottom: 0;
}

/* ── STICKY BUY BAR ── */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform .28s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-left { display: flex; align-items: center; gap: 16px; }
.sticky-bar-name { font-size: 15px; font-weight: 600; }
.sticky-stars { color: #1a1a1a; font-size: 12px; letter-spacing: 1px; }
.sticky-rating { font-size: 12px; color: var(--ink-light); }
.sticky-cta {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: .02em;
  transition: opacity .2s;
}
.sticky-cta:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #c5d8e0;
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #d6e8ef 0%, #b8cdd6 40%, #a8bec8 100%);
}
/* Simulated product in hero */
.hero-product-sim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
/* White fabric panels */
.fabric-left, .fabric-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 38%;
  background: rgba(255,255,255,.92);
  border-radius: 0 0 40% 40%;
}
.fabric-left  { left: 0; transform: skewX(-2deg) translateX(-5%); }
.fabric-right { right: 0; transform: skewX(2deg) translateX(5%); }

/* Product bottle centre */
.hero-bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.bottle-pump {
  width: 12px; height: 36px;
  background: linear-gradient(to bottom, #2a2a2a, #444);
  border-radius: 3px 3px 0 0;
  margin-bottom: -2px;
  position: relative;
}
.bottle-pump::before {
  content: '';
  position: absolute;
  top: -12px; left: -8px;
  width: 28px; height: 14px;
  background: #2a2a2a;
  border-radius: 4px 4px 0 0;
}
.bottle-main {
  width: 110px;
  height: 260px;
  background: linear-gradient(160deg, #a8c4b8 0%, #8fb0a4 50%, #7aa098 100%);
  border-radius: 12px 12px 18px 18px;
  box-shadow: 6px 12px 36px rgba(0,0,0,.18), inset -4px 0 14px rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bottle-label-inner {
  background: rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  width: 80px;
}
.bottle-label-inner .b-brand { font-size: 10px; font-weight: 700; color: #fff; line-height: 1.2; }
.bottle-label-inner .b-sub   { font-size: 8px;  color: rgba(255,255,255,.7); margin-top: 4px; line-height: 1.4; }
/* Rope */
.hero-rope {
  position: absolute;
  top: 15%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(to right, rgba(180,150,100,.6), rgba(160,130,80,.8), rgba(180,150,100,.6));
  border-radius: 2px;
}
/* Clothespins */
.pin {
  position: absolute;
  top: 8%;
  width: 14px; height: 28px;
  background: linear-gradient(to bottom, #c8a870, #b09060);
  border-radius: 3px 3px 1px 1px;
}
.pin-1 { left: 22%; }
.pin-2 { left: 45%; }
.pin-3 { right: 22%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 50%);
}

.hero-content {
  position: absolute;
  bottom: 64px;
  left: 40px;
  right: 40px;
  max-width: 1320px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--lime-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--logo-font);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
}
.proof-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-num   { font-family: var(--logo-font); font-size: 1.8rem; font-weight: 700; color: var(--ink); line-height: 1; }
.proof-label { font-size: 11px; color: var(--ink-light); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.proof-div   { width: 1px; height: 32px; background: var(--border); }

/* ── SHARED SECTION ── */
.sp-section { padding: 88px 40px; }
.sp-inner   { max-width: 1100px; margin: auto; }
.sp-narrow  { max-width: 680px; margin: auto; }
.sec-head   { text-align: center; margin-bottom: 56px; }
.sec-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-family: var(--logo-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

/* ── WHY WE EXIST SECTION ── */
.why-section {
  background: #F5F4EE;
  padding: 88px 40px 0;
  overflow: hidden;
}
.why-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 56px;
}
.why-pill-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.why-section h2 {
  font-family: var(--logo-font);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.why-section p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* Pill slider */
.pill-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 52px;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.pill-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: pillScroll 22s linear infinite;
}
.pill-track:hover { animation-play-state: paused; }

@keyframes pillScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.pill-tag.sage  { background: #C8D8D0; }
.pill-tag.cream { background: #E8E8D8; }
.pill-tag.blue  { background: #B8CCDA; }
.pill-tag.green { background: #C4D4BC; }

.pill-sparkle {
  font-size: 18px;
  color: #b8c8a0;
  flex-shrink: 0;
  line-height: 1;
}

/* ── PRODUCT / BUY SECTION ── */
.buy-section { background: var(--white); }
.buy-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Product image block */
.buy-img-wrap {
  background: var(--section-bg);
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.buy-bottle-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buy-pump {
  width: 16px; height: 44px;
  background: #2a2a2a;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.buy-pump::before {
  content: '';
  position: absolute;
  top: -14px; left: -10px;
  width: 36px; height: 16px;
  background: #2a2a2a;
  border-radius: 4px 4px 0 0;
}
.buy-bottle {
  width: 160px; height: 320px;
  background: linear-gradient(160deg, #b4cfc3 0%, #94b5a9 50%, #84a599 100%);
  border-radius: 16px 16px 24px 24px;
  box-shadow: 12px 20px 56px rgba(0,0,0,.12), inset -6px 0 18px rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-label {
  background: rgba(255,255,255,.28);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  width: 110px;
}
.buy-label .bl-brand { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.buy-label .bl-name  { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 5px; }
.buy-label .bl-line  { width: 30px; height: 1px; background: rgba(255,255,255,.5); margin: 8px auto; }
.buy-label .bl-sub   { font-family: var(--logo-font); font-size: 11px; font-style: italic; color: rgba(255,255,255,.7); }
.buy-badge-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
}

/* Buy copy */
.buy-copy { padding: 0; }
.buy-copy .sec-eyebrow { text-align: left; }
.buy-copy h1 {
  font-family: var(--logo-font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.buy-copy .sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 420px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.stars-blk { font-size: 14px; letter-spacing: 1px; }
.rating-txt { font-size: 13px; color: var(--ink-light); }

/* Variants */
.variant-lbl { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 10px; }
.variants    { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.variant {
  position: relative;
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  transition: all .2s;
}
.variant:hover  { border-color: var(--ink); }
.variant.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.save-pill {
  position: absolute;
  top: -10px; right: -6px;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Price */
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.p-main    { font-family: var(--logo-font); font-size: 2.2rem; font-weight: 700; color: var(--ink); }
.p-compare { font-size: 15px; color: var(--ink-light); text-decoration: line-through; }
.p-per     { font-size: 12px; color: var(--ink-light); }

/* CTAs */
.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  padding: 17px 32px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .2s;
  margin-bottom: 10px;
}
.cta-primary:hover { background: #333; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.cta-secondary {
  display: block;
  width: 100%;
  max-width: 420px;
  padding: 15px 32px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
  transition: border-color .2s;
  margin-bottom: 22px;
}
.cta-secondary:hover { border-color: var(--ink); }

.micro-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.micro-trust span { font-size: 12px; color: var(--ink-light); display: flex; align-items: center; gap: 5px; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--section-bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--border);
}
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--logo-font);
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.step p  { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }

/* ── INGREDIENTS ── */
.ing-section { background: var(--white); }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ing-card {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.ing-card.visible { opacity: 1; transform: translateY(0); }
.ing-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--section-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ing-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.ing-card p  { font-size: 13px; color: var(--ink-mid); line-height: 1.65; margin: 0; }
.ing-dose {
  display: inline-block;
  margin-top: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── RESULTS ── */
.results-section { background: var(--ink); }
.results-section .sec-head { margin-bottom: 48px; }
.results-section .sec-eyebrow { color: var(--lime); }
.results-section h2 { color: #fff; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.result-item {
  background: var(--ink);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.result-wk  { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 10px; }
.result-pct { font-family: var(--logo-font); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 10px; }
.result-lbl { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.results-note { text-align: center; margin-top: 28px; font-size: 12px; color: rgba(255,255,255,.25); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--off-white); }
.testi-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 20px;
}
.testi-stars { font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-family: var(--logo-font); font-size: clamp(1.1rem, 2vw, 1.6rem); font-style: italic; line-height: 1.55; margin-bottom: 18px; color: var(--ink); }
.testi-author { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-light); }
.testi-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ann-bg), #d0dcc8);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; flex-shrink: 0;
}
.testi-grid-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-sm {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.testi-sm.visible { opacity: 1; transform: translateY(0); }
.testi-sm .testi-stars  { font-size: 12px; margin-bottom: 10px; }
.testi-sm .testi-quote  { font-family: var(--logo-font); font-size: .95rem; font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.testi-sm .testi-author { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-light); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { font-size: 22px; transition: transform .28s; color: var(--ink-light); flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.8; color: var(--ink-mid); max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── FINAL CTA ── */
.final-section {
  background: var(--ann-bg);
  text-align: center;
}
.final-section h2 {
  font-family: var(--logo-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin: 10px 0 14px;
}
.final-section p { font-size: 16px; color: var(--ink-mid); margin-bottom: 36px; }
.final-section .cta-primary,
.final-section .cta-secondary { margin: 0 auto 12px; }
.final-guarantee { font-size: 13px; color: var(--ink-light); margin-top: 8px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { font-family: var(--logo-font); font-size: 20px; font-weight: 700; }
.footer-links { display: flex; gap: 0; list-style: none; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,.45); padding: 4px 14px; transition: color .2s; }
.footer-links li a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.28); }

/* ── RESPONSIVE — MOBILE FIRST ── */

/* Tablet: 960px and below */
@media (max-width: 960px) {
  .buy-inner        { grid-template-columns: 1fr; gap: 40px; }
  .buy-img-wrap     { max-width: 420px; margin: 0 auto; width: 100%; }
  .steps-grid       { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .ing-grid         { grid-template-columns: 1fr; }
  .results-grid     { grid-template-columns: repeat(2,1fr); }
  .testi-featured   { grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; }
  .testi-grid-sm    { grid-template-columns: repeat(2,1fr); }
  .testi-avatar     { display: none; }
  .proof-inner      { gap: 16px; }
  .sp-section       { padding: 72px 28px; }
}

/* Mobile: 640px and below */
@media (max-width: 640px) {
  /* Globals */
  body { font-size: 15px; }
  .sp-section   { padding: 56px 20px; }
  .sp-inner     { padding-inline: 0; }

  /* Header */
  .header-inner { padding: 0 16px; height: 58px; }
  .site-logo    { font-size: 22px; }

  /* Hero */
  .hero         { height: 80vh; min-height: 480px; }
  .hero-content { bottom: 32px; padding: 0 20px; }
  .hero-heading { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 24px; }
  .hero-btn     { padding: 14px 32px; font-size: 14px; }
  .hero-badge   { font-size: 10px; padding: 6px 14px; margin-bottom: 16px; }

  /* Proof strip */
  .proof-strip  { padding: 16px 20px; }
  .proof-inner  { gap: 12px; }
  .proof-div    { display: none; }
  .proof-num    { font-size: 1.4rem; }
  .proof-label  { font-size: 10px; }

  /* Sticky bar */
  .sticky-bar        { padding: 10px 16px; }
  .sticky-bar-name   { font-size: 15px; }
  .sticky-rating     { display: none; }
  .sticky-cta        { padding: 9px 18px; font-size: 12px; }

  /* Buy section */
  .buy-inner    { gap: 32px; padding: 56px 20px; }
  .buy-copy h1  { font-size: 2rem; }
  .buy-copy .sub { font-size: 14px; }
  .variants     { gap: 8px; }
  .variant      { padding: 9px 18px; font-size: 13px; }
  .p-main       { font-size: 1.9rem; }
  .cta-primary  { max-width: 100%; padding: 16px 24px; font-size: 13px; }
  .cta-secondary { max-width: 100%; font-size: 12px; padding: 14px 20px; }
  .micro-trust  { gap: 10px; }
  .micro-trust span { font-size: 11px; }

  /* Why section */
  .why-section  { padding: 56px 20px 0; }
  .why-inner    { padding-bottom: 40px; }
  .why-section h2 { font-size: 1.6rem; }
  .pill-tag     { padding: 11px 20px; font-size: 14px; }

  /* How it works */
  .step-num     { width: 50px; height: 50px; font-size: 16px; }
  .step h3      { font-size: 15px; }

  /* Ingredients */
  .ing-card     { padding: 20px; gap: 14px; }
  .ing-icon     { width: 40px; height: 40px; font-size: 18px; }

  /* Results */
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .result-pct   { font-size: 2.2rem; }
  .result-lbl   { font-size: 12px; }

  /* Testimonials */
  .testi-featured { padding: 28px 20px; }
  .testi-quote  { font-size: 1rem; }
  .testi-grid-sm  { grid-template-columns: 1fr; }
  .testi-sm     { padding: 22px 18px; }

  /* FAQ */
  .faq-q        { font-size: 14px; padding: 18px 0; }

  /* Final CTA */
  .final-section h2 { font-size: 1.8rem; }
  .final-section .cta-primary,
  .final-section .cta-secondary { max-width: 100%; }

  /* Footer */
  .footer-inner   { flex-direction: column; text-align: center; gap: 16px; padding: 28px 20px; }
  .footer-links   { flex-wrap: wrap; justify-content: center; }
  .footer-links li a { padding: 4px 10px; font-size: 12px; }

  /* Drawer */
  .drawer { width: 90vw; }

  /* Announcement */
  .ann-bar { font-size: 12px; padding: 8px 12px; }
}

/* Very small: 380px */
@media (max-width: 380px) {
  .site-logo  { font-size: 20px; }
  .hero       { height: 75vh; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f5f5f3; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* WP compatibility */
.site-main{margin:0!important;padding:0!important}
.woocommerce-notices-wrapper{max-width:1100px;margin:0 auto;padding:0 32px}
.woocommerce ul.products{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;list-style:none;padding:0;margin:0}
.woocommerce ul.products li.product a img{width:100%;border-radius:8px}
.woocommerce ul.products li.product .button,.woocommerce a.button,.woocommerce button.button{background:var(--ink);color:#fff;font-family:var(--fb);font-size:12px;font-weight:500;border-radius:100px;border:1.5px solid var(--ink);padding:10px 22px;transition:all .2s;cursor:pointer}
.woocommerce ul.products li.product .button:hover{background:transparent;color:var(--ink)}
.woocommerce div.product{max-width:1100px;margin:auto;padding:64px 40px;display:grid;grid-template-columns:1fr 1fr;gap:64px}
.woocommerce div.product .product_title{font-family:var(--logo-font);font-size:2.2rem;font-weight:400}
.woocommerce div.product .single_add_to_cart_button{background:var(--ink)!important;color:#fff!important;border:none!important;border-radius:100px!important;font-family:var(--fb)!important;font-size:13px!important;font-weight:500!important;padding:16px 40px!important;cursor:pointer!important}
@media(max-width:768px){.woocommerce div.product{grid-template-columns:1fr;padding:40px 20px}}
