/* =========================================================
   SATYATERRA — Brand styles
   Bright, energetic, playful. Pomegranate red as the energy
   color (matches the MetaFit tube), green + gold from the
   logo as the premium grounding palette.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600&display=swap');

:root {
  /* Brand palette */
  --st-green:        #1F4A2E;   /* forest green from logo */
  --st-green-deep:   #143320;
  --st-green-soft:   #E8F0E9;
  --st-gold:         #C9A04A;   /* warm gold accent */
  --st-gold-soft:    #F5E9C9;

  /* Energy palette (Vitallfizz vibe) */
  --st-pom:          #E63946;   /* pomegranate red */
  --st-pom-deep:     #B91D2E;
  --st-coral:        #FF7A59;
  --st-yellow:       #FFC93C;
  --st-mint:         #7BCFA0;
  --st-cream:        #FFF8EE;
  --st-ink:          #1A1A1A;
  --st-muted:        #6B6B6B;
  --st-line:         #ECE6D9;
  --st-white:        #FFFFFF;

  /* Type */
  --font-display:    'Cormorant Garamond', 'Georgia', serif;
  --font-body:       'Plus Jakarta Sans', system-ui, sans-serif;
  --font-hand:       'Caveat', cursive;

  /* Layout */
  --radius:          14px;
  --radius-lg:       22px;
  --shadow-soft:     0 6px 24px rgba(20, 51, 32, 0.08);
  --shadow-pop:      0 14px 40px rgba(230, 57, 70, 0.22);
  --container:       1240px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--st-ink);
  background: var(--st-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: 90px 0; }
.section--tight { padding: 60px 0; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--st-green-deep);
  color: var(--st-gold-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
}
.announce span { color: var(--st-gold); }

/* ---------- Header ---------- */
.header {
  background: var(--st-white);
  border-bottom: 1px solid var(--st-line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--st-ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--st-pom); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--st-pom);
  border-radius: 2px;
}

.header__actions { display: flex; gap: 6px; align-items: center; }
.icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .2s, transform .2s;
  font-size: 20px;
  color: var(--st-green-deep);
}
.icon-btn svg { width: 22px; height: 22px; stroke-width: 1.8; }
.icon-btn:hover { background: var(--st-cream); transform: translateY(-1px); color: var(--st-pom); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--st-pom);
  color: var(--st-white);
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--st-white);
}
.cart-count[data-count="0"] { display: none; }

/* Logged-in indicator dot on the user icon */
.icon-btn.is-authed::after {
  content: "";
  position: absolute;
  bottom: 6px; right: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--st-mint);
  border: 2px solid var(--st-white);
}

.menu-toggle { display: none; font-size: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--st-pom);
  color: var(--st-white);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover { background: var(--st-pom-deep); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--st-green);
  border: 2px solid var(--st-green);
}
.btn--outline:hover { background: var(--st-green); color: var(--st-white); }
.btn--gold {
  background: var(--st-gold);
  color: var(--st-green-deep);
}
.btn--gold:hover { background: var(--st-green); color: var(--st-white); }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(230,57,70,0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(201,160,74,0.18), transparent 55%),
    var(--st-cream);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--st-green-soft);
  color: var(--st-green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  color: var(--st-green-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero__title em {
  font-style: italic;
  color: var(--st-pom);
  font-weight: 500;
}
.hero__title .swirl {
  font-family: var(--font-hand);
  color: var(--st-gold);
  font-size: 0.85em;
  font-weight: 600;
  display: inline-block;
  transform: rotate(-3deg) translateY(-8px);
  margin: 0 6px;
}
.hero__sub {
  font-size: 19px;
  color: var(--st-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--st-green-deep);
}
.hero__badge::before {
  content: "✓";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--st-mint);
  color: var(--st-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Hero visual stack */
.hero__visual {
  position: relative;
  height: 540px;
}
.hero__tube {
  position: absolute;
  width: 280px;
  filter: drop-shadow(0 30px 50px rgba(185,29,46,0.35));
  animation: float 6s ease-in-out infinite;
}
.hero__tube--1 { top: 0; left: 10%; z-index: 2; transform: rotate(-8deg); }
.hero__tube--2 { top: 80px; right: 0; z-index: 1; transform: rotate(10deg); width: 230px; opacity: 0.85; animation-delay: -2s; }
.hero__tube--3 { bottom: 0; left: 0; z-index: 1; transform: rotate(-15deg); width: 220px; opacity: 0.9; animation-delay: -4s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--r, -8deg)); }
  50%     { transform: translateY(-14px) rotate(var(--r, -8deg)); }
}
.hero__tube--1 { --r: -8deg; }
.hero__tube--2 { --r: 10deg; }
.hero__tube--3 { --r: -15deg; }

