/* ==========================================================================
   DRFRIEDELS® — Storefront stylesheet
   Brand: Cool Green #32bcad + Bluish Black #141a21 on white. Montserrat.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand colors (per Style Guide page 12) */
  --teal: #32bcad;
  --teal-2: #2aa294;
  --teal-3: #56cabd;
  --teal-soft: #d6f1ed;
  --teal-bg: #e8f7f4;
  --ink: #141a21;
  --ink-2: #2c343d;
  --ink-3: #5a626c;
  --ink-4: #8a929b;

  /* Surfaces */
  --bg: #ffffff;
  --bg-2: #f7f7f8;
  --bg-3: #eef0f2;
  --paper: #ffffff;
  --rule: #e5e7eb;
  --rule-2: #d4d6da;

  /* States */
  --ok: #2d6a3a;
  --bad: #b32a1f;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20,26,33,0.06), 0 1px 1px rgba(20,26,33,0.04);
  --shadow-md: 0 6px 16px rgba(20,26,33,0.08), 0 2px 4px rgba(20,26,33,0.04);
  --shadow-lg: 0 18px 44px rgba(20,26,33,0.14), 0 4px 12px rgba(20,26,33,0.06);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;
  --max: 1280px;
  --gut: clamp(20px, 4vw, 56px);
  --t-fast: 160ms cubic-bezier(.2,.7,.3,1);
  --t-med: 320ms cubic-bezier(.2,.7,.3,1);

  /* Type */
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: var(--ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--teal-2); }

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-2); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 80px) 0; }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: rgba(255,255,255,0.78); }
.section--soft { background: var(--bg-2); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.section--ink .eyebrow { color: var(--teal-3); }
.section--ink .eyebrow::before { background: var(--teal-3); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-2); max-width: 60ch; }

.split-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  flex-wrap: wrap;
}
.split-title > .accent { color: var(--teal); font-weight: 700; }

/* ---------- Buttons (per Style Guide page 16) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  -webkit-appearance: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: var(--teal-2);
  border-color: var(--teal-2);
  color: #fff;
}
.btn:active { transform: translateY(0); }

.btn--teal { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn--ghost:hover { background: var(--bg-2); border-color: var(--ink); color: var(--ink); }

.btn--pill { border-radius: var(--r-pill); padding: 14px 32px; }
.btn--lg { padding: 18px 38px; font-size: 14px; }
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--block { width: 100%; }
.btn--arrow svg { transition: transform var(--t-fast); }
.btn--arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav__logo img { height: 64px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--t-fast);
  transform-origin: left;
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  color: var(--ink);
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.cart-btn:hover .cart-btn__count { background: var(--teal); color: #fff; }
.cart-btn__count {
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-pill);
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  transition: all var(--t-fast);
}
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--gut) 20px;
  }
  .nav__links.is-open li { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav__links.is-open li:last-child { border-bottom: 0; }
  .nav__logo img { height: 52px; }
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px var(--gut);
}
.announce strong { color: var(--teal-3); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(24px, 4vw, 64px) 0 clamp(32px, 5vw, 64px);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* v2 hero uses 3 blocks (intro / trio / pitch) positioned via areas
   so the visual sits between H1 and the long copy on mobile.
   On desktop the trio is vertically centered next to the stacked text. */
.hero__inner--areas {
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "intro visual"
    "pitch visual";
  align-items: start;
  row-gap: clamp(14px, 2vw, 22px);
  column-gap: clamp(28px, 4vw, 64px);
}
.hero__intro { grid-area: intro; }
.hero__trio  { grid-area: visual; align-self: center; }
.hero__pitch { grid-area: pitch; }
@media (max-width: 900px) {
  .hero__inner--areas {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "pitch";
    row-gap: 18px;
  }
  .hero__trio { align-self: stretch; }
}

