/* =========================================================
   Retatrutida 5 mg — Landing estática
   HTML + CSS + JS puro, sin frameworks.
   ========================================================= */

/* PALETA — Peptix House Colombia · Biohacking / longevidad */
:root {
  --primary-mint: #94e1d4;
  --primary-teal: #4dbfb6;
  --primary-teal-dark: #3a948d;
  --logo-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  --bg-dark-obsidian: #0a0c0d;
  --bg-soft-mint: #eef9f7;
  --glass-effect: rgba(255, 255, 255, 0.1);
  --text-pure-white: #ffffff;
  --text-silver-gray: #b0b0b0;
  --text-dark: #2d2d2d;
  --accent-gold: #c5a059;

  /* Tokens usados por el layout existente */
  --background: var(--bg-soft-mint);
  --foreground: var(--text-dark);
  --muted: color-mix(in srgb, var(--primary-mint) 22%, white);
  --muted-foreground: #5a6d6a;
  --card: #ffffff;
  --border: color-mix(in srgb, var(--primary-mint) 38%, #c5ddd6);
  --primary: var(--primary-teal);
  --primary-600: var(--primary-teal-dark);
  --primary-foreground: var(--text-pure-white);
  --accent: color-mix(in srgb, var(--primary-mint) 32%, white);
  --accent-foreground: #1a5c56;
  --destructive: #e11d48;
  --radius: 14px;

  --shadow-sm: 0 1px 2px rgba(10, 12, 13, 0.06);
  --shadow-md: 0 10px 28px -12px rgba(10, 12, 13, 0.14);
  --shadow-lg: 0 28px 56px -24px rgba(10, 12, 13, 0.22);
  --shadow-glow-mint: 0 0 24px color-mix(in srgb, var(--primary-mint) 45%, transparent);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.accent { color: var(--primary-teal); }
.hero-title .accent {
  background: linear-gradient(90deg, var(--primary-mint), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-footer .logo-text .accent {
  background: linear-gradient(90deg, var(--primary-mint), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head h2.h-accent {
  background: linear-gradient(90deg, var(--primary-mint), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary-teal);
  color: var(--primary-foreground);
  box-shadow: 0 6px 22px -8px color-mix(in srgb, var(--primary-teal) 55%, transparent);
}
.btn-primary:hover {
  background: var(--primary-teal-dark);
  box-shadow: 0 0 20px color-mix(in srgb, var(--primary-mint) 50%, transparent), 0 8px 24px -8px color-mix(in srgb, var(--primary-teal) 45%, transparent);
}
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 13px 24px; font-size: 15px; height: 48px; }
.btn-block { width: 100%; }

.pulse-cta { animation: pulseCta 2.8s ease-in-out infinite; }
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 6px 22px -8px color-mix(in srgb, var(--primary-teal) 50%, transparent); }
  50%      { box-shadow: 0 0 28px color-mix(in srgb, var(--primary-mint) 55%, transparent), 0 10px 32px -6px color-mix(in srgb, var(--primary-teal) 45%, transparent); }
}

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--glass-effect);
  border: 1px solid color-mix(in srgb, var(--primary-mint) 35%, transparent);
  border-radius: 999px;
  color: var(--text-pure-white);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header .icon-btn:hover {
  background: color-mix(in srgb, var(--primary-mint) 18%, transparent);
  color: var(--primary-mint);
  border-color: var(--primary-mint);
}
.slide-menu .icon-btn {
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
}
.slide-menu .icon-btn:hover { background: var(--accent); color: var(--primary); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: var(--bg-dark-obsidian);
  border-bottom: 2px solid color-mix(in srgb, var(--primary-mint) 40%, transparent);
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg-dark-obsidian) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--primary-mint);
}
.site-header .logo-text { color: var(--text-pure-white); }
.site-header .logo-text .accent {
  background: linear-gradient(90deg, var(--primary-mint), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-header .primary-nav a { color: var(--text-silver-gray); }
.site-header .primary-nav a:hover { color: var(--primary-mint); }
.header-inner {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo-wordmark {
  width: auto;
  height: 34px;
  object-fit: contain;
}
.logo-wordmark--footer {
  height: 30px;
}
.logo-badge {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--primary-foreground);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-gold) 55%, transparent), var(--shadow-glow-mint);
}
.logo-badge .brand-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-badge.plain {
  background: transparent;
  box-shadow: none;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.primary-nav { display: none; gap: 28px; font-size: 14px; font-weight: 500; }
.primary-nav a:hover { color: var(--primary); }
@media (min-width: 768px) { .primary-nav { display: flex; } }
.header-actions { display: flex; align-items: center; gap: 8px; }

/* ---------- Slide Menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg-dark-obsidian) 65%, transparent);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.slide-menu {
  position: fixed; top: 0; right: 0;
  height: 100dvh;
  width: 88%; max-width: 420px;
  background: var(--background);
  z-index: 50;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.slide-menu.open { transform: translateX(0); }
.slide-menu-header {
  height: 64px;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.slide-menu-body {
  flex: 1; overflow-y: auto;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 22px;
}
.menu-group-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}
.menu-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  transition: background-color .2s ease, color .2s ease;
}
.menu-list li a:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}
.slide-menu-footer { padding: 20px; border-top: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg-dark-obsidian);
  color: var(--text-pure-white);
}
@media (min-width: 768px) { .hero { padding: 150px 0 100px; } }
.hero-bg {
  pointer-events: none;
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  left: 50%; top: -80px;
  width: min(1100px, 140vw);
  height: 560px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--primary-teal) 28%, transparent) 0%,
    color-mix(in srgb, var(--primary-mint) 12%, transparent) 42%,
    transparent 70%
  );
  filter: blur(72px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 55%;
  height: 70%;
  max-height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, #f093fb 22%, transparent), color-mix(in srgb, #4facfe 18%, transparent));
  filter: blur(90px);
  opacity: 0.45;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid color-mix(in srgb, var(--primary-mint) 45%, transparent);
  background: var(--glass-effect);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--text-silver-gray);
}
.pill svg { color: var(--primary-mint); flex-shrink: 0; }
.pill.subtle {
  background: color-mix(in srgb, var(--primary-mint) 14%, white);
  border-color: var(--border);
  color: var(--accent-foreground);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(32px, 6vw, 60px);
  margin-top: 24px;
  text-wrap: balance;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
}
.hero-sub {
  max-width: 640px;
  margin-top: 20px;
  color: var(--text-silver-gray);
  font-size: clamp(15px, 2vw, 18px);
  text-wrap: pretty;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.hero .btn-outline {
  border-color: color-mix(in srgb, var(--primary-mint) 55%, transparent);
  color: var(--text-pure-white);
  background: transparent;
}
.hero .btn-outline:hover {
  border-color: var(--primary-mint);
  background: var(--glass-effect);
  color: var(--text-pure-white);
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 760px;
  margin-top: 44px;
}
@media (min-width: 640px) { .hero-features { grid-template-columns: repeat(3, 1fr); } }
.hero-features li {
  background: var(--glass-effect);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid color-mix(in srgb, var(--primary-mint) 35%, transparent);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.45);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hero-features li:hover {
  border-color: color-mix(in srgb, var(--primary-mint) 65%, transparent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-mint), 0 16px 40px -20px rgba(0, 0, 0, 0.35);
}
.feature-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--primary-teal) 22%, transparent);
  color: var(--primary-mint);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--primary-mint) 30%, transparent);
}
.hero-features h3 { margin-top: 12px; font-size: 15px; font-family: var(--font-sans); font-weight: 600; color: var(--text-pure-white); }
.hero-features p { margin-top: 6px; font-size: 14px; color: var(--text-silver-gray); line-height: 1.55; }

/* ---------- Section & Headings ---------- */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section.small-top { padding-top: 16px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  margin-top: 8px;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 38px);
  text-wrap: balance;
}
.section-sub {
  max-width: 640px; margin: 12px auto 0;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary-teal-dark);
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}
.two-col h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  text-wrap: balance;
}
.two-col .lead {
  margin-top: 16px;
  color: var(--muted-foreground);
  line-height: 1.65;
  text-wrap: pretty;
}
.two-col .lead + .lead { margin-top: 12px; }