.hero__leaf {
  position: absolute;
  font-size: 80px;
  opacity: 0.18;
  pointer-events: none;
}
.hero__leaf--1 { top: 40px; right: 30px; transform: rotate(25deg); }
.hero__leaf--2 { bottom: 60px; right: 40%; transform: rotate(-40deg); font-size: 60px; }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--st-green-deep);
  color: var(--st-gold-soft);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--st-gold);
  border-bottom: 1px solid var(--st-gold);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::before {
  content: "✦";
  color: var(--st-gold);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section heading ---------- */
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__eyebrow {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--st-pom);
  margin-bottom: 4px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--st-green-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section__title em { color: var(--st-pom); font-style: italic; }
.section__sub {
  color: var(--st-muted);
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 17px;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--st-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,51,32,0.12); }
.product-card__media {
  background: var(--bg, var(--st-cream));
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}
.product-card__media svg { max-height: 100%; width: auto; position: relative; z-index: 1; }
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--st-pom);
  color: var(--st-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--st-green-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}
.product-card__tagline {
  font-size: 14px;
  color: var(--st-muted);
  margin-bottom: 14px;
  flex: 1;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.price-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--st-green-deep);
}
.price-was {
  font-size: 14px;
  color: var(--st-muted);
  text-decoration: line-through;
}
.price-off {
  background: var(--st-yellow);
  color: var(--st-green-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.product-card__actions { display: flex; gap: 8px; }
.product-card__actions .btn { flex: 1; padding: 12px 14px; font-size: 12px; }

/* ---------- Concern pills ---------- */
.concerns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: -10px;
  margin-bottom: 50px;
}
.concern-pill {
  background: var(--st-white);
  border: 2px solid var(--st-line);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--st-green-deep);
  transition: all .2s;
  cursor: pointer;
}
.concern-pill:hover, .concern-pill.active {
  background: var(--st-green);
  color: var(--st-white);
  border-color: var(--st-green);
  transform: translateY(-2px);
}

/* ---------- Promise band ---------- */
.promise-band {
  background: var(--st-green);
  color: var(--st-white);
  padding: 64px 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.promise-item__icon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}
.promise-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--st-gold);
  margin-bottom: 6px;
}
.promise-item__text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ---------- Story / About ---------- */
.story {
  background: var(--st-white);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.story__visual {
  background: linear-gradient(135deg, var(--st-green) 0%, var(--st-green-deep) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--st-white);
}
.story__visual::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: var(--st-gold);
  border-radius: 50%;
  opacity: 0.18;
}
.story__visual::after {
  content: "🌿";
  position: absolute;
  top: 30px; left: 30px;
  font-size: 80px;
  opacity: 0.4;
}
.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--st-gold-soft);
  position: relative;
  z-index: 1;
}
.story__quote::before {
  content: "“";
  font-size: 80px;
  display: block;
  line-height: 0.5;
  color: var(--st-gold);
  margin-bottom: 14px;
}
.story__sign {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--st-gold);
  margin-top: 18px;
}

