/* ============================================================
   NYDIA'S FACE CREAM — Anti-Arrugas
   Editorial beauty brand. Wine/magenta + amber gold, cream & black.
   Serif display (Playfair) · clean sans body (Mulish) · script logo.
   ============================================================ */

:root {
  /* Brand — wine/magenta rose */
  --wine: #8E1E48;
  --wine-deep: #6B1437;
  --wine-bright: #AB2A5E;
  --wine-soft: #b65a7e;

  /* Gold / amber */
  --gold: #C99A45;
  --gold-deep: #A87C2E;
  --gold-bright: #E2B85F;
  --gold-soft: #ecd6a3;

  /* Neutrals (warm) */
  --white: #ffffff;
  --paper: #FBF5EE;
  --cream: #F4E9DD;
  --cream-deep: #EADBC9;
  --noir: #16100F;
  --ink: #2A1A20;
  --ink-soft: #6f5860;
  --line: #E7D8C7;

  /* Status */
  --good: #2E7D5B;
  --good-bg: #e9f3ed;
  --bad: #B23A30;
  --bad-bg: #f6ecea;
  --wa: #25D366;
  --wa-deep: #1da851;

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Rufina", Georgia, serif;
  --font-ui: "Rufina", Georgia, serif;
  --font-script: "Great Vibes", cursive;

  /* Shape */
  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-lg: 1.375rem;
  --btn-radius: 0.375rem;

  /* Spacing */
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(3.625rem, 9vw, 7.25rem);
  --maxw: 75rem;

  --shadow-sm: 0 0.125rem 0.75rem rgba(42, 20, 30, 0.07);
  --shadow-md: 0 1rem 2.75rem rgba(42, 20, 30, 0.12);
  --shadow-lg: 0 2.125rem 5rem rgba(42, 20, 30, 0.20);
}

/* Sans-heading variant (Tweak) */
body.heads-sans {
  --font-head: "Josefin Sans", system-ui, sans-serif;
}
body.heads-sans h1, body.heads-sans h2, body.heads-sans h3 {
  font-weight: 600; letter-spacing: -0.01em;
}

/* Pill-button variant (Tweak) */
body.btn-pill { --btn-radius: 62.4375rem; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--wine); }

p { text-wrap: pretty; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { position: relative; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.875rem;
  height: 0.0625rem;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 1.875rem;
  height: 0.0625rem;
  background: var(--gold);
}

.section-head { max-width: 50rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 5.6vw, 3.6rem);
  margin-top: 1.125rem;
}
.section-head .sub {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  color: var(--ink-soft);
  margin-top: 1.125rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  padding: 1rem 1.875rem;
  border-radius: var(--btn-radius);
  border: 0.0625rem solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(0.0625rem) scale(.995); }

.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 0.625rem 1.625rem rgba(142, 30, 72, 0.26);
}
.btn-primary:hover { background: var(--wine-deep); box-shadow: 0 1rem 2.25rem rgba(142, 30, 72, 0.34); transform: translateY(-0.125rem); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #fff;
  box-shadow: 0 0.625rem 1.625rem rgba(201, 154, 69, 0.36);
}
.btn-gold:hover { filter: brightness(1.04); transform: translateY(-0.125rem); }

.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: #fff; color: var(--wine); }