.stack-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.science-figure {
  margin: 0;
}
.science-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.science-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-foreground);
}

.science-callout {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent-gold);
  background: color-mix(in srgb, var(--primary-mint) 20%, white);
  font-size: 14px;
  line-height: 1.65;
  color: var(--foreground);
}
.science-callout strong {
  color: var(--primary-teal-dark);
}

.section--surface {
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--bg-soft-mint) 88%, white) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.peptide-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .peptide-gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.gallery-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gallery-card:hover {
  transform: translateY(-2px);
}
.gallery-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--muted);
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-card:hover .gallery-media img {
  transform: scale(1.04);
}
.gallery-card figcaption {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.gallery-card figcaption strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--foreground);
}
.gallery-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-teal-dark);
}
.gallery-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-foreground);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.gallery-card.card {
  padding: 0;
}
.gallery-card.card:hover {
  box-shadow: var(--shadow-md), var(--shadow-glow-mint);
}
.card.pad-lg { padding: 28px; }
.card.highlight {
  border-color: color-mix(in srgb, var(--accent-gold) 55%, var(--primary-mint));
  background: color-mix(in srgb, var(--primary-mint) 12%, white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-gold) 25%, transparent);
}
.card-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
}

.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.info-cell {
  background: var(--muted);
  border-radius: 14px;
  padding: 16px;
}
.info-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--primary-mint) 35%, white);
  color: var(--primary-teal-dark);
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid color-mix(in srgb, var(--primary-mint) 50%, transparent);
}
.info-k {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.info-v { margin-top: 2px; font-weight: 600; }

/* ---------- Benefits & Steps ---------- */
.benefit-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { transition: border-color .2s ease, transform .2s ease; }
.benefit-card:hover {
  border-color: color-mix(in srgb, var(--primary-teal) 45%, transparent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 16px;
}
.benefit-card h3 { margin-top: 16px; font-size: 17px; font-family: var(--font-sans); font-weight: 600; }
.benefit-card p { margin-top: 4px; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

.steps-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; padding-top: 28px; }
.step-number {
  position: absolute; top: -14px; left: 20px;
  background: var(--primary); color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 700; font-size: 12px;
  padding: 4px 10px; border-radius: 999px;
}

/* ---------- Protocol Table ---------- */
.table-card { padding: 0; overflow: hidden; }
.table-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--primary); color: var(--primary-foreground);
  font-size: 13px; font-weight: 600;
  padding: 14px 20px;
}