.story__text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--st-green-deep);
  line-height: 1.05;
  margin-bottom: 20px;
}
.story__text h2 em { color: var(--st-pom); font-style: italic; }
.story__text p {
  color: var(--st-muted);
  font-size: 16px;
  margin-bottom: 16px;
}
.story__text .btn { margin-top: 14px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--st-cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--st-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testimonial__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--st-gold-soft);
  box-shadow: 0 4px 10px rgba(20,51,32,0.08);
}
.testimonial__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--st-green-deep);
  line-height: 1.25;
}
.testimonial__where {
  font-size: 12px;
  color: var(--st-muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--st-green);
  font-weight: 600;
}
.testimonial__verified::before {
  content: "✓";
  background: var(--st-green);
  color: var(--st-white);
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}
.testimonial__stars {
  color: var(--st-yellow);
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--st-green-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.testimonial__body {
  font-size: 14px;
  color: var(--st-muted);
  margin-bottom: 0;
  flex: 1;
}
.testimonial__product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 12px;
  background: var(--st-green-soft);
  color: var(--st-green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.testimonial__product::before { content: "🌿"; font-size: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(circle at 15% 50%, rgba(255,201,60,0.25), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255,122,89,0.25), transparent 50%),
    var(--st-pom);
  color: var(--st-white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-band h2 em { font-style: italic; color: var(--st-yellow); }
.cta-band p { font-size: 18px; opacity: 0.9; margin-bottom: 28px; }
.cta-band .btn--gold:hover { background: var(--st-white); color: var(--st-pom); }

/* ---------- Footer ---------- */
.footer {
  background: var(--st-green-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--st-gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer__about {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--st-gold); }
.footer__sub {
  display: flex;
  gap: 0;
  margin-top: 14px;
}
.footer__sub input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px 0 0 999px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--st-white);
  font-family: inherit;
  font-size: 14px;
}
.footer__sub input::placeholder { color: rgba(255,255,255,0.5); }
.footer__sub button {
  padding: 12px 20px;
  border-radius: 0 999px 999px 0;
  background: var(--st-gold);
  color: var(--st-green-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.footer__socials a:hover { background: var(--st-gold); color: var(--st-green-deep); }

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */
.pdp { padding: 60px 0 30px; }
.pdp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.pdp__gallery {
  background: var(--bg, var(--st-cream));
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.pdp__gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.pdp__gallery svg { max-height: 90%; width: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18)); position: relative; }

.pdp__cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.pdp__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  color: var(--st-green-deep);
  line-height: 1.02;
  margin-bottom: 14px;
  font-weight: 600;
}
.pdp__name em { color: var(--st-pom); font-style: italic; }
.pdp__tagline {
  font-size: 18px;
  color: var(--st-muted);
  margin-bottom: 24px;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--st-muted);
}
.pdp__rating .stars { color: var(--st-yellow); letter-spacing: 2px; font-size: 18px; }

.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.pdp__price .price-now { font-size: 32px; }
.pdp__price .price-was { font-size: 18px; }

.pdp__benefits {
  background: var(--st-green-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
.pdp__benefits h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-green);
  margin-bottom: 14px;
  font-weight: 700;
}
.pdp__benefits ul { list-style: none; }
.pdp__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--st-green-deep);
}
.pdp__benefits li::before {
  content: "✓";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--st-green);
  color: var(--st-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.pdp__qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--st-line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  width: 44px; height: 44px;
  font-size: 20px;
  color: var(--st-green-deep);
  font-weight: 700;
}
.qty-control button:hover { background: var(--st-green-soft); }
.qty-control span {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.pdp__actions { display: flex; gap: 12px; margin-bottom: 30px; }
.pdp__actions .btn { flex: 1; padding: 18px 24px; font-size: 14px; }

.pdp__details {
  border-top: 1px solid var(--st-line);
  padding-top: 24px;
}
.pdp__detail-row {
  border-bottom: 1px solid var(--st-line);
  padding: 16px 0;
}
.pdp__detail-row summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--st-green-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pdp__detail-row summary::after {
  content: "+";
  font-size: 22px;
  color: var(--st-pom);
  transition: transform .2s;
}
.pdp__detail-row[open] summary::after { transform: rotate(45deg); }
.pdp__detail-row p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--st-muted);
  line-height: 1.6;
}