.hero__title {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero__title .accent { color: var(--teal); }
.hero__sub { font-size: clamp(1rem, 1.25vw, 1.15rem); margin: 0 0 18px; color: var(--ink-2); max-width: 52ch; line-height: 1.5; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__meta { margin-top: 20px; display: flex; gap: 24px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }
.hero__meta strong { color: var(--ink); font-weight: 700; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  z-index: 2;
}

/* ──── MOBILE-FIRST HERO OVERRIDES (v2) ────────────────────────────
   Goal: when a phone visitor lands on the homepage, the first screen
   shows H1 + rating + the trio visual + ONE primary CTA. The longer
   pitch / pricing tag / meta lines fall below the fold by design. */
@media (max-width: 720px) {
  .hero { padding: clamp(16px, 3vw, 32px) 0 clamp(24px, 4vw, 48px); }
  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.02;
    margin: 0 0 12px;
  }
  .hero .eyebrow { margin-bottom: 8px; font-size: 10px; }
  .hero__rating { margin-bottom: 4px; font-size: 13px; }
  .hero__rating .stars { font-size: 14px; }
  .hero__sub {
    font-size: 14.5px;
    line-height: 1.5;
    margin: 0 0 16px;
  }
  .hero__pricing-tag { display: none; }
  .hero__ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; padding: 15px 20px; font-size: 13px; }
  .hero__meta { display: none; }
  .hero__trio {
    aspect-ratio: 4 / 3;
    padding: 10px;
    gap: 6px;
    margin: 2px 0 4px;
  }
  .hero__trio .trio-main { padding: 8px; }
  .hero__trio .trio-side { padding: 8px; }
  .hero__trio .trio-pill {
    bottom: 6px; left: 6px;
    padding: 4px 7px; font-size: 9px;
  }
  .ribbon-save {
    top: 8px;
    padding: 4px 10px 4px 12px;
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .hero__title { font-size: 1.8rem; }
  .hero__sub { font-size: 14px; }
}

/* Trio inner aspect ratio: 1:1 on desktop keeps height predictable so
   the hero fits on a 13" laptop without the bottom getting cut. */
@media (min-width: 901px) {
  .hero__trio { aspect-ratio: 1 / 1; }
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  padding: 22px var(--gut);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.trust__item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
@media (max-width: 720px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust__item { font-size: 12px; }
}

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stats--four { grid-template-columns: repeat(4, 1fr); }
.stat { background: #fff; padding: 36px 24px; text-align: center; }
.stat__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--ink); margin: 0; line-height: 1; letter-spacing: -0.02em; }
.stat__num .accent { color: var(--teal); }
.stat__label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 10px; }
@media (max-width: 880px) {
  .stats--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; }
  .stats--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .stats--four { grid-template-columns: 1fr; }
}

/* ---------- Product grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}
.product-card__media {
  display: block;
  aspect-ratio: 1;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  z-index: 2;
}
.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-2); margin-bottom: 8px; }
.product-card__title { font-size: 1.2rem; margin: 0 0 8px; font-weight: 700; }
.product-card__title a { color: var(--ink); }
.product-card__title a:hover { color: var(--teal-2); }
.product-card__desc { font-size: 14px; color: var(--ink-3); margin: 0 0 18px; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__price { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.product-card__price del { color: var(--ink-4); font-weight: 500; margin-left: 6px; font-size: 0.9em; }

/* ---------- Featured banners (homepage) ---------- */
.featured-banner {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.featured-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.featured-banner img { width: 100%; height: auto; display: block; }
.featured-banners {
  display: grid;
  gap: 24px;
}
@media (min-width: 880px) {
  .featured-banners { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---------- Feature tiles grid ---------- */
.feature-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
@media (max-width: 760px) { .feature-tiles { grid-template-columns: repeat(2, 1fr); } }
.feature-tile {
  border-radius: var(--r-md);
  overflow: hidden;
}
.feature-tile img { width: 100%; height: auto; display: block; }

/* ---------- Two-col splits (about feature blocks) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 880px) { .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; } }
.split__media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
}
.split__media img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Promo banner (dark with teal heading, per Style Guide page 16) ---------- */
.promo-banner {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) var(--gut);
  border-radius: var(--r-lg);
  text-align: center;
}
.promo-banner h2 { color: var(--teal); margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.promo-banner p { color: rgba(255,255,255,0.82); font-size: clamp(0.95rem, 1.2vw, 1.05rem); margin: 0 auto 28px; max-width: 56ch; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 28px;
}
.testimonial__stars { color: var(--teal); margin-bottom: 14px; letter-spacing: 2px; font-size: 14px; }
.testimonial__text { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; }
.testimonial__author { font-size: 13px; font-weight: 700; color: var(--ink); }
.testimonial__verified { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-2); margin-left: 8px; }

/* ---------- PDP ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 880px) { .pdp { grid-template-columns: 1fr; } }
.pdp__gallery { position: sticky; top: 100px; align-self: start; }
@media (max-width: 880px) { .pdp__gallery { position: static; } }
.pdp__main {
  aspect-ratio: 1;
  background: var(--bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp__thumbs:has(.pdp__thumb:only-child) { display: none; }
.pdp__thumb {
  background: var(--bg-2);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover, .pdp__thumb.is-active { border-color: var(--teal); }

.pdp__crumbs { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.pdp__crumbs a { color: var(--ink-3); }
.pdp__crumbs a:hover { color: var(--teal-2); }
.pdp__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 8px; }
.pdp__tagline { color: var(--ink-3); font-size: 1.1rem; margin: 0 0 22px; }
.pdp__rating { display: flex; align-items: center; gap: 8px; margin: 0 0 28px; font-size: 14px; color: var(--ink-3); }
.pdp__rating .stars { color: var(--teal); letter-spacing: 2px; }
.pdp__price { font-size: 2.2rem; font-weight: 800; color: var(--ink); margin: 0 0 6px; line-height: 1; }
.pdp__price del { color: var(--ink-4); font-weight: 500; font-size: 0.6em; margin-left: 12px; }
.pdp__save { display: inline-block; background: var(--teal); color: #fff; padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--r-pill); margin-bottom: 28px; }

.pdp__bullets { list-style: none; padding: 0; margin: 0 0 28px; }
.pdp__bullets li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--ink-2); }
.pdp__bullets li:last-child { border-bottom: 0; }
.pdp__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 0 var(--teal);
}

.pdp__buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 18px; flex-wrap: wrap; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 52px;
}
.qty button {
  background: transparent;
  border: 0;
  width: 44px;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--t-fast);
}
.qty button:hover { background: var(--bg-2); }
.qty input {
  width: 44px;
  height: 100%;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  background: transparent;
}
.qty input:focus { outline: none; }

.pdp__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp__cta-row .btn { flex: 1; min-width: 200px; }

.pdp__specs {
  margin: 36px 0 0;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.pdp__specs h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 18px; color: var(--ink); }
.pdp__specs dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 28px; margin: 0; font-size: 14px; }
.pdp__specs dt { color: var(--ink-3); font-weight: 600; }
.pdp__specs dd { margin: 0; color: var(--ink); font-weight: 500; }

/* ---------- A+ content modules (PDP marketing blocks) ---------- */
.aplus { padding: clamp(40px, 6vw, 80px) 0; }
.aplus__module { margin-bottom: clamp(20px, 2.4vw, 32px); border-radius: var(--r-md); overflow: hidden; }
.aplus__module:last-child { margin-bottom: 0; }
.aplus__module img { width: 100%; height: auto; display: block; }

/* ---------- PDP conversion enhancements ---------- */
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ok);
  margin-bottom: 22px;
}
.pdp__stock::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 106, 58, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45, 106, 58, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(45, 106, 58, 0.06); }
}