.btn-lg { padding: 1.1875rem 2.25rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- SVG Logo ---------- */
.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo {
  display: block;
  height: 4.25rem;
  width: auto;
  /* wine for header on light bg */
  color: var(--wine);
  transition: opacity .2s ease;
}
.logo-link:hover .site-logo { opacity: 0.82; }

/* Footer logo variant */
.site-logo-footer {
  height: 3.625rem;
  color: #fff;
  align-self: flex-start;
}

/* Footer brand block */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand-tag {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, var(--cream) 0 0.875rem, var(--cream-deep) 0.875rem 1.75rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink-soft);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  background: rgba(251, 245, 238, 0.88);
  border: 0.0625rem solid var(--line);
  padding: 0.3125rem 0.6875rem;
  border-radius: 62.4375rem;
  max-width: 84%;
  text-align: center;
}
.ph.on-dark::after {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 245, 238, 0.9);
  backdrop-filter: blur(0.75rem);
  border-bottom: 0.0625rem solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 6.25rem;
}
.nav-links { display: none; gap: 1.875rem; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
  transition: color .15s;
}
.nav-links a:hover { color: var(--wine); }
.header-cta { display: none; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(130% 100% at 88% -5%, var(--cream) 0%, transparent 52%),
    linear-gradient(180deg, var(--paper), #fff);
  padding-block: clamp(2.5rem, 7vw, 5.25rem) var(--section-y);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(2.25rem, 6vw, 4.125rem);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 1.375rem; }
.hero h1 {
  font-size: clamp(2.5rem, 7.4vw, 4.3rem);
  line-height: 1.1;
  text-wrap: normal;
}
.hero h1 .accent { color: var(--wine); font-style: italic; }
.hero .lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 3vw, 1.34rem);
  color: var(--ink-soft);
  max-width: 32ch;
}
.hero .lead strong { color: var(--wine); font-weight: 700; }
.made-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  margin-top: 1.375rem;
  background: var(--noir);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.5625rem 1.125rem;
  border-radius: 62.4375rem;
}
.made-pill .dot { color: var(--gold-bright); }
.hero-cta { margin-bottom: 1rem; }
.hero-cta .micro {
  display: block;
  margin-top: 0.8125rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.trust-badges {
  margin-top: 2.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.125rem;
  max-width: 29.375rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.trust-badge .ic {
  flex: none;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 0.0625rem solid var(--gold-soft);
  color: var(--wine);
  box-shadow: var(--shadow-sm);
}
.trust-badge .ic svg { width: 1.25rem; height: 1.25rem; }

.hero-visual { position: relative; }
.hero-visual .ph {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero-visual .hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  box-shadow:
    0 -0.625rem 1.875rem rgba(42, 20, 30, 0.14),
    0 0.5rem 1.25rem rgba(42, 20, 30, 0.14),
    0 1.875rem 3.4375rem rgba(42, 20, 30, 0.26),
    0 3.4375rem 6.25rem rgba(107, 20, 55, 0.22);
}
.hero-visual .floater {
  position: absolute;
  bottom: 1.625rem;
  left: -1.125rem;
  background: #fff;
  border: 0.0625rem solid var(--gold-soft);
  border-radius: var(--r-md);
  box-shadow:
    0 0.0625rem 0 rgba(255,255,255,0.9) inset,
    0 1rem 2.5rem rgba(42, 20, 30, 0.28);
  padding: 1rem 1.375rem 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-visual .floater::after {
  content: "";
  align-self: stretch;
  width: 0.0625rem;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
  order: 1;
}
.hero-visual .floater .num {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--wine);
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: flex-start;
}
.hero-visual .floater .num .plus {
  font-size: 1.5rem;
  font-weight: 800;
  margin-left: 0.125rem;
  margin-top: 0.125rem;
  color: var(--gold-deep);
  -webkit-text-stroke: 0.05rem var(--gold-deep);
}
.hero-visual .floater .lbl {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.32;
  color: var(--ink-soft);
  order: 2;
}
.hero-visual .floater .lbl strong {
  display: block;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison {
  padding-block: var(--section-y);
  background: var(--white);
}
.compare-wrap {
  margin-top: 2.875rem;
  display: grid;
  gap: 1.125rem;
  position: relative;
}
.compare-col {
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.375rem);
  border: 0.0625rem solid var(--line);
}
.compare-col.bad {
  background: var(--paper);
  opacity: 0.96;
}
.compare-col.good {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,154,69,0.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--cream));
  border: 0.125rem solid var(--gold);
  box-shadow:
    0 0.0625rem 0 rgba(255,255,255,0.7) inset,
    var(--shadow-lg);
}
.compare-col .col-tag {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.3125rem 0.75rem;
  border-radius: 62.4375rem;
  display: inline-block;
}
.compare-col.bad .col-tag { background: var(--bad-bg); color: var(--bad); }
.compare-col.good .col-tag { background: var(--wine); color: #fff; }
.compare-col h3 {
  font-size: 1.7rem;
  margin-top: 0.75rem;
}
.compare-col.good h3 { color: var(--wine); }
.compare-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  max-width: 30ch;
}
.compare-col.good .compare-sub { color: var(--wine); opacity: 0.85; }