.table-card{
  margin-top: 1rem;
}
.table-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.table-row.alt { background: color-mix(in srgb, var(--primary-mint) 14%, white); }
.td-strong { font-weight: 600; }
.td-muted { color: var(--muted-foreground); }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--accent); color: var(--accent-foreground);
  font-weight: 700; font-size: 12px;
  padding: 4px 10px; border-radius: 999px;
}
.tips-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: clamp(22px, 3.5vw, 34px);
}
@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(22px, 3.5vw, 40px);
    row-gap: clamp(16px, 2vw, 22px);
  }
}
/* Aire entre tabla de protocolo y tips / siguiente tabla (misma plantilla en todos los productos) */
.table-card + .tips-grid {
  margin-top: clamp(24px, 4vw, 40px);
}
.tips-grid + .table-card,
.table-card + .table-card {
  margin-top: clamp(26px, 4.5vw, 44px);
}
.tip {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
}
.tip-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--primary); margin-top: 7px; flex-shrink: 0;
}
.tip p { font-size: 14px; color: var(--muted-foreground); }

/* ---------- Producto destacado ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.product-feature { padding-top: 24px; }
.product-feature-card {
  display: grid;
  gap: 26px;
  align-items: center;
  border-color: color-mix(in srgb, var(--primary-teal) 36%, var(--border));
  box-shadow: var(--shadow-md);
}
@media (min-width: 860px) {
  .product-feature-card {
    grid-template-columns: 1fr 1.15fr;
    gap: 34px;
    padding: 28px;
  }
}
.product-media {
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--primary-mint) 24%, white);
  border: 1px solid var(--border);
}
.product-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-content { display: grid; gap: 14px; }
.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  background: color-mix(in srgb, var(--accent-gold) 72%, #f5c76d);
  color: #4d3506;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-content h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
}
.product-desc {
  color: var(--muted-foreground);
  max-width: 62ch;
}
.product-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
}
.price-before {
  color: var(--muted-foreground);
  font-size: 14px;
}
.price-before span {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--muted-foreground) 75%, #7f8f8d);
}
.price-now {
  color: var(--primary-teal-dark);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.product-buy-btn:hover,
.product-price-btn:hover {
  transform: translateY(-2px);
}
.product-buy-btn:focus-visible,
.product-price-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary-teal) 65%, white);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .product-actions .btn {
    width: 100%;
  }
}

/* ---------- Calculator ---------- */
.calc-card { padding: 28px; }
@media (min-width: 768px) { .calc-card { padding: 40px; } }
.calc-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(28px, 4vw, 56px);
    row-gap: 32px;
  }
}
.calc-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 26px;
  color: var(--primary);
  margin-bottom: 14px;
}
label.calc-title {
  display: block;
  cursor: default;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  background: var(--muted); color: var(--foreground);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.selected {
  background: var(--primary-teal); color: var(--primary-foreground);
  border-color: var(--primary-teal-dark);
  box-shadow: 0 4px 16px -4px color-mix(in srgb, var(--primary-teal) 50%, transparent);
}
.chip:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.text-input {
  width: 100%;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(246,241,244,.6);
  font-size: 14px;
  font-family: inherit;
  color: var(--foreground);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.text-input:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-mint) 65%, transparent);
}