/* ---------- Page heading (about, contact) ---------- */
.page-head {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,201,60,0.20), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(230,57,70,0.12), transparent 50%),
    var(--st-cream);
  padding: 80px 0 60px;
  text-align: center;
}
.page-head__crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  color: var(--st-green-deep);
  line-height: 1;
  font-weight: 600;
}
.page-head h1 em { color: var(--st-pom); font-style: italic; }
.page-head__sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--st-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About content ---------- */
.about-content {
  background: var(--st-white);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.about-cols:nth-child(even) > .about-cols__visual { order: 2; }
.about-cols__visual {
  background: var(--st-green-soft);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}
.about-cols__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201,160,74,0.4), transparent 50%);
}
.about-cols__text h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--st-green-deep);
  line-height: 1.05;
  margin-bottom: 16px;
}
.about-cols__text h2 em { color: var(--st-pom); font-style: italic; }
.about-cols__text p {
  color: var(--st-muted);
  font-size: 16px;
  margin-bottom: 14px;
}

/* ---------- Values grid ---------- */
.values {
  background: var(--st-cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--st-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card__icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--st-green-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.value-card p {
  font-size: 14px;
  color: var(--st-muted);
}

/* ---------- Contact ---------- */
.contact { background: var(--st-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--st-green-deep);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--st-muted);
  margin-bottom: 30px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--st-line);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--st-green-soft);
  color: var(--st-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 16px;
  color: var(--st-green-deep);
  font-weight: 600;
}

.contact-form {
  background: var(--st-cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-green-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--st-line);
  border-radius: var(--radius);
  background: var(--st-white);
  font-family: inherit;
  font-size: 15px;
  color: var(--st-ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--st-pom);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Validation states ---------- */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--st-pom) !important;
  background: #FFF5F6;
}
.form-group .field-error-text {
  color: var(--st-pom-deep);
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group .field-error-text::before {
  content: "⚠";
  font-size: 13px;
}
.form-group .field-hint {
  font-size: 12px;
  color: var(--st-muted);
  margin-top: 6px;
}
.form-group label .req {
  color: var(--st-pom);
  margin-left: 2px;
}
.form-group input:not(:placeholder-shown):valid,
.form-group select:valid {
  /* keep default look; just ensure no red border lingers */
}

/* Password strength / match indicator */
.pw-match {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pw-match.ok    { color: var(--st-green); }
.pw-match.miss  { color: var(--st-pom-deep); }
.pw-match.ok::before   { content: "✓"; }
.pw-match.miss::before { content: "✕"; }

/* Checkbox row (terms consent etc.) */
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--st-green);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 13px;
  color: var(--st-ink);
  line-height: 1.5;
  cursor: pointer;
  font-weight: 500;
}
.form-checkbox label a {
  color: var(--st-pom);
  font-weight: 700;
  text-decoration: underline;
}
.form-checkbox.has-error label { color: var(--st-pom-deep); }