.pdp__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
}
.pdp__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.3;
}
.pdp__trust-item svg { width: 22px; height: 22px; color: var(--teal); }
@media (max-width: 480px) {
  .pdp__trust { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .pdp__trust-item { flex-direction: row; justify-content: flex-start; text-align: left; }
}

/* Inline mini-FAQ on PDPs */
.pdp__faq {
  margin-top: 36px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.pdp__faq h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink);
}
.pdp__faq details {
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
}
.pdp__faq details:last-child { border-bottom: 0; }
.pdp__faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pdp__faq summary::-webkit-details-marker { display: none; }
.pdp__faq summary::after {
  content: '+';
  font-size: 18px;
  color: var(--teal);
  font-weight: 400;
  flex-shrink: 0;
}
.pdp__faq details[open] summary::after { content: '−'; }
.pdp__faq details > p { margin: 10px 0 0; font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* Sticky mobile CTA */
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--rule);
  padding: 10px var(--gut);
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -6px 18px rgba(20,26,33,0.08);
  transform: translateY(100%);
  transition: transform var(--t-med);
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__info { flex: 1; min-width: 0; }
.sticky-buy__name { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-buy__price { font-size: 14px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.sticky-buy__price del { color: var(--ink-4); font-weight: 500; margin-left: 6px; font-size: 0.85em; }
.sticky-buy .btn { padding: 12px 18px; font-size: 12px; }
@media (max-width: 880px) {
  .sticky-buy { display: flex; }
  body.has-sticky-buy { padding-bottom: 80px; }
  /* Hide on tiny screens when keyboard is up */
}

/* ---------- Cross-sell strip ---------- */
.cross-sell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .cross-sell { grid-template-columns: 1fr; } }
.cross-sell .product-card { font-size: 13px; }
.cross-sell .product-card__body { padding: 18px; }

/* ---------- Amazon alternative buy button (under the main PDP CTAs) ---------- */
.pdp__amazon {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.pdp__amazon:hover {
  border-color: #ff9900;
  color: var(--ink);
  background: #fffaf0;
}
.pdp__amazon strong { color: var(--ink); font-weight: 700; letter-spacing: 0.06em; }
.pdp__amazon svg { flex-shrink: 0; color: #ff9900; }
.pdp__amazon span:last-child { margin-left: auto; color: var(--ink-3); font-size: 11px; }

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,26,33,0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--t-med);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(20,26,33,0.18);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer__head h3 { margin: 0; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-drawer__close { background: transparent; border: 0; cursor: pointer; padding: 6px; color: var(--ink); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { text-align: center; padding: 50px 0; color: var(--ink-3); }
.cart-empty p { margin-bottom: 18px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__img {
  width: 72px;
  height: 72px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-size: 13px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.cart-item__price { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--rule-2); border-radius: var(--r-sm); margin-top: 8px; }
.cart-item__qty button { background: transparent; border: 0; width: 26px; height: 26px; cursor: pointer; font-weight: 700; }
.cart-item__qty span { padding: 0 8px; font-size: 12px; font-weight: 700; }
.cart-item__remove { background: transparent; border: 0; cursor: pointer; color: var(--ink-3); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 0; }
.cart-item__remove:hover { color: var(--bad); }

.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--rule); background: var(--bg-2); }
.cart-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-3); margin-bottom: 8px; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; padding-top: 12px; margin-top: 8px; margin-bottom: 16px; border-top: 1px solid var(--rule-2); color: var(--ink); }
.cart-note { font-size: 11px; color: var(--ink-3); text-align: center; margin: 12px 0 0; letter-spacing: 0.04em; }

.free-ship-bar { background: var(--teal-soft); border-radius: var(--r-sm); padding: 10px 12px; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 14px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 7vw, 90px) var(--gut) 28px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer .footer-wordmark { font-size: 1.8rem; font-weight: 800; letter-spacing: 0.05em; color: #fff; margin-bottom: 18px; display: inline-block; }
.site-footer .footer-wordmark .reg { font-size: 0.5em; vertical-align: super; font-weight: 600; color: var(--teal-3); margin-left: 2px; }
.site-footer .footer-wordmark .bold { font-weight: 900; }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; max-width: 38ch; }
.site-footer h4 { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color var(--t-fast); }
.site-footer a:hover { color: var(--teal-3); }

.newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  overflow: hidden;
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter input:focus { outline: none; background: rgba(255,255,255,0.06); }
.newsletter button {
  background: var(--teal);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast);
}
.newsletter button:hover { background: var(--teal-2); }