.result-card { margin-top: clamp(28px, 4vw, 40px); padding: 28px; }
@media (min-width: 768px) { .result-card { padding: 40px; } }
.result-title {
  text-align: center;
  font-weight: 800; font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}
.result-body { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.result-top, .result-bottom {
  width: 100%; max-width: 560px;
  display: grid; grid-template-columns: 1fr; gap: 12px;
  text-align: center;
}
@media (min-width: 560px) {
  .result-top, .result-bottom { grid-template-columns: repeat(2, 1fr); }
}
.result-k {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.result-v {
  margin-top: 4px;
  color: var(--primary-teal-dark);
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-display);
}

.syringe-wrap { width: 100%; max-width: 640px; }
#liquid-rect {
  transition: width .7s cubic-bezier(0.22, 1, 0.36, 1);
}
#target-line { transition: x1 .7s cubic-bezier(0.22, 1, 0.36, 1), x2 .7s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease; }

.result-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 20px;
}

.alert {
  display: flex; align-items: flex-start; gap: 12px;
  background: color-mix(in srgb, var(--primary-mint) 22%, white);
  color: var(--accent-foreground);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid color-mix(in srgb, var(--primary-teal) 22%, transparent);
}
.alert svg { flex-shrink: 0; margin-top: 2px; color: var(--primary-teal-dark); }
.alert.info { background: var(--accent); }
.alert.hidden { display: none; }
.result-body.hidden { display: none; }

.fine-print {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Inject steps ---------- */
.inject-grid {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .inject-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .inject-grid { grid-template-columns: repeat(5, 1fr); } }
.inject-grid li { position: relative; padding-top: 28px; }
.inject-grid h3 { font-size: 14px; font-family: var(--font-sans); font-weight: 600; margin-top: 10px; }
.inject-grid p { font-size: 12px; color: var(--muted-foreground); line-height: 1.55; margin-top: 4px; }

/* ---------- Bullets / misc ---------- */
.bullets { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.bullets li {
  font-size: 14px; color: var(--muted-foreground); line-height: 1.55;
  padding-left: 18px; position: relative;
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(145deg, var(--primary-teal), var(--primary-teal-dark));
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 40px 16px 0;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary-teal-dark); }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--primary-teal);
  font-size: 22px; font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 0 18px; color: var(--muted-foreground);
  font-size: 14px; line-height: 1.65;
}

/* ---------- References ---------- */
.ref-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.ref-list a {
  font-size: 14px;
  color: var(--primary-teal-dark);
  font-weight: 500;
}
.ref-list a:hover { text-decoration: underline; }