/* ---------- Cart drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--st-white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,51,32,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer__head {
  padding: 24px;
  border-bottom: 1px solid var(--st-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--st-green-deep);
}
.cart-close {
  font-size: 24px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--st-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close:hover { background: var(--st-pom); color: var(--st-white); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty__icon {
  font-size: 60px;
  margin-bottom: 16px;
  opacity: 0.3;
}
.cart-empty p {
  color: var(--st-muted);
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--st-line);
  align-items: center;
}
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--bg, var(--st-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.cart-item__img svg { max-height: 100%; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--st-green-deep);
  margin-bottom: 4px;
}
.cart-item__price { font-size: 14px; color: var(--st-muted); }
.cart-item__price strong { color: var(--st-pom); font-weight: 700; }
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--st-line);
  border-radius: 999px;
  margin-top: 6px;
}
.cart-item__qty button {
  width: 30px; height: 30px;
  font-size: 16px;
  color: var(--st-green-deep);
  font-weight: 700;
}
.cart-item__qty span {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.cart-item__remove {
  font-size: 18px;
  color: var(--st-muted);
  padding: 6px;
  transition: color .2s;
}
.cart-item__remove:hover { color: var(--st-pom); }

.cart-drawer__foot {
  padding: 24px;
  border-top: 1px solid var(--st-line);
  background: var(--st-cream);
}
.cart-totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--st-muted);
}
.cart-totals--grand {
  font-size: 22px;
  color: var(--st-green-deep);
  font-weight: 800;
  margin-bottom: 18px;
}
.cart-totals--grand span:last-child { color: var(--st-pom); }
.cart-note {
  font-size: 12px;
  color: var(--st-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--st-green-deep);
  color: var(--st-white);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1100;
  transition: transform .3s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast::before {
  content: "✓";
  background: var(--st-mint);
  color: var(--st-white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 800;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--st-white);
    padding: 20px;
    border-bottom: 1px solid var(--st-line);
    border-top: 1px solid var(--st-line);
    gap: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  }
  .header__inner { padding: 12px 16px; gap: 8px; }
  .brand__logo { height: 44px; }
  .header__actions { gap: 2px; }
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn svg { width: 20px; height: 20px; }
  .hero__grid, .story__grid, .about-cols, .contact-grid, .pdp__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { height: 420px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .section { padding: 60px 0; }
  .about-cols:nth-child(even) > .about-cols__visual { order: 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .promise-grid, .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 60px; }
  .hero__tube--1 { width: 220px; }
  .hero__tube--2 { width: 180px; }
  .hero__tube--3 { width: 170px; }
  .brand__logo { height: 40px; }
  /* Hide track-order icon on very narrow screens to save space */
  .icon-btn.icon-track { display: none; }
}

/* =====================================================
   SEARCH MODAL
   ===================================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 51, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1005;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }

.search-modal {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 720px;
  background: var(--st-white);
  z-index: 1006;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.search-overlay.open ~ .search-modal,
.search-modal.open { transform: translateX(-50%) translateY(0); }

.search-modal__head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--st-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-modal__icon {
  font-size: 22px;
  color: var(--st-green-deep);
  flex-shrink: 0;
}
.search-modal__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  color: var(--st-ink);
  outline: none;
  font-weight: 500;
}
.search-modal__input::placeholder { color: var(--st-muted); }
.search-close {
  background: var(--st-cream);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-green-deep);
  flex-shrink: 0;
}
.search-close:hover { background: var(--st-pom); color: var(--st-white); }

.search-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 14px 20px;
}
.search-section-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  padding: 14px 10px 8px;
}
.search-result {
  display: flex;
  gap: 14px;
  padding: 12px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  align-items: center;
}
.search-result:hover, .search-result.active {
  background: var(--st-cream);
}
.search-result__img {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--bg, var(--st-cream));
  padding: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result__img svg { max-height: 100%; }
.search-result__info { flex: 1; min-width: 0; }
.search-result__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--st-green-deep);
  font-weight: 600;
  margin-bottom: 2px;
}
.search-result__cat {
  font-size: 12px;
  color: var(--st-muted);
}
.search-result__price {
  color: var(--st-pom);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.search-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--st-muted);
}
.search-empty__icon {
  font-size: 50px;
  opacity: 0.3;
  margin-bottom: 12px;
}
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 10px 16px;
}
.search-suggestions button {
  background: var(--st-cream);
  color: var(--st-green-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.search-suggestions button:hover { background: var(--st-green-soft); }

@media (max-width: 540px) {
  .search-modal { border-radius: 0; max-height: 100vh; height: 100vh; }
}

/* =====================================================
   POLICY PAGES (Terms, Privacy, Refund, Shipping)
   ===================================================== */
.policy-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.policy-toc h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.policy-toc ul { list-style: none; }
.policy-toc li { margin-bottom: 8px; }
.policy-toc a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--st-green-deep);
  font-weight: 600;
  transition: background .15s;
}
.policy-toc a:hover { background: var(--st-cream); color: var(--st-pom); }