.footer-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { content: '−'; }
.faq details > *:not(summary) { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ---------- Forms ---------- */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: border-color var(--t-fast);
  font-family: inherit;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--teal); }
.form-row textarea { min-height: 140px; resize: vertical; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-med), opacity var(--t-med);
  box-shadow: var(--shadow-lg);
}
.toast.is-show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast::before { content: '✓'; color: var(--teal-3); margin-right: 8px; font-weight: 700; }

/* ---------- Pages: about / static ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 1.4em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.4em; }
.prose p, .prose li { font-size: 15px; line-height: 1.8; color: var(--ink-2); }
.prose ul { padding-left: 1.4em; }
.prose strong { color: var(--ink); }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-lg { margin-top: clamp(40px, 5vw, 64px); }
.mt-md { margin-top: clamp(24px, 3vw, 36px); }
.muted { color: var(--ink-3); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Conversion proof / offer blocks ---------- */
.section-sub {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--ink-3);
  line-height: 1.65;
  font-size: 15px;
}
.pdp__assurance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: -8px 0 22px;
}
.pdp__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(50,188,173,0.10);
  color: var(--teal-2);
  border: 1px solid rgba(50,188,173,0.22);
  border-radius: var(--r-pill);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.7vw, 22px);
}
.video-grid--three { grid-template-columns: repeat(3, 1fr); }
.video-grid--one { grid-template-columns: minmax(260px, 560px); justify-content: center; }
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(2, 1fr); } .video-grid--three { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .video-grid, .video-grid--three, .video-grid--one { grid-template-columns: 1fr; } }
.video-card {
  appearance: none;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--bg-2); }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-card__play {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(20,26,33,0.88);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 19px;
  padding-left: 3px;
  box-shadow: 0 12px 28px rgba(20,26,33,0.22);
}
.video-card__body { display: block; padding: 15px 16px 17px; }
.video-card__body strong { display: block; color: var(--ink); font-size: 13px; line-height: 1.35; }
.video-card__body small { display: block; margin-top: 5px; color: var(--ink-3); font-size: 11px; line-height: 1.4; }
.seo-copy {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 46px);
}
.seo-copy h2 { margin-bottom: 26px; }
.seo-copy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.seo-copy__grid h3 { margin: 0 0 8px; font-size: 16px; }
.seo-copy__grid p { margin: 0; color: var(--ink-3); line-height: 1.65; font-size: 14px; }
@media (max-width: 820px) { .seo-copy__grid { grid-template-columns: 1fr; } }
.trust--inline { border-radius: var(--r-md); border: 1px solid var(--rule); padding: 18px; }
.product-card__perks { display: flex; flex-wrap: wrap; gap: 6px; margin: -6px 0 16px; }
.product-card__perks span { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-2); background: rgba(50,188,173,.10); border-radius: 999px; padding: 4px 8px; }

/* ==========================================================================
   v2 CONVERSION ENHANCEMENTS — appended 2026-05-20
   New: announce bar with rotating offer, hero badges, product card rating,
        bundle/set card, urgency banner, payment icons, in-the-box callout,
        comparison table, price-in-button, ribbon save badge.
   ========================================================================== */

/* ---------- Rotating announcement bar ---------- */
/* The track uses a single-cell grid: every slide stacks in the same
   row, so the bar auto-sizes to the TALLEST slide's wrapped height —
   no clipping when a message wraps to two lines on a phone. */
.announce--rotate { padding: 10px var(--gut); }
.announce--rotate .announce__track {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.announce--rotate .announce__slide {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1.35;
  padding: 0 8px;
  opacity: 0;
  transition: opacity 520ms cubic-bezier(.2,.7,.3,1);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  pointer-events: none;
}
.announce--rotate .announce__slide.is-on { opacity: 1; pointer-events: auto; }
.announce--rotate .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-3); display: inline-block; flex-shrink: 0; }
@media (max-width: 480px) {
  .announce--rotate { padding: 8px var(--gut); }
  .announce--rotate .announce__slide { font-size: 11px; letter-spacing: 0.06em; gap: 7px; }
  .announce--rotate .dot { width: 4px; height: 4px; }
}