.compare-list { list-style: none; margin-top: 1.375rem; display: flex; flex-direction: column; gap: 0.125rem; }
.compare-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.8125rem 0.25rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  border-bottom: 0.0625rem solid var(--line);
}
.compare-list li:last-child { border-bottom: none; }
.compare-col.bad .compare-list li { color: var(--ink-soft); }
.compare-col.good .compare-list li { border-bottom-color: var(--gold-soft); }
.mark {
  flex: none;
  width: 1.6875rem; height: 1.6875rem;
  border-radius: 50%;
  display: grid; place-items: center;
}
.mark.x {
  background: transparent;
  border: 0.09375rem solid var(--cream-deep);
  color: var(--ink-soft);
  opacity: 0.7;
}
.mark.check {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 0.25rem 0.625rem rgba(142, 30, 72, 0.28);
}
.mark svg { width: 0.9375rem; height: 0.9375rem; }

.vs-badge { display: none; }

@media (min-width: 840px) {
  .compare-wrap { grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; padding-top: 18px; }
  .vs-badge {
    display: grid;
    place-items: center;
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    width: 66px; height: 66px;
    border-radius: 50%;
    background: var(--wine);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.15rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
  }
}

/* ============================================================
   DANGER BANNER
   ============================================================ */
.danger-banner {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.danger-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 50%, rgba(142,30,72,0.28), transparent 65%);
  pointer-events: none;
}
.danger-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
.danger-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.danger-text h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.danger-text h2 em { color: var(--gold-bright); font-style: italic; }
.danger-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: 0.875rem;
  line-height: 1.7;
  text-wrap: pretty;
}
.danger-text p strong { color: #fff; font-weight: 700; }
.danger-cta { display: flex; flex-direction: column; gap: 0.875rem; justify-content: center; }
.danger-cta-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-bright);
}
.danger-note {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 860px) {
  .danger-inner { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.ing-grid {
  margin-top: 3.125rem;
  display: grid;
  gap: 1.625rem;
}
.ing-card {
  background: #fff;
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.ing-card:hover { transform: translateY(-0.3125rem); box-shadow: var(--shadow-md); }
.ing-card .ph { aspect-ratio: 3 / 2; border: none; border-radius: 0; border-bottom: 0.0625rem solid var(--line); }
.ing-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-bottom: 0.0625rem solid var(--line);
}
.ing-body { padding: 1.75rem 1.625rem 2rem; flex: 1; display: flex; flex-direction: column; }
.ing-num {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ing-card h3 { font-size: 1.7rem; margin: 0.625rem 0 0.875rem; color: var(--wine); }
.ing-card p { color: var(--ink-soft); font-size: 1rem; }

@media (min-width: 780px) {
  .ing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PRODUCT / BUY
   ============================================================ */
.product {
  padding-block: var(--section-y);
  background: var(--white);
}
.buy-grid {
  margin-top: 3.125rem;
  display: grid;
  gap: 1.625rem;
  max-width: 56.25rem;
  margin-inline: auto;
}
.buy-card {
  position: relative;
  background: var(--paper);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.625rem) clamp(1.5rem, 4vw, 2.375rem);
  display: flex;
  flex-direction: column;
}
.buy-card.popular {
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 0.15625rem solid var(--wine);
  box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wine);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5625rem 1.375rem;
  border-radius: 62.4375rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.jars { display: flex; gap: 0; height: 8.125rem; align-items: flex-end; margin-bottom: 0.5rem; justify-content: flex-start; }
.jar-img {
  height: 8.125rem;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: none;
}
.jar-second { margin-left: -1.125rem; }
}
.buy-card .opt-name { font-size: 1.8rem; margin-top: 1rem; }
.buy-card .opt-tagline { font-family: var(--font-ui); color: var(--ink-soft); font-size: 0.9rem; letter-spacing: 0.03em; margin-top: 0.25rem; }
.price-row { display: flex; align-items: baseline; gap: 0.6875rem; margin: 1.375rem 0 1.25rem; flex-wrap: wrap; }
.price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
}
.price .cur { font-size: 1rem; color: var(--ink-soft); font-weight: 600; font-family: var(--font-ui); }
.price-strike { font-size: 1.15rem; color: var(--ink-soft); text-decoration: line-through; font-family: var(--font-display); }
.save-chip {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.3125rem 0.8125rem;
  border-radius: 62.4375rem;
  margin-bottom: 1.125rem;
}
.opt-perks { list-style: none; margin: 0.375rem 0 1.625rem; display: flex; flex-direction: column; gap: 0.75rem; }
.opt-perks li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.99rem; font-weight: 500; }
.opt-perks li.free { color: var(--wine); font-weight: 700; }
.opt-perks .mark { width: 1.4375rem; height: 1.4375rem; }
.opt-perks .mark svg { width: 0.8125rem; height: 0.8125rem; }
.buy-card .btn { margin-top: auto; }