/* ---------- CTA card ---------- */
.cta-card {
  position: relative; overflow: hidden;
  text-align: center;
  padding: 56px 28px;
  background: var(--bg-dark-obsidian);
  border: 1px solid color-mix(in srgb, var(--primary-mint) 38%, transparent);
  box-shadow: var(--shadow-lg), var(--shadow-glow-mint);
}
@media (min-width: 768px) { .cta-card { padding: 72px 40px; } }
.cta-card::before, .cta-card::after {
  content: ""; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
}
.cta-card::before {
  top: -100px; right: -80px;
  background: color-mix(in srgb, var(--primary-teal) 35%, transparent);
}
.cta-card::after {
  bottom: -100px; left: -80px;
  background: color-mix(in srgb, #f093fb 22%, transparent);
  opacity: 0.7;
}
.cta-badge {
  position: relative;
  z-index: 1;
  display: inline-flex; width: 52px; height: 52px;
  align-items: center; justify-content: center;
  background: var(--logo-gradient);
  color: var(--text-pure-white);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-gold) 40%, transparent);
}
.cta-badge .brand-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-badge.plain {
  background: transparent;
  box-shadow: none;
}
.cta-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  text-wrap: balance;
  background: linear-gradient(90deg, var(--primary-mint), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-card p {
  position: relative;
  z-index: 1;
  max-width: 540px; margin: 16px auto 0;
  color: var(--text-silver-gray);
  text-wrap: pretty;
  line-height: 1.65;
}
.cta-card .btn-outline {
  border-color: color-mix(in srgb, var(--primary-mint) 50%, transparent);
  color: var(--text-pure-white);
}
.cta-card .btn-outline:hover {
  border-color: var(--primary-mint);
  background: var(--glass-effect);
  color: var(--text-pure-white);
}
.cta-trust {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  font-size: 12px; color: var(--text-silver-gray);
}
.cta-trust span { color: var(--primary-mint); font-weight: 600; }
.cta-card .result-ctas { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark-obsidian);
  border-top: 2px solid color-mix(in srgb, var(--primary-mint) 35%, transparent);
  margin-top: 0;
  color: var(--text-silver-gray);
}
.footer-inner {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 14px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 460px;
}
.footer-spacer {
  display: none;
}
.site-footer .logo-text { color: var(--text-pure-white); }
.site-footer .logo-wordmark,
.site-footer .logo-wordmark--footer {
  height: 44px;
}
@media (min-width: 1280px) {
  .site-footer .logo-wordmark,
  .site-footer .logo-wordmark--footer {
    height: 52px;
  }
}
@media (min-width: 640px) {
  .footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(40px, 0.35fr) minmax(280px, 1fr);
    align-items: start;
    column-gap: 24px;
    row-gap: 0;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .footer-spacer {
    display: block;
  }
  .ymyl-legal-grid {
    margin-top: 0;
  }
}
.footer-note { color: var(--text-silver-gray); max-width: 640px; }

/* =========================================================
   Micro-breakpoints móvil (320px → 480px)
   Solo ajustes de spacing, flex/grid y tamaños relativos.
   NO cambian colores, tipografías, ni estructura visual.
   ========================================================= */

/* ---------- Base mobile (≤480px) ----------
   Mejora general de respiración en todos los móviles.
   Corrige compresión horizontal y separación entre bloques. */