/* ---------- Hero polish ---------- */
.hero__trio {
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--bg-2) 0%, #fff 50%, var(--teal-soft) 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 16px;
}
.hero__trio .trio-main {
  grid-row: 1 / span 2;
  background: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hero__trio .trio-side {
  background: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.hero__trio img { width: 100%; height: 100%; object-fit: contain; }
.hero__trio .trio-pill {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 9px; border-radius: var(--r-pill);
}
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.hero__rating .stars { color: var(--teal); letter-spacing: 2px; font-size: 16px; }
.hero__rating strong { color: var(--ink); font-weight: 700; }
.hero__rating .sub { color: var(--ink-3); font-size: 13px; }

/* Ribbon save badge */
.ribbon-save {
  position: absolute; top: 14px; left: -6px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff; padding: 6px 14px 6px 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(20,26,33,0.18);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%, 6px 50%);
  padding-left: 16px;
}

/* ---------- Product card: rating row + improved layout ---------- */
.product-card__rating { display: flex; align-items: center; gap: 6px; margin: -4px 0 10px; font-size: 12px; color: var(--ink-3); }
.product-card__rating .stars { color: var(--teal); letter-spacing: 1px; font-size: 12px; }
.product-card__rating strong { color: var(--ink); font-weight: 700; }
.product-card__save { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-2); margin-left: 8px; }

/* ---------- EDC Set / Bundle card ---------- */
.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2531 60%, #0e1218 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(50,188,173,0.28) 0%, rgba(50,188,173,0) 60%);
  pointer-events: none;
}
.bundle-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(50,188,173,0.18);
  color: var(--teal-3);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.bundle-card h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 14px; }
.bundle-card h2 .accent { color: var(--teal-3); }
.bundle-card p { color: rgba(255,255,255,0.78); max-width: 50ch; margin-bottom: 22px; }
.bundle-card__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.bundle-card__price .now { font-size: 2.2rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.bundle-card__price .was { font-size: 1.1rem; color: rgba(255,255,255,0.45); text-decoration: line-through; }
.bundle-card__price .save { background: var(--teal); color: #fff; padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.bundle-card__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bundle-card__visual {
  position: relative;
  aspect-ratio: 1.1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px; padding: 14px;
}
.bundle-card__visual .bv {
  background: #fff; border-radius: var(--r-sm);
  display: grid; place-items: center; padding: 8px;
}
.bundle-card__visual .bv--main { grid-row: 1 / span 2; }
.bundle-card__visual img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 760px) {
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-card__visual { order: -1; }
}

/* ---------- Urgency / ship-today banner ---------- */
.urgency {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, rgba(50,188,173,0.10) 0%, rgba(50,188,173,0.02) 100%);
  border: 1px solid rgba(50,188,173,0.25);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin: 0 0 22px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.urgency svg { flex-shrink: 0; color: var(--teal-2); }
.urgency strong { color: var(--ink); }
.urgency .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(50,188,173,0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ---------- In-the-box callout ---------- */
.in-box {
  margin: 24px 0 22px;
  padding: 18px 20px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--teal);
}
.in-box h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin: 0 0 10px; }
.in-box ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.in-box li { font-size: 13px; color: var(--ink-2); position: relative; padding-left: 18px; }
.in-box li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800; font-size: 12px;
}
@media (max-width: 480px) { .in-box ul { grid-template-columns: 1fr; } }

/* ---------- Payment methods row ---------- */
.payment-row { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; flex-wrap: wrap; font-size: 11px; color: var(--ink-3); }
.payment-row strong { color: var(--ink); font-weight: 700; margin-right: 4px; }
.payment-row .pm {
  height: 22px; padding: 0 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--rule); border-radius: 3px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink-2);
  font-family: var(--sans);
}
.payment-row .pm--visa { color: #1a1f71; }
.payment-row .pm--mc { color: #eb001b; }
.payment-row .pm--amex { color: #006fcf; }
.payment-row .pm--apple { font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.payment-row .pm--gp { color: #4285f4; }

/* ---------- Price-in-button helper ---------- */
.btn .btn__price {
  display: inline-flex; align-items: center;
  margin-left: 10px; padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.28);
  font-weight: 800; font-size: 14px; letter-spacing: 0;
  text-transform: none;
}
.btn--outline .btn__price { border-left-color: rgba(20,26,33,0.18); color: var(--ink); }

/* ---------- Bigger save badge on PDP ---------- */
.pdp__save--big {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--teal); color: #fff;
  padding: 7px 14px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.pdp__save--big .save-amt { background: rgba(255,255,255,0.22); padding: 2px 8px; border-radius: var(--r-pill); font-weight: 800; }

/* ---------- Sticky buy bar polish (existing class extended) ---------- */
.sticky-buy__save { display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-2); background: rgba(50,188,173,0.12); border-radius: var(--r-pill); padding: 2px 8px; }

/* ---------- Risk reversal mini-strip ---------- */
.risk-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin: 22px 0 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.risk-strip__item {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--rule);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-2);
}
.risk-strip__item:last-child { border-right: 0; }
.risk-strip__item strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 2px; font-weight: 800; }
@media (max-width: 480px) {
  .risk-strip { grid-template-columns: 1fr; }
  .risk-strip__item { border-right: 0; border-bottom: 1px solid var(--rule); }
  .risk-strip__item:last-child { border-bottom: 0; }
}