.buy-assurance {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem 2rem;
}
.buy-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--ink-soft);
}
.buy-assurance svg { width: 1.0625rem; height: 1.0625rem; color: var(--gold-deep); }

@media (min-width: 740px) {
  .buy-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
@media (max-width: 739px) {
  .buy-grid { gap: 3rem; }
}

/* ============================================================
   TESTIMONIALS — infinite scroll
   ============================================================ */
.testimonials {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
/* Full-bleed scroll container */
.test-scroll {
  overflow: hidden;
  margin-top: 3.125rem;
  padding-block: 0.75rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.test-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-left 55s linear infinite;
}
.test-scroll:hover .test-track {
  animation-play-state: paused;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .test-track { animation: none; }
  .test-scroll { overflow-x: auto; }
}

/* ── Mobile/tablet: JS auto-slide + free drag (NO snap — snap fights auto-scroll) ── */
@media (max-width: 879px) {
  .test-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    cursor: grab;
    -webkit-mask-image: none;
    mask-image: none;
    padding-inline: 1.25rem;
    scrollbar-width: none;
  }
  .test-scroll::-webkit-scrollbar { display: none; }
  .test-scroll:active { cursor: grabbing; }
  .test-track {
    animation: none !important;
    transform: none !important;
    width: max-content;
  }
  .test-card {
    scroll-snap-align: none;
    width: 80vw;
    max-width: 20rem;
  }
}
.test-card {
  width: 20rem;
  flex-shrink: 0;
  background: #fff;
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 0.1875rem; color: var(--gold); margin-bottom: 1.125rem; }
.stars svg { width: 1.1875rem; height: 1.1875rem; }
.test-card blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  flex: 1;
}
.test-author {
  margin-top: 1.375rem;
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  padding-top: 1.125rem;
  border-top: 0.0625rem solid var(--line);
}
.avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--wine-bright), var(--wine-deep));
  color: var(--gold-bright);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.test-author .nm { font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; }
.test-author .loc { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); }



/* ============================================================
   TRUST / CREDENTIALS — wine bokeh
   ============================================================ */
.credentials {
  padding-block: var(--section-y);
  background:
    radial-gradient(120% 120% at 20% 0%, var(--wine-bright) 0%, var(--wine) 42%, var(--wine-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.credentials::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,0.16) 0 0.5rem, transparent 0.5625rem),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.12) 0 0.875rem, transparent 0.9375rem),
    radial-gradient(circle at 68% 78%, rgba(226,184,95,0.18) 0 0.6875rem, transparent 0.75rem),
    radial-gradient(circle at 30% 84%, rgba(255,255,255,0.10) 0 1.125rem, transparent 1.1875rem),
    radial-gradient(circle at 92% 60%, rgba(255,255,255,0.10) 0 0.4375rem, transparent 0.5rem);
  pointer-events: none;
}
.credentials .container { position: relative; z-index: 1; }
.credentials .eyebrow { color: var(--gold-soft); }
.credentials .eyebrow::before, .credentials .eyebrow::after { background: var(--gold-bright); }
.credentials h2 { color: #fff; }
.cred-grid {
  margin-top: 3.125rem;
  display: grid;
  gap: 1.375rem;
}
.cred-block {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.08);
  border: 0.0625rem solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.625rem;
  backdrop-filter: blur(0.25rem);
}
.cred-block .cred-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}
.cred-block p { color: rgba(255,255,255,0.85); font-size: 0.94rem; }
.cred-block .permit {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 0.625rem;
  word-break: break-word;
}
.cred-icon-wrap {
  width: 4.5rem; height: 4.5rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.96);
  display: grid; place-items: center;
  margin-bottom: 0.875rem;
  padding: 0.375rem;
  box-shadow: 0 0.25rem 0.875rem rgba(0,0,0,0.15);
}
.cred-icon { width: 3.75rem; height: 3.75rem; object-fit: contain; }
.qr-img {
  height: 5rem;
  width: auto;
  margin-top: auto;
  padding-top: 0.75rem;
  image-rendering: pixelated;
  display: block;
  align-self: flex-start;
}
.qr-ph {
  width: 5.625rem; height: 5.625rem;
  margin-top: 1rem;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.2) 0 0.375rem, rgba(255,255,255,0.06) 0.375rem 0.75rem);
  border: 0.0625rem solid rgba(255,255,255,0.3);
  border-radius: 0.625rem;
  display: grid; place-items: center;
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.cred-mini { list-style: none; display: flex; flex-direction: column; gap: 0.5625rem; margin-top: 0.375rem; }
.cred-mini li { display: flex; gap: 0.625rem; align-items: center; font-size: 0.92rem; color: rgba(255,255,255,0.88); }
.cred-mini svg { width: 0.9375rem; height: 0.9375rem; color: var(--gold-bright); flex: none; }