.policy-content {
  background: #fff;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  line-height: 1.75;
  color: var(--st-ink);
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--st-green-deep);
  margin: 38px 0 14px;
  scroll-margin-top: 100px;
  font-weight: 600;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--st-green);
  margin: 24px 0 10px;
  font-weight: 600;
}
.policy-content p { margin-bottom: 14px; color: var(--st-ink); }
.policy-content ul, .policy-content ol { margin: 0 0 16px 24px; }
.policy-content li { margin-bottom: 6px; }
.policy-content strong { color: var(--st-green-deep); }
.policy-content a { color: var(--st-pom); font-weight: 600; }
.policy-content a:hover { text-decoration: underline; }
.policy-content .last-updated {
  display: inline-block;
  background: var(--st-green-soft);
  color: var(--st-green);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 600;
}
.policy-content .callout {
  background: var(--st-cream);
  border-left: 3px solid var(--st-gold);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14px;
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.policy-content th,
.policy-content td {
  padding: 12px 14px;
  border: 1px solid var(--st-line);
  text-align: left;
}
.policy-content th {
  background: var(--st-green-soft);
  color: var(--st-green-deep);
  font-weight: 700;
}

@media (max-width: 960px) {
  .policy-wrap { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .policy-content { padding: 30px 22px; }
}


/* =====================================================
   VIDEO GALLERY (horizontal scroller, Plix-style)
   ===================================================== */
.video-gallery { background: var(--st-white); }
.video-gallery__head { margin-bottom: 36px; }

.video-scroller {
  position: relative;
}
.video-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  /* Hide scrollbar on Chrome/Safari/Edge while keeping it functional */
  scrollbar-width: thin;
  scrollbar-color: var(--st-gold-soft) transparent;
}
.video-track::-webkit-scrollbar { height: 6px; }
.video-track::-webkit-scrollbar-track { background: transparent; }
.video-track::-webkit-scrollbar-thumb {
  background: var(--st-gold-soft);
  border-radius: 999px;
}

.video-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease;
}
.video-card:hover { transform: translateY(-4px); }

.video-card__media {
  position: relative;
  width: 220px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--st-green-deep);
  box-shadow: var(--shadow-soft);
}
.video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.video-card:hover .video-card__poster { transform: scale(1.05); }

.video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.video-card__brand {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--st-green-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.video-card__discount {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--st-mint);
  color: var(--st-white);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.04em;
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.video-card__play::before {
  content: "";
  width: 0; height: 0;
  border-left: 18px solid var(--st-pom);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--st-white);
}
.video-card__product-chip {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--st-white);
  border-radius: 12px;
  padding: 6px 10px 6px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.video-card__product-chip img,
.video-card__product-chip svg {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--chip-bg, var(--st-cream));
  padding: 2px;
}
.video-card__product-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--st-green-deep);
  line-height: 1.1;
  max-width: 100px;
}
.video-card__caption {
  font-size: 14px;
  color: var(--st-green-deep);
  font-weight: 600;
  line-height: 1.35;
  padding: 0 6px;
}

.video-scroller__nav {
  position: absolute;
  top: 180px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--st-white);
  box-shadow: 0 6px 18px rgba(20,51,32,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--st-green-deep);
  cursor: pointer;
  z-index: 3;
  transition: background .15s, transform .15s;
}
.video-scroller__nav:hover { background: var(--st-pom); color: var(--st-white); transform: scale(1.05); }
.video-scroller__nav--prev { left: -20px; }
.video-scroller__nav--next { right: -20px; }

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.video-lightbox.open { opacity: 1; pointer-events: auto; }
.video-lightbox__inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-lightbox__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-lightbox__close {
  position: absolute;
  top: -50px; right: 0;
  background: rgba(255,255,255,0.15);
  color: var(--st-white);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background .15s;
}
.video-lightbox__close:hover { background: rgba(255,255,255,0.3); }
.video-lightbox__missing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--st-white);
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--st-green-deep), var(--st-green));
}
.video-lightbox__missing h4 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--st-gold-soft);
}
.video-lightbox__missing p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .video-card { flex: 0 0 180px; }
  .video-card__media { width: 180px; height: 300px; }
  .video-scroller__nav { display: none; }
}