/* ---------- Newsletter incentive (footer) ---------- */
.newsletter-incentive {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(50,188,173,0.15);
  color: var(--teal-3);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 10px;
}

/* ---------- Comparison table (homepage / shop) ---------- */
.compare {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}
.compare table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 16px 14px; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
.compare thead th { background: var(--bg-2); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare th { font-weight: 700; color: var(--ink); }
.compare td { color: var(--ink-2); }
.compare .price { font-weight: 800; color: var(--ink); white-space: nowrap; }
.compare .price del { color: var(--ink-4); font-weight: 500; margin-right: 4px; font-size: 0.85em; }
.compare .btn { padding: 9px 16px; font-size: 11px; white-space: nowrap; }
.compare .pick { background: var(--teal-soft); color: var(--teal-2); padding: 3px 8px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; display: inline-block; }
@media (max-width: 680px) {
  .compare table, .compare thead, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
  .compare thead { display: none; }
  .compare tr { border-bottom: 1px solid var(--rule-2); padding: 8px 0; }
  .compare td, .compare th { border-bottom: 0; padding: 6px 14px; }
  .compare td::before { content: attr(data-label) ': '; font-weight: 800; color: var(--ink-3); margin-right: 6px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
}

/* ---------- Section variety: pull-quote / callout ---------- */
.pull-quote {
  max-width: 800px; margin: 0 auto;
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute; top: 8px; left: 24px;
  font-size: 8rem; line-height: 1; color: var(--teal); opacity: 0.18;
  font-family: Georgia, serif;
}
.pull-quote p { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); font-weight: 600; line-height: 1.45; margin: 0 0 18px; }
.pull-quote .cite { font-size: 13px; font-weight: 700; color: var(--ink-2); letter-spacing: 0.04em; }
.pull-quote .stars { color: var(--teal); letter-spacing: 2px; margin-bottom: 10px; display: block; font-size: 16px; }

/* ---------- Hero CTA pricing tag ---------- */
.hero__pricing-tag {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--bg-2);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin: 0 0 18px;
  font-size: 13px;
  border: 1px solid var(--rule);
}
.hero__pricing-tag .from { color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 10px; }
.hero__pricing-tag .num { color: var(--ink); font-weight: 800; font-size: 16px; }
.hero__pricing-tag .dot { width: 4px; height: 4px; background: var(--ink-4); border-radius: 50%; display: inline-block; }
.hero__pricing-tag .pill { background: var(--teal); color: #fff; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; }

/* ---------- Section header eyebrow centered icon variant ---------- */
.eyebrow--center { display: inline-flex; justify-content: center; }

/* ---------- Reveal-on-scroll (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms cubic-bezier(.2,.7,.3,1), transform 600ms cubic-bezier(.2,.7,.3,1); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   v2.1 MOBILE TIGHTENING — appended 2026-05-20
   Reduce vertical spacing and text density on small screens so the first
   viewport on phones is product-first, not paragraph-first.
   ========================================================================== */
@media (max-width: 720px) {
  /* Section padding — much tighter on mobile */
  .section          { padding: clamp(36px, 7vw, 64px) 0; }
  .section--tight   { padding: clamp(24px, 5vw, 44px) 0; }

  /* Smaller, calmer headings */
  h1 { font-size: clamp(1.9rem, 7.6vw, 2.6rem); letter-spacing: -0.018em; }
  h2 { font-size: clamp(1.45rem, 5.8vw, 1.9rem); }
  .lead { font-size: 15px; line-height: 1.55; }

  /* Eyebrows — slightly smaller to free vertical room */
  .eyebrow { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 10px; }

  /* Trust strip: tighter padding, smaller icon */
  .trust { padding: 14px var(--gut); }
  .trust__inner { gap: 12px; }
  .trust__item { font-size: 11px; }
  .trust__item svg { width: 18px; height: 18px; }

  /* Announcement bar — shrink so the header isn't tall on phones */
  .announce { font-size: 10px; padding: 8px var(--gut); }
  .announce--rotate .announce__track { height: 14px; }

  /* Header logo size */
  .nav__logo img { height: 44px; }
  .nav { padding: 10px var(--gut); gap: 12px; }
  .cart-btn { padding: 7px 12px; font-size: 11px; }
  .cart-btn span:not(.cart-btn__count) { display: none; } /* show only icon + count */

  /* Pricing tag — when shown, keep it compact */
  .hero__pricing-tag { padding: 4px 10px; font-size: 12px; }
  .hero__pricing-tag .num { font-size: 14px; }

  /* Featured banners + section spacing */
  .featured-banners { gap: 14px; }

  /* Stats: 2x2 instead of single column at small screens — feels denser, fits more */
  .stats, .stats--four { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 22px 14px; }
  .stat__num { font-size: 1.75rem; }
  .stat__label { font-size: 10px; }

  /* Bundle card — single column with image first, but smaller */
  .bundle-card { padding: 28px 22px; gap: 22px; border-radius: var(--r-md); }
  .bundle-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
  .bundle-card p { font-size: 14px; margin-bottom: 16px; }
  .bundle-card__price .now { font-size: 1.7rem; }
  .bundle-card__price .was { font-size: 0.95rem; }
  .bundle-card__price .save { font-size: 10px; padding: 3px 8px; }
  .bundle-card__visual { padding: 10px; gap: 6px; aspect-ratio: 1.3; }
  .bundle-card__ctas { gap: 10px; }
  .bundle-card__ctas .btn { width: 100%; }

  /* Comparison table — already turns into stacked cards at 680px;
     tighten the data-label and font here */
  .compare td, .compare th { padding: 8px 14px; font-size: 13px; }
  .compare .price { font-size: 14px; }
  .compare .btn { width: 100%; margin-top: 4px; }

  /* PDP — pricing block and CTA stack */
  .pdp { padding-top: 24px; gap: 28px; }
  .pdp__title { font-size: 1.55rem; }
  .pdp__tagline { font-size: 0.95rem; margin-bottom: 14px; }
  .pdp__price { font-size: 1.8rem; }
  .pdp__price del { font-size: 0.55em; margin-left: 8px; }
  .pdp__save--big { font-size: 11px; padding: 6px 11px; margin-bottom: 16px; }
  .pdp__stock { font-size: 12px; margin-bottom: 16px; }
  .urgency { font-size: 12px; padding: 10px 12px; margin-bottom: 16px; }
  .pdp__assurance span { font-size: 10px; padding: 5px 9px; }
  .pdp__bullets li { font-size: 13px; padding: 8px 0 8px 26px; }
  .pdp__cta-row { flex-direction: column; }
  .pdp__cta-row .btn { width: 100%; min-width: 0; }
  .btn .btn__price { margin-left: 8px; padding-left: 8px; font-size: 13px; }

  /* In-the-box on small screens: single column for readability */
  .in-box { padding: 14px 14px; }
  .in-box ul { grid-template-columns: 1fr; }
  .in-box li { font-size: 13px; }
  .risk-strip__item { font-size: 10px; padding: 10px 6px; }
  .risk-strip__item strong { font-size: 12px; }
  .payment-row { gap: 6px; font-size: 10px; }
  .payment-row .pm { height: 20px; font-size: 9px; padding: 0 6px; }

  /* Testimonials — comfortable card padding */
  .testimonial { padding: 20px; }
  .testimonial__text { font-size: 14px; }

  /* Video card titles tighter */
  .video-card__body { padding: 11px 12px 13px; }
  .video-card__body strong { font-size: 12px; }
  .video-card__body small { font-size: 10px; }

  /* Pull-quote — less padding */
  .pull-quote { padding: 28px 22px; }
  .pull-quote p { font-size: 1.1rem; }
  .pull-quote::before { font-size: 5rem; top: 4px; left: 14px; }

  /* Section-sub copy */
  .section-sub { font-size: 13px; }

  /* Newsletter — keep input + button compact in the footer */
  .newsletter { max-width: 100%; }
  .newsletter input { padding: 11px 12px; font-size: 12px; }
  .newsletter button { padding: 11px 14px; font-size: 10px; }
}

/* Even tighter on phones with very narrow widths (iPhone SE, etc.) */
@media (max-width: 380px) {
  .nav__logo img { height: 38px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .pdp__title { font-size: 1.35rem; }
  .pdp__price { font-size: 1.55rem; }
  .bundle-card h2 { font-size: 1.3rem; }
  .stat__num { font-size: 1.5rem; }
}

/* ==========================================================================
   v2.2 ADMIN UPDATE TAB — appended 2026-05-20
   Multi-step UI (Export / Prompt / Upload+Apply / Backups) inside admin.
   ========================================================================== */
.update-step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  margin-bottom: 18px;
  overflow: hidden;
}
.update-step__head {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.update-step__num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-weight: 800; font-size: 14px;
}
.update-step__head h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: var(--ink); }
.update-step__head p  { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.55; max-width: 75ch; }
.update-step__body { padding: 22px; }