@media (min-width: 740px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cred-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   WHERE TO BUY
   ============================================================ */
.where {
  padding-block: var(--section-y);
  background: var(--white);
}
.where-grid {
  margin-top: 3.125rem;
  display: grid;
  gap: 1.5rem;
}
.where-card {
  background: var(--paper);
  border: 0.0625rem solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.where-card .w-ic {
  width: 3.75rem; height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  border: 0.0625rem solid var(--gold-soft);
  display: grid; place-items: center;
  color: var(--wine);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.cred-logo {
  display: block;
  height: 4.0625rem;
  width: auto;
  object-fit: contain;
  margin-top: auto;
  padding-top: 1.125rem;
  border-radius: 0;
  align-self: flex-start;
}
.where-card .w-ic { overflow: hidden; }
.where-card .w-ic-img { background: #fff; padding: 0; width: 5rem; height: 5rem; }
.where-card .w-ic-img img { width: 100%; height: 100%; object-fit: cover; }
.where-card .w-ic-img img.ml-logo { width: 70%; height: 70%; object-fit: contain; display: block; margin: auto; }
.where-card .w-ic svg { width: 1.6875rem; height: 1.6875rem; }
.where-card h3 { font-size: 1.45rem; }
.where-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0.75rem 0 1.5rem; flex: 1; }
.where-card .btn { width: 100%; }

@media (min-width: 780px) { .where-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   STORY
   ============================================================ */
.story {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.story-grid {
  display: grid;
  gap: clamp(2.125rem, 5vw, 4rem);
  align-items: center;
}
.story-visual .ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.founder-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  box-shadow:
    0 -0.625rem 1.875rem rgba(42, 20, 30, 0.14),
    0 0.5rem 1.25rem rgba(42, 20, 30, 0.14),
    0 1.875rem 3.4375rem rgba(42, 20, 30, 0.26),
    0 3.4375rem 6.25rem rgba(107, 20, 55, 0.22);
}
.story-visual {
  position: relative;
  border-radius: var(--r-lg);
  border: 0.15625rem solid var(--wine);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 0;
  display: block;
  background: #E6DED5;
}
.founder-cutout {
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}
.story-text h2 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); margin: 1.125rem 0 1.5rem; }
.story-text p { font-size: 1.1rem; color: var(--ink-soft); }
.story-text p strong { color: var(--wine); font-weight: 700; }
.story-sign {
  margin-top: 1.625rem;
  font-family: var(--font-script);
  color: var(--wine);
  font-size: 2rem;
  line-height: 1;
}
.timeline {
  display: flex;
  gap: 0.6875rem;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}
.timeline .tl {
  background: #fff;
  border: 0.0625rem solid var(--line);
  border-radius: 62.4375rem;
  padding: 0.5625rem 1.125rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--ink-soft);
}
.timeline .tl strong { color: var(--wine); font-family: var(--font-display); }

@media (min-width: 880px) {
  .story-grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* ============================================================
   FINAL CTA — wine bokeh
   ============================================================ */
.final-cta {
  padding-block: var(--section-y);
  background:
    radial-gradient(120% 130% at 50% 0%, var(--wine-bright) 0%, var(--wine) 44%, var(--wine-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255,255,255,0.14) 0 0.5625rem, transparent 0.625rem),
    radial-gradient(circle at 84% 30%, rgba(226,184,95,0.2) 0 0.75rem, transparent 0.8125rem),
    radial-gradient(circle at 74% 80%, rgba(255,255,255,0.1) 0 1rem, transparent 1.0625rem),
    radial-gradient(circle at 26% 78%, rgba(255,255,255,0.12) 0 0.4375rem, transparent 0.5rem);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--gold-soft); justify-content: center; }
.final-cta .eyebrow::before, .final-cta .eyebrow::after { background: var(--gold-bright); }
.final-cta h2 {
  color: #fff;
  font-size: clamp(2.4rem, 7.4vw, 4.4rem);
  margin: 1.25rem 0;
}
.final-cta h2 em { color: var(--gold-bright); }
.final-cta .sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}
.final-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28.75rem;
  margin: 0 auto;
}
@media (min-width: 580px) {
  .final-btns { flex-direction: row; justify-content: center; }
  .final-btns .btn { flex: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--noir);
  color: rgba(255,255,255,0.88);
  padding-block: 3.125rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
.footer-inner .footer-brand-tag { color: var(--gold-bright); }
.footer-meta { display: flex; flex-direction: column; gap: 0.4375rem; }
.footer-meta .permit { font-size: 0.76rem; color: rgba(255,255,255,0.72); }
.footer-bottom {
  border-top: 0.0625rem solid rgba(255,255,255,0.22);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
}
@media (min-width: 740px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1.125rem;
  bottom: 1.125rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6875rem;
  background: var(--wa);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.8125rem 1.25rem 0.8125rem 0.875rem;
  border-radius: 62.4375rem;
  box-shadow: 0 0.75rem 1.875rem rgba(37, 211, 102, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  max-width: calc(100vw - 2.25rem);
}
.wa-float:hover { background: var(--wa-deep); transform: translateY(-0.125rem); box-shadow: 0 1.125rem 2.5rem rgba(37,211,102,0.5); }
.wa-float .wa-ic {
  flex: none;
  width: 2.125rem; height: 2.125rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
}
.wa-float .wa-ic svg { width: 1.25rem; height: 1.25rem; }
.wa-float .wa-txt { line-height: 1.15; }
.wa-float .wa-txt small { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.9; }


/* ============================================================
   STICKY MOBILE BUY BAR
   ============================================================ */
.sticky-buy {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(251, 245, 238, 0.97);
  backdrop-filter: blur(0.625rem);
  border-top: 0.0625rem solid var(--line);
  padding: 0.6875rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  transform: translateY(120%);
  transition: transform .3s ease;
  box-shadow: 0 -0.5rem 1.5rem rgba(42,20,30,0.08);
}
.sticky-buy.show { transform: translateY(0); }
.sticky-buy .sb-info { line-height: 1.15; }
.sticky-buy .sb-info .sb-name { font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem; }
.sticky-buy .sb-info .sb-price { color: var(--wine); font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.sticky-buy .btn { padding: 0.8125rem 1.5rem; white-space: nowrap; }
@media (min-width: 880px) { .sticky-buy { display: none; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(1.375rem); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ─── TRUST BAR ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--wine);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 1.25rem;
  white-space: nowrap;
}
.trust-bar-item + .trust-bar-item {
  border-left: 1px solid rgba(255,255,255,0.25);
}
.trust-bar-item svg { opacity: 0.9; flex-shrink: 0; }


/* ─── DELIVERY BADGE ─────────────────────────────────────────────────────── */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(201,154,69,0.12);
  border: 1px solid rgba(201,154,69,0.35);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-top: 1.25rem;
  margin-bottom: 1.3rem;
}
.delivery-badge svg { color: var(--gold); }

/* ─── PAYMENT LOGOS ──────────────────────────────────────────────────────── */
.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
.payment-strip-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: 100%;
  text-align: center;
  margin-top: 0.7rem;
  margin-bottom: 0.625rem;
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */
.faq { background: var(--paper); padding: 4.5rem 0; }
.faq .section-head { margin-bottom: 2.5rem; }
.faq-list { max-width: 68rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(142,30,72,0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.125rem 1.375rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.4;
}
.faq-q:hover { background: rgba(142,30,72,0.03); }
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 1.5px solid var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: transform 0.25s;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  margin-top: 1rem;
  display: none;
  padding: 0 1.375rem 1.125rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  font-family: var(--font-ui);
}
.faq-item.open .faq-a { display: block; }

/* ─── EXIT INTENT POPUP ──────────────────────────────────────────────────── */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,5,12,0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.exit-card {
  background: var(--wine);
  border-radius: 1.25rem;
  max-width: 26rem;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 2rem 4rem rgba(0,0,0,0.4);
  animation: exitPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes exitPop {
  from { opacity:0; transform: scale(0.88) translateY(1.5rem); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.exit-close {
  position: absolute;
  top: 0.875rem; right: 1rem;
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.375rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.exit-close:hover { color: #fff; }
.exit-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.exit-pct {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.exit-off {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.375rem;
}
.exit-product {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.exit-product strong { color: var(--gold); }
.exit-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.exit-price-old {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.exit-price-new {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.exit-cta {
  display: block;
  background: var(--gold);
  color: var(--wine);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  border-radius: 3rem;
  text-decoration: none;
  margin-bottom: 0.875rem;
  transition: opacity 0.2s;
}
.exit-cta:hover { opacity: 0.88; }
.exit-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.pay-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pay-logo {
  height: 2.25rem;
  width: auto;
  display: block;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.pay-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 0.45rem;
  padding: 0.4rem 0.6rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.pay-card img {
  height: 1.85rem;
  width: auto;
  display: block;
}
.pay-card svg {
  height: 2.625rem;
  width: auto;
  display: block;
  border-radius: 0.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ─── TRUST BAR — responsive ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .trust-bar {
    flex-wrap: wrap;
    gap: 0;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    justify-content: center;
  }
  .trust-bar-item {
    width: 50%;
    justify-content: center;
    padding: 0.3rem 0.5rem;
    border-left: none !important;
  }
}
@media (max-width: 480px) {
  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
  .trust-bar-item {
    width: 100%;
    justify-content: center;
    border-left: none !important;
    padding: 0.2rem 0;
  }
}

/* ─── STICKY BUY BAR — stack on mobile ──────────────────────────────────── */
@media (max-width: 520px) {
  .sticky-buy {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.625rem var(--pad);
  }
  .sticky-buy .sb-info { text-align: center; }
  .sticky-buy .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/* ─── WHATSAPP FLOAT — icon only on mobile, above sticky bar ────────────── */
@media (max-width: 879px) {
  .wa-float {
    bottom: 8rem;
    right: 0.875rem;
    padding: 0.7rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    box-shadow: 0 0.5rem 1.25rem rgba(37,211,102,0.45);
  }
  .wa-float .wa-txt { display: none; }
  .wa-float .wa-ic {
    width: 100%;
    height: 100%;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wa-float .wa-ic svg { width: 1.5rem; height: 1.5rem; }
}
@media (max-width: 320px) {
  .wa-float {
    right: 0.5rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}


  .site-nav { display: none; }
}



/* ─── HAMBURGER + MOBILE MENU ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 2.3rem;
  height: 0.1875rem; /* 3px */
  background: var(--wine);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s;
  transform-origin: center;
}
/* X offset = bar-height + gap = 3px + 6px = 9px */
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
#hamburger {
  flex-direction: column;
  row-gap: 0.5rem;
  border: none;
  background: transparent;
}
@media (min-width: 880px) { .hamburger { display: none !important; } }
@media (max-width: 879px) { .hamburger { display: flex; } }

/* overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,5,12,0.5);
  z-index: 1150;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(20rem, 85vw);
  height: 100dvh;
  background: var(--paper);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -0.5rem 0 2rem rgba(0,0,0,0.2);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

/* close × button inside drawer */
.mobile-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  border: none;
  background: rgba(142,30,72,0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: background .2s;
}
.mobile-close:hover { background: rgba(142,30,72,0.15); }

/* inner content */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 5rem 1.75rem 2.5rem;
  min-height: 100%;
}
.mobile-nav { display: flex; flex-direction: column; flex: 1; }
.mobile-nav-link {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .15s;
}
.mobile-nav-link::after {
  content: '';
  display: block;
  width: 0.4rem; height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.4;
}
.mobile-nav-link:first-child { border-top: 1px solid var(--line); margin-top: 0.5rem; }
.mobile-nav-link:hover { color: var(--wine); }
.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.9375rem;
  font-size: 0.9375rem;
  width: 100%;
}


/* ─── Garantía page access links ─────────────────────────────────────────── */
a.trust-bar-item { color: inherit; text-decoration: none; cursor: pointer; transition: opacity .2s; }
a.trust-bar-item:hover { opacity: 0.72; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4375rem; }
.footer-nav a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-bright); }


/* ─── GUARANTEE BAND (homepage) ──────────────────────────────────────────── */
.guarantee-band { padding: clamp(2.5rem, 6vw, 4rem) 0; background: var(--paper); }
.gband-card {
  display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gband-card::after {
  content: ""; position: absolute; right: -3rem; top: -3rem;
  width: 12rem; height: 12rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,184,95,0.18), transparent 70%);
  pointer-events: none;
}
.gband-card:hover { transform: translateY(-0.25rem); box-shadow: var(--shadow-lg); }
.gband-icon {
  flex-shrink: 0; width: 4.25rem; height: 4.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10); border: 0.0625rem solid rgba(226,184,95,0.5);
  border-radius: 50%; color: var(--gold-bright); position: relative; z-index: 1;
}
.gband-icon svg { width: 2.2rem; height: 2.2rem; }
.gband-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.gband-kicker {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-bright); display: block; margin-bottom: 0.5rem;
}
.gband-title { color: #fff; font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.2; margin: 0; }
.gband-sub { color: rgba(255,255,255,0.82); font-size: clamp(0.95rem, 2vw, 1.05rem); margin-top: 0.6rem; max-width: 36rem; }
.gband-cta {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  color: var(--noir); background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 0.85rem 1.4rem; border-radius: var(--btn-radius); white-space: nowrap;
  box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.18);
  transition: filter .2s, transform .2s; position: relative; z-index: 1;
}
.gband-card:hover .gband-cta { filter: brightness(1.05); }
.gband-cta svg { width: 1rem; height: 1rem; }
@media (max-width: 760px) {
  .gband-card { flex-direction: column; text-align: center; }
  .gband-text { text-align: center; }
  .gband-cta { width: 100%; justify-content: center; }
}


/* ─── Testimonial images ───────────────────────────────────────────────── */
.test-img {
  display: block;
  width: calc(100% + 3.5rem) !important;
  max-width: calc(100% + 3.5rem) !important;
  height: 13rem;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin: -1.875rem -1.75rem 1.25rem -1.75rem;
}
@media (max-width: 600px) {
  .test-img { height: 11rem; }
}

/* ─── UGC Band ─────────────────────────────────────────────────────────────── */
.ugc-band {
  background: linear-gradient(135deg, #fdf0f0 0%, #fdf6ee 100%);
  border-top: 0.0625rem solid #f0d9d9;
  border-bottom: 0.0625rem solid #f0d9d9;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
}
.ugc-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.ugc-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  border: 0.0625rem solid #f0d9d9;
  box-shadow: 0 0.25rem 1rem rgba(160,60,60,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
}
.ugc-icon svg { width: 2.1rem; height: 2.1rem; }
.ugc-body { flex: 1; min-width: 0; }
.ugc-kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.4rem;
}
.ugc-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.ugc-sub {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}
.ugc-sub strong { color: var(--wine); }
.ugc-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0.375rem 1.25rem rgba(37,211,102,0.35);
  transition: filter .2s, transform .2s;
}
.ugc-cta:hover { filter: brightness(1.07); transform: translateY(-0.125rem); }
.ugc-cta svg { width: 1.25rem; height: 1.25rem; }
@media (max-width: 680px) {
  .ugc-inner { flex-direction: column; text-align: center; }
  .ugc-cta { width: 100%; justify-content: center; }
}