@media (max-width: 480px) {

  /* Container con padding lateral cómodo para lectura */
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Secciones con más separación vertical para que no se "peguen" */
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-sub {
    padding-left: 4px;
    padding-right: 4px;
  }

  /* Header responsive: permite que no se comprima aunque aparezcan
     más elementos. flex-shrink:0 en acciones, min-width:0 en logo. */
  .header-inner {
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .logo {
    min-width: 0;          /* permite que el contenedor del logo se encoja */
    gap: 8px;
    flex-shrink: 1;
  }
  .logo-wordmark {
    height: 30px;
  }
  .logo-wordmark--footer {
    height: 26px;
  }
  .logo-text {
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;   /* evita que "PeptixHouse" haga wrap feo */
  }
  .header-actions {
    flex-shrink: 0;        /* protege el botón de menú de ser comprimido */
    gap: 6px;
  }

  /* Hero: reduce padding superior/inferior y mejora espacio interior */
  .hero {
    padding: 104px 0 64px;
  }
  .hero-title {
    margin-top: 20px;
  }
  .hero-sub {
    margin-top: 18px;
    padding: 0 2px;
  }
  .hero-ctas {
    width: 100%;
    gap: 10px;
    margin-top: 28px;
  }
  .hero-ctas .btn {
    flex: 1 1 100%;        /* CTAs ocupan todo el ancho para evitar apretones */
    width: 100%;
  }
  .hero-features {
    margin-top: 36px;
    gap: 14px;
  }
  .hero-features li {
    padding: 18px;         /* de 22px → 18px para equilibrar densidad */
  }

  /* Cards generales: padding un poco menor pero con respiración */
  .card {
    padding: 20px;
    border-radius: 16px;
  }
  .card.pad-lg {
    padding: 22px;
  }

  /* Info-grid: pasa a 1 columna para evitar celdas diminutas */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Benefit / steps grids: más gap vertical entre tarjetas apiladas */
  .benefit-grid {
    gap: 14px;
  }
  .steps-grid {
    gap: 14px;
  }

  /* Tabla del protocolo: padding reducido y permite wrap limpio */
  .table-header,
  .table-row {
    padding: 12px 14px;
    font-size: 12.5px;
    gap: 6px;
  }
  .table-row {
    align-items: center;
  }
  .td-muted {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Producto destacado: gap y padding coherentes en stack vertical */
  .product-feature-card {
    gap: 20px;
    padding: 18px;
  }
  .product-content {
    gap: 12px;
  }
  .product-actions {
    gap: 10px;
  }

  /* Calculadora: columnas apiladas con respiración */
  .calc-card {
    padding: 22px;
  }
  .calc-grid {
    gap: 28px;
  }
  .result-card {
    padding: 22px;
  }

  /* CTA final: padding lateral aumentado relativo al exterior */
  .cta-card {
    padding: 44px 22px;
  }

  /* Footer: mejor respiración en stack vertical */
  .footer-inner {
    padding: 32px 18px;
    gap: 14px;
  }

  /* Science callout: padding cómodo para lectura */
  .science-callout {
    padding: 14px 16px;
  }

  /* Tips apilados: mantener aire vertical */
  .tips-grid {
    gap: 14px;
  }

  /* Overrides de gaps inline (two-col con style="gap:24px") */
  .two-col {
    gap: 24px !important;
  }
}

/* ---------- Pantallas muy pequeñas (≤390px) ----------
   Ajustes adicionales para iPhones mini / Android compactos. */
@media (max-width: 390px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-head {
    margin-bottom: 28px;
  }

  /* Header un poco más compacto sin perder tap targets */
  .header-inner {
    gap: 8px;
  }
  .logo {
    gap: 7px;
  }
  .logo-wordmark {
    height: 28px;
  }
  .logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .logo-text {
    font-size: 15px;
  }

  /* Hero: pill más compacta para no ocupar varias líneas de forma fea */
  .pill {
    font-size: 12px;
    padding: 7px 12px;
    gap: 6px;
  }

  /* Hero-features con padding reducido para más contenido visible */
  .hero-features li {
    padding: 16px;
  }

  /* Cards ligeramente más compactas */
  .card {
    padding: 18px;
  }
  .card.pad-lg {
    padding: 20px;
  }

  /* Tabla: ajuste fino para que quepa "480 unidades (4.80 mL)" */
  .table-header,
  .table-row {
    padding: 11px 12px;
    font-size: 12px;
  }

  /* Tags dentro de la tabla */
  .tag {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* CTA card */
  .cta-card {
    padding: 40px 20px;
  }
}

/* ---------- Móviles pequeños (≤375px) ---------- */
@media (max-width: 375px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Header: gap aún más ajustado pero manteniendo legibilidad */
  .header-inner {
    gap: 8px;
  }
  .logo {
    gap: 6px;
  }
  .logo-wordmark {
    height: 26px;
  }
  .logo-text {
    font-size: 14.5px;
  }

  /* Result grid: una columna cuando no hay ancho suficiente */
  .result-top,
  .result-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Móviles muy compactos (≤360px) ---------- */
@media (max-width: 360px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  /* Header: icon-btn un punto menor sin perder accesibilidad */
  .icon-btn {
    width: 38px;
    height: 38px;
  }
  .logo-badge {
    width: 32px;
    height: 32px;
  }

  /* Cards aún más contenidas */
  .card {
    padding: 16px;
    border-radius: 14px;
  }

  /* CTA card */
  .cta-card {
    padding: 36px 18px;
  }

  /* Producto destacado */
  .product-feature-card {
    padding: 16px;
    gap: 18px;
  }
}

/* ---------- 320px (iPhone SE 1st gen / base) ----------
   Último ajuste: prioriza que nada rompa ni se salga. */
@media (max-width: 320px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Header mínimo viable: logo compacto + menú */
  .header-inner {
    gap: 6px;
  }
  .logo {
    gap: 5px;
  }
  .logo-wordmark {
    height: 24px;
  }
  .logo-text {
    font-size: 13.5px;
  }
  .logo-badge {
    width: 30px;
    height: 30px;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }

  /* Hero */
  .hero {
    padding: 96px 0 56px;
  }
  .hero-title {
    font-size: 30px;      /* refuerzo por si el clamp no baja bastante */
  }
  .pill {
    font-size: 11.5px;
    padding: 6px 10px;
  }

  /* Secciones y cards con el mínimo posible de padding pero funcional */
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .card {
    padding: 14px;
  }

  /* Tabla: apretamos un poco más pero permitimos wrap */
  .table-header,
  .table-row {
    padding: 10px;
    font-size: 11.5px;
  }

  /* CTA card minimal */
  .cta-card {
    padding: 32px 16px;
  }

  /* Footer */
  .footer-inner {
    padding: 28px 14px;
  }
}

/* ---------- Utilities ---------- */
.hidden { display: none !important; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ============================== */
/* FLOATING WHATSAPP + INSTAGRAM  */
/* ============================== */

/* z-index 35: por encima del contenido, por debajo del overlay del menú (40) y del panel (50) */
.floating-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp-icon {
  display: block;
  width: 28px;
  height: 28px;
}

.slide-menu-instagram-btn {
  margin-left: auto;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #c5a058;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.slide-menu-instagram-btn:hover {
  transform: scale(1.1);
  opacity: 0.88;
  color: #d4af6a;
}

.slide-menu-instagram-icon {
  display: block;
}

@media (max-width: 480px) {
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
/* ============================================ */
/* PRODUCT CONTENT — URGENCY + TRUST + SUPPORT  */
/* ============================================ */


.product-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-mint) 14%, white);
  border: 1px solid color-mix(in srgb, var(--primary-mint) 30%, transparent);
}
.product-trust-flags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-flag {
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.trust-flag:hover { transform: translateY(-2px); z-index: 1; }
.product-trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.product-trust-text strong { color: var(--bg-dark-obsidian); font-size: 0.95rem; }
.product-trust-text span { color: color-mix(in srgb, var(--bg-dark-obsidian) 65%, white); font-size: 0.82rem; }

.product-support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-dark-obsidian);
  color: #fff;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--primary-mint) 25%, transparent);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-support-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-mint);
  box-shadow: 0 10px 28px -12px color-mix(in srgb, var(--primary-teal) 55%, transparent);
}
.product-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
}
.product-support-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.product-support-text strong { font-size: 0.98rem; }
.product-support-text span { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.82rem; }
.product-support-arrow { color: var(--primary-mint); flex-shrink: 0; }

@media (max-width: 640px) {
  .product-trust-row { gap: 10px; padding: 10px 12px; }
  .product-trust-text strong { font-size: 0.88rem; }
  .product-trust-text span { font-size: 0.76rem; }

  .product-support-icon { width: 36px; height: 36px; }
  .product-support-text strong { font-size: 0.9rem; }
  .product-support-text span { font-size: 0.76rem; }
}

/* ============================================ */
/* YMYL COMPLIANCE LAYER (non-destructive)      */
/* ============================================ */

.ymyl-disclaimer {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  background: color-mix(in srgb, #f59e0b 10%, transparent);
  color: var(--text-silver-gray);
  line-height: 1.5;
}

.ymyl-commercial-separation {
  margin: 16px 0 10px;
  padding: 10px 12px;
  border-top: 1px dashed color-mix(in srgb, var(--primary-mint) 32%, transparent);
  border-bottom: 1px dashed color-mix(in srgb, var(--primary-mint) 32%, transparent);
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-align: center;
}

.ymyl-ref-method {
  margin: 0 0 12px;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.ymyl-legal-grid {
  margin-top: 0;
  width: 100%;
  border-top: 1px solid color-mix(in srgb, var(--text-silver-gray) 22%, transparent);
  padding-top: 14px;
}
.ymyl-legal-grid h3 { margin: 0 0 8px; font-size: 1rem; }
.ymyl-legal-grid ul {
  margin: 0 0 10px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.ymyl-legal-grid p { margin: 4px 0; font-size: 0.9rem; }

@media (min-width: 640px) {
  .ymyl-legal-grid {
    border-top: 0;
    padding-top: 0;
  }
}