.update-info {
  background: var(--bg-2);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 13px;
}
.update-info > summary { cursor: pointer; font-weight: 700; font-size: 13px; color: var(--ink); list-style: none; }
.update-info > summary::-webkit-details-marker { display: none; }
.update-info > summary::before { content: '▸ '; color: var(--teal-2); }
.update-info[open] > summary::before { content: '▾ '; }
.update-info ul { margin: 10px 0 8px; padding-left: 18px; color: var(--ink-2); line-height: 1.65; }
.update-info code { background: #fff; padding: 1px 6px; border-radius: 3px; border: 1px solid var(--rule); font-size: 12px; }

.update-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 8px;
}
#update-request {
  width: 100%; min-height: 140px;
  padding: 14px 16px;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: 14px; line-height: 1.5;
  background: #fff;
  resize: vertical;
}
#update-request:focus { outline: none; border-color: var(--teal); }

.update-prompt-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.update-prompt {
  margin-top: 16px;
  background: var(--ink); color: rgba(255,255,255,0.92);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55;
  max-height: 420px; overflow: auto;
  white-space: pre-wrap; word-break: break-word;
}

.update-drop {
  border: 2px dashed var(--rule-2);
  border-radius: var(--r-md);
  padding: 32px 22px;
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
  cursor: pointer;
  background: var(--bg-2);
}
.update-drop.is-dragover { border-color: var(--teal); background: rgba(50,188,173,0.05); }
.update-drop:hover { border-color: var(--ink); }
.update-drop__inner svg { color: var(--ink-3); margin: 0 auto 10px; }
.update-drop p { font-size: 14px; color: var(--ink); margin: 0 0 6px; }
.update-drop small { font-size: 12px; color: var(--ink-3); }
.update-drop code { background: #fff; padding: 1px 6px; border-radius: 3px; border: 1px solid var(--rule); font-size: 11px; }
.link-btn { background: none; border: 0; padding: 0; color: var(--teal-2); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: inherit; font-family: inherit; }

.update-staged {
  margin-top: 16px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 14px 18px;
}
.update-staged__row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.update-staged__row strong { color: var(--ink); }
.update-staged--bad { color: var(--bad); }
.update-staged--bad strong { color: var(--bad); }
.update-progress {
  margin-top: 10px;
  height: 6px; border-radius: 3px;
  background: var(--rule);
  overflow: hidden;
}
.update-progress > div {
  height: 100%; width: 35%;
  background: var(--teal);
  animation: update-progress-slide 1.2s ease-in-out infinite;
}
@keyframes update-progress-slide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(120%); }
  100% { transform: translateX(380%); }
}

.update-preview {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 18px 20px;
}
.update-preview__head {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.update-preview__head strong { color: var(--ink); font-size: 18px; }
.update-preview__err strong { color: var(--bad); }
.update-list { margin-top: 10px; }
.update-list summary {
  cursor: pointer; padding: 8px 12px;
  background: var(--bg-2); border-radius: var(--r-sm);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-2); list-style: none;
}
.update-list summary::-webkit-details-marker { display: none; }
.update-list summary strong { color: var(--ink); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.update-list summary span { font-weight: 800; color: var(--ink); }
.update-list ul {
  list-style: none; padding: 10px 12px; margin: 0;
  max-height: 240px; overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.7;
}
.update-list--write summary { border-left: 3px solid var(--teal); }
.update-list--keep  summary { border-left: 3px solid var(--ink-4); }
.update-preview__errs {
  margin-top: 12px; padding: 12px 14px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r-sm);
  color: #991b1b; font-size: 13px;
}
.update-preview__errs ul { margin: 6px 0 0; padding-left: 18px; }

.update-apply-actions {
  margin-top: 18px;
  padding: 16px 18px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-sm);
}
.update-confirm {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-2); cursor: pointer;
}
.update-confirm input { margin-top: 2px; }

.update-result {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.update-result--ok { background: rgba(50,188,173,0.10); border: 1px solid rgba(50,188,173,0.30); color: var(--ink); }
.update-result--ok strong { color: var(--teal-2); }
.update-result--bad { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.update-result--bad ul { margin: 8px 0 0; padding-left: 20px; }

.update-backups {
  display: grid;
  gap: 10px;
}
.update-backup {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--bg-2); border-radius: var(--r-sm);
  font-size: 13px;
}
.update-backup strong { display: block; color: var(--ink); font-weight: 700; font-family: ui-monospace, monospace; font-size: 12px; }
.update-backup small { display: block; color: var(--ink-3); margin-top: 2px; }
.update-backup .muted { color: var(--ink-4); font-size: 11px; }
.update-backup code { background: #fff; padding: 1px 6px; border-radius: 3px; border: 1px solid var(--rule); font-size: 11px; }

@media (max-width: 720px) {
  .update-step__head { padding: 14px 16px; gap: 12px; }
  .update-step__body { padding: 16px; }
  .update-drop { padding: 22px 14px; }
}

/* ==========================================================================
   v2.2 OFFER RESULT (newsletter signup → one-time code reveal)
   ========================================================================== */
.offer-reveal {
  margin-top: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(50,188,173,0.42);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}
.offer-reveal strong { color: var(--teal-3); display: block; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.offer-reveal__row { display: flex; gap: 10px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.offer-reveal__code {
  background: #fff; color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800; letter-spacing: 0.08em;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px;
}
.offer-reveal__copy {
  background: var(--teal); color: #fff;
  border: 0; padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
}
.offer-reveal__copy:hover { background: var(--teal-2); }
.offer-reveal__hint { display: block; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.6); }
