/* Humart — design tokens + page styles */

/* ============================================================
   Humart Design System — colors + type tokens
   Source of truth for the brand. Import as a single file.
   ============================================================ */

/* ---------- Fonts (Google Fonts CDN) -----------------------
   - Merriweather (serif): brand titles, product names, editorial copy.
   - Inter (sans): UI, buttons, prices, badges, microcopy.
   If you self-host, drop ttfs into ./fonts/ and replace the @import.
*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* =========================================================
     COLORS — semantic, functional, not decorative.
     "Si un color no aporta significado funcional al usuario,
      no se usa. Los colores son lenguaje, no decoración."
     ========================================================= */

  /* — Brand / structure ——————————————————————————— */
  --navy:            #162041;   /* dominant brand color */
  --navy-900:        #0e1530;   /* hover/press, deeper structure */
  --navy-700:        #1e2c54;   /* secondary structure */
  --navy-100:        #e7eaf2;   /* navy tint for hairlines */
  --ink:             #162041;   /* default heading color (=navy) */

  /* — Trust / confirmation (mint) ———————————————————
     USE FOR: free shipping checks, warranty, "pago seguro",
     in-stock indicators, success states. NEVER decoration. */
  --mint:            #2ECC8F;
  --mint-700:        #21a572;   /* hover for mint pills/icons */
  --mint-50:         #e8f9f1;   /* success background */

  /* — Urgency / savings (coral) ————————————————————
     USE FOR: strike-through price, "-38%" discount badge,
     "Stock bajo", countdown, "Más vendido", alerts. NEVER decoration. */
  --coral:           #FF6B6B;
  --coral-700:       #e0494a;   /* press state */
  --coral-50:        #fff1f1;   /* alert background */

  /* — Neutrals (UI scaffolding) ————————————————————— */
  --bg:              #ffffff;
  --bg-soft:         #f6f7fb;   /* page section alt bg */
  --bg-tint:         #f1f3fa;   /* card placeholder bg */
  --line:            #e4e7f0;   /* default border */
  --line-strong:     #cbd1de;   /* input border on focus-within */

  /* — Text ——————————————————————————————————————————— */
  --fg:              #162041;   /* primary text */
  --fg-2:            #4a5670;   /* secondary text, body */
  --fg-3:            #7e879c;   /* tertiary, captions */
  --fg-muted:        #a2aabb;   /* disabled / very light */
  --on-navy:         #ffffff;   /* text on navy surfaces */
  --on-navy-2:       rgba(255,255,255,0.72);

  /* — Status (functional only) —————————————————————— */
  --success:         var(--mint);
  --success-bg:      var(--mint-50);
  --danger:          var(--coral);
  --danger-bg:       var(--coral-50);

  /* — Payment / carrier accent (used in their own brand colors,
        never re-themed). Keep as reference. */
  --pay-bizum:       #4ec3e0;
  --pay-visa:        #1a1f71;
  --pay-mastercard:  #eb001b;
  --pay-klarna:      #ffa8c5;
  --pay-paypal:      #003087;

  /* =========================================================
     TYPOGRAPHY
     ========================================================= */
  --font-serif:      'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans:       'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:       ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Base size — mobile-first 16px */
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-28: 28px;
  --fs-32: 32px;
  --fs-40: 40px;
  --fs-48: 48px;

  --lh-tight:        1.15;
  --lh-snug:         1.3;
  --lh-normal:       1.55;
  --lh-loose:        1.75;

  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em;   /* eyebrows, uppercase labels */

  /* =========================================================
     SPACING / RADII / SHADOWS / MOTION
     ========================================================= */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;    /* cards default */
  --radius-lg: 12px;   /* hero / large cards */
  --radius-xl: 18px;   /* image cards / picture frames */
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(22,32,65,0.04), 0 1px 1px rgba(22,32,65,0.04);
  --shadow-2: 0 4px 12px rgba(22,32,65,0.06), 0 1px 2px rgba(22,32,65,0.04);
  --shadow-3: 0 12px 32px rgba(22,32,65,0.10), 0 2px 6px rgba(22,32,65,0.05);
  --shadow-focus: 0 0 0 3px rgba(58,99,255,0.18);

  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;

  /* Layout */
  --page-width:    1200px;
  --page-pad:      20px;     /* mobile gutter */
  --tap:           44px;     /* min hit target (mobile-first) */
}

/* =============================================================
   Semantic type roles — apply via class or use the vars in CSS.
   ============================================================= */
.h-display {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  text-wrap: balance;
}
.h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: var(--lh-snug);
  color: var(--ink);
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: var(--lh-snug);
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-3);
}
.body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.body-sm {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.caption {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-12);
  line-height: var(--lh-snug);
  color: var(--fg-3);
}
.ui-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-13);
  letter-spacing: 0.02em;
  color: var(--fg);
}
.price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.price-old {
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: line-through;
  color: var(--fg-muted);
}
.price-now {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--coral);  /* discounted current price uses coral */
}

/* Sensible defaults if you only import this stylesheet */
html { font-family: var(--font-sans); color: var(--fg); background: var(--bg); }
body { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); margin: 0; }
p { margin: 0; color: var(--fg-2); line-height: var(--lh-normal); }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button { font-family: var(--font-sans); }


/* Page styles */
/* =========================================================
       Humart home — landing redesign (mobile-first)
       Imports colors_and_type.css for tokens.
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { background: #fdfbf6; }
    body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: var(--ink); }

    .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

    /* ---------- Announcement bar ---------- */
    .announce {
      background: var(--navy); color: #fff; font-family: var(--font-sans);
      font-size: 12px; font-weight: 500; padding: 9px 16px; text-align: center;
      letter-spacing: 0.02em;
    }
    .announce-track {
      display: inline-flex; align-items: center; gap: 14px;
      max-width: 100%; flex-wrap: wrap; justify-content: center;
    }
    .announce .sep { width: 1px; height: 11px; background: rgba(255,255,255,0.25); }

    /* ---------- Header ---------- */
    .header {
      background: rgba(253, 251, 246, 0.92);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      position: sticky; top: 0; z-index: 50;
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 0;
    }
    .header .left, .header .right { display: flex; align-items: center; gap: 4px; flex: 1; }
    .header .right { justify-content: flex-end; }
    .header .logo { height: 24px; width: auto; display: block; }
    .header .icon-btn {
      width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
      border: 0; background: transparent; border-radius: 8px; cursor: pointer; color: var(--ink); position: relative;
    }
    .header .icon-btn:hover { background: rgba(22,32,65,0.05); }
    .header .icon-btn .cart-count {
      position: absolute; top: 4px; right: 4px; background: var(--mint); color: #fff;
      font-size: 9px; font-weight: 800; min-width: 16px; height: 16px; border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
      border: 1.5px solid #fdfbf6;
    }
    /* desktop nav */
    .header .nav { display: none; gap: 22px; margin-left: 28px; }
    .header .nav a {
      font-family: var(--font-sans); font-size: 13px; font-weight: 600;
      color: var(--ink); text-decoration: none; letter-spacing: 0.02em;
    }
    .header .nav a:hover { color: var(--navy-900); }
    @media (min-width: 900px) {
      .header .nav { display: none; }
    }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      background: #d4c5a8;   /* warm fallback matching the cherry photo */
      overflow: hidden;
      color: #fff;
    }
    .hero .image {
      position: absolute; inset: 0; background-image: url('assets/hero-cherry.webp');
      background-size: cover; background-position: center 30%;
    }
    .hero .image::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(22,32,65,0) 0%, rgba(22,32,65,0) 50%, rgba(22,32,65,0.45) 100%);
    }
    .hero .content {
      position: relative; z-index: 2;
      padding: 90px 20px 50px;
      min-height: 540px;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .hero .eyebrow {
      font-family: var(--font-sans); font-size: 11px; font-weight: 800;
      letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75);
      margin-bottom: 14px;
    }
    .hero h1 {
      font-family: var(--font-serif); font-weight: 900; font-size: 44px; line-height: 1.04;
      letter-spacing: -0.015em; margin: 0 0 14px; text-wrap: balance;
      text-shadow: 0 1px 12px rgba(0,0,0,0.3);
    }
    .hero h1 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.92); }
    .hero p.lead {
      font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
      color: rgba(255,255,255,0.92); margin: 0 0 20px; max-width: 420px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }
    .hero .ctas { display: flex; gap: 10px; flex-wrap: wrap; }
    @media (min-width: 700px) {
      .hero .content { padding-top: 120px; padding-bottom: 60px; min-height: 620px; }
      .hero h1 { font-size: 64px; }
      .hero .image { background-position: center center; }
    }

    /* ---------- Buttons ---------- */
    .btn {
      font-family: var(--font-sans); font-weight: 800; font-size: 13px;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 14px 22px; border-radius: 6px; border: 0;
      min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      text-decoration: none; cursor: pointer;
      transition: background var(--dur-2) var(--ease-out), transform 80ms;
    }
    .btn:active { transform: scale(0.99); }
    .btn-on-dark { background: #fff; color: var(--navy); }
    .btn-on-dark:hover { background: rgba(255,255,255,0.92); }
    .btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.65); }
    .btn-primary { background: var(--navy); color: #fff; }
    .btn-primary:hover { background: var(--navy-900); }
    .btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }

    /* ---------- Trust strip ---------- */
    .trust-strip {
      background: #fff; border-bottom: 1px solid var(--line);
      padding: 20px 0;
    }
    .trust-strip .grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px;
    }
    .trust-strip .item { display: flex; gap: 10px; align-items: flex-start; }
    .trust-strip .icon {
      width: 36px; height: 36px; border-radius: 50%; background: var(--mint-50);
      color: var(--mint-700); display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .trust-strip .tt { font-weight: 700; font-size: 13px; color: var(--ink); line-height: 1.2; }
    .trust-strip .sub { font-size: 11px; color: var(--fg-3); margin-top: 2px; line-height: 1.4; }
    @media (min-width: 700px) {
      .trust-strip .grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* ---------- Section ---------- */
    section.products, section.accessories, section.why, section.cod, section.faq, section.banner, section.testimonials, section.how {
      padding: 56px 0;
    }
    section.products { padding-top: 48px; }
    .section-head { text-align: center; margin-bottom: 28px; }
    .section-head .eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--font-sans); font-size: 11px; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint-700);
      margin-bottom: 10px;
    }
    .section-head .eyebrow::before {
      content: ""; width: 7px; height: 7px; border-radius: 50%;
      background: var(--mint);
      animation: pulseDot 1.6s ease-in-out infinite;
    }
    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.45; transform: scale(1.3); }
    }
    .section-head h2 {
      font-family: var(--font-serif); font-weight: 700; font-size: 32px;
      line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 8px;
      text-wrap: balance;
    }
    .section-head h2 em { font-style: italic; font-weight: 400; color: var(--fg-2); }
    .section-head .scribble {
      display: block;
      width: 54px; height: 4px;
      background: var(--coral);
      border-radius: 4px;
      margin: 14px auto 0;
      transform: skewX(-12deg) scaleX(0);
      transform-origin: center;
    }

    /* Hero lead with subtle glow */
    .hero p.lead {
      position: relative;
      backdrop-filter: blur(2px);
    }
    .hero p.lead::before {
      content: "";
      position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
      width: 3px; height: 70%;
      background: linear-gradient(180deg, transparent, var(--mint), transparent);
      border-radius: 2px;
      opacity: 0.6;
    }

    /* Trust strip · modern card with mint accent line */
    .trust-strip { position: relative; }
    .trust-strip::before {
      content: "";
      position: absolute; left: 50%; top: 0; transform: translateX(-50%);
      width: 60px; height: 3px;
      background: var(--mint);
      border-radius: 2px;
      opacity: 0.4;
    }
    .trust-strip .item {
      padding: 16px 14px;
      border-radius: 14px;
      transition: transform 0.35s var(--ease-out), background 0.3s;
      cursor: default;
    }
    .trust-strip .item:hover {
      transform: translateY(-3px);
      background: rgba(46,204,143,0.04);
    }
    .trust-strip .icon {
      box-shadow: 0 4px 14px rgba(46,204,143,0.18);
      transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
    }
    .trust-strip .item:hover .icon {
      transform: scale(1.12) rotate(-6deg);
      box-shadow: 0 8px 20px rgba(46,204,143,0.28);
    }
    .trust-strip .tt { transition: color 0.25s; }
    .trust-strip .item:hover .tt { color: var(--mint-700); }

    /* Products section background · same cool grey as .how */
    section.products {
      position: relative;
      overflow: hidden;
      background: var(--bg-soft) !important;
    }
    section.products::before {
      content: "";
      position: absolute;
      top: 10%; right: -20%;
      width: 50%; aspect-ratio: 1/1;
      background: radial-gradient(circle, rgba(46,204,143,0.05) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(20px);
    }
    section.products::after {
      content: "";
      position: absolute;
      bottom: 10%; left: -20%;
      width: 50%; aspect-ratio: 1/1;
      background: radial-gradient(circle, rgba(58,99,255,0.04) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(20px);
    }
    section.products .container { position: relative; z-index: 1; }

    /* Minimalist editorial product card */
    .pcard {
      background: transparent !important;
      border-radius: 0 !important;
      border: 0 !important;
      box-shadow: none !important;
      overflow: visible !important;
      transition: transform 0.4s var(--ease-out);
      position: relative;
    }
    .pcard:hover { transform: translateY(-6px); }
    .pcard .pic {
      background: #fff !important;
      border-radius: 20px !important;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 20px rgba(22,32,65,0.06) !important;
      border: 0 !important;
      transition: box-shadow 0.4s var(--ease-out);
      aspect-ratio: 1/1 !important;
    }
    .pcard:hover .pic { box-shadow: 0 24px 56px rgba(22,32,65,0.16) !important; }
    .pcard .pic::after { display: none !important; }
    .pcard .pic img {
      width: 92% !important; height: 92% !important;
      object-fit: contain;
      transition: transform 0.5s var(--ease-out);
      filter: drop-shadow(0 12px 20px rgba(22,32,65,0.12));
    }
    .pcard:hover .pic img { transform: scale(1.05); }
    .pcard .badge-disc {
      position: absolute;
      top: 14px !important; left: 14px !important;
      background: var(--navy) !important;
      color: #fff !important;
      font-size: 11px !important;
      font-weight: 800 !important;
      padding: 5px 10px !important;
      border-radius: 999px !important;
      letter-spacing: 0.04em !important;
      box-shadow: 0 4px 12px rgba(22,32,65,0.20);
      transform: none !important;
    }
    .pcard .badge-best {
      position: absolute;
      top: 14px !important; right: 14px !important;
      background: rgba(255,255,255,0.96) !important;
      color: var(--navy) !important;
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 8px rgba(22,32,65,0.10);
      font-size: 9px !important;
      padding: 4px 9px !important;
      border-radius: 999px !important;
      letter-spacing: 0.12em !important;
    }
    .pcard .body {
      padding: 18px 6px 0 !important;
      background: transparent !important;
      text-align: center !important;
    }
    .pcard .title {
      font-family: var(--font-serif) !important;
      font-size: 18px !important;
      font-weight: 700 !important;
      color: var(--navy) !important;
      letter-spacing: -0.01em;
      margin: 0 0 6px !important;
      line-height: 1.2 !important;
    }
    .pcard .rating {
      font-size: 12px !important;
      color: var(--fg-3) !important;
      margin-bottom: 12px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
    }
    .pcard .rating .stars { color: #f5a623 !important; letter-spacing: 1px; }
    .pcard .price-row {
      display: flex !important;
      align-items: baseline !important;
      gap: 10px !important;
      margin-bottom: 10px !important;
      font-variant-numeric: tabular-nums;
      justify-content: center !important;
    }
    .pcard .p-old {
      font-size: 14px !important;
      color: var(--fg-muted) !important;
      text-decoration: line-through !important;
      font-weight: 500 !important;
    }
    .pcard .p-now {
      font-size: 24px !important;
      font-weight: 800 !important;
      color: var(--coral) !important;
      letter-spacing: -0.015em;
    }
    .pcard .stock {
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: 0.02em;
      display: inline-flex !important; align-items: center; gap: 5px;
    }
    .pcard .stock .dot {
      width: 6px; height: 6px; border-radius: 50%;
      animation: pulseDot 1.6s ease-in-out infinite;
    }
    .pcard .cta { display: none !important; }
    .pcard::after {
      content: "→";
      position: absolute;
      right: 4px; top: calc(100% - 36px - 64px);
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--navy); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 700;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.3s, transform 0.3s var(--ease-out);
      box-shadow: 0 8px 20px rgba(22,32,65,0.30);
      pointer-events: none;
    }
    .pcard:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* Why cards · accent stripe on hover (legacy, overridden below) */
    .why .card { position: relative; }
    .why .card .ic { transition: transform 0.4s var(--ease-out), box-shadow 0.3s; }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-1 { transition-delay: 0.05s; }
    .reveal-2 { transition-delay: 0.18s; }
    .reveal-3 { transition-delay: 0.32s; }
    .reveal-4 { transition-delay: 0.46s; }

    /* Why cards · dramatic entrance + number reveal */
    .why .card.reveal {
      opacity: 0;
      transform: translateY(60px) scale(0.96);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    }
    .why .card.reveal.in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    /* Number swings in from the right */
    .why .card::after {
      transform: translateX(40px) scale(0.85);
      opacity: 0;
      transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-out);
    }
    .why .card.in::after {
      transform: translateX(0) scale(1);
      opacity: 0.16;
      transition-delay: 0.3s;
    }
    .why .card:hover::after {
      opacity: 0.28;
      transform: scale(1.04);
    }
    /* Left bar grows from top on entry */
    .why .card::before {
      transform: scaleY(0);
      opacity: 0;
      transition: transform 0.9s var(--ease-out), opacity 0.5s;
    }
    .why .card.in::before {
      transform: scaleY(0.3);
      opacity: 0.6;
      transition-delay: 0.5s;
    }
    .why .card.in:hover::before {
      transform: scaleY(1);
      opacity: 1;
    }
    /* Icon pop-in */
    .why .card .ic {
      transform: scale(0.6) rotate(-12deg);
      opacity: 0;
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s, background 0.3s, color 0.3s;
    }
    .why .card.in .ic {
      transform: scale(1) rotate(0);
      opacity: 1;
      transition-delay: 0.4s;
    }
    .why .card.in:hover .ic {
      background: var(--mint); color: #fff;
      transform: scale(1.08) rotate(-6deg);
      transition-delay: 0s;
    }

    /* Section parallax glow on scroll */
    section.why { position: relative; overflow: hidden; }
    section.why::before {
      content: "";
      position: absolute;
      top: -10%; left: 50%; transform: translateX(-50%);
      width: 70%; aspect-ratio: 1/1;
      background: radial-gradient(circle, rgba(46,204,143,0.05) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(40px);
      z-index: 0;
      opacity: 0;
      transition: opacity 1.2s var(--ease-out);
    }
    section.why.in::before { opacity: 1; }
    section.why > * { position: relative; z-index: 1; }
    .section-head.in .scribble { animation: scribbleIn 0.7s 0.4s var(--ease-out) forwards; }
    @keyframes scribbleIn { to { transform: skewX(-12deg) scaleX(1); } }

    /* Modern editorial product card */
    .pcard {
      background: transparent;
      border-radius: 0;
      border: 0;
      box-shadow: none;
      transition: transform 0.4s var(--ease-out);
      overflow: visible;
      position: relative;
    }
    .pcard:hover { transform: translateY(-4px); }
    .pcard .pic {
      background: #f6f7fb !important;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 12px 32px rgba(22,32,65,0.06);
      transition: box-shadow 0.4s var(--ease-out);
      border: 1px solid rgba(22,32,65,0.04);
    }
    .pcard:hover .pic { box-shadow: 0 24px 56px rgba(22,32,65,0.14); }
    .pcard .pic::after {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 75%, rgba(22,32,65,0) 50%, rgba(22,32,65,0.04) 100%);
      pointer-events: none;
    }
    .pcard .badge-disc {
      position: absolute;
      top: auto !important; bottom: 12px !important; left: 12px !important;
      background: var(--navy) !important;
      color: #fff !important;
      font-size: 12px !important;
      padding: 6px 12px !important;
      border-radius: 999px !important;
      letter-spacing: 0.04em !important;
      box-shadow: 0 6px 16px rgba(22,32,65,0.25);
      transform: none !important;
      z-index: 2;
    }
    .pcard .badge-best {
      position: absolute;
      top: 12px !important; right: 12px !important;
      background: rgba(255,255,255,0.95) !important;
      color: var(--navy) !important;
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 8px rgba(22,32,65,0.10);
      font-size: 10px !important;
      padding: 5px 10px !important;
      border-radius: 999px !important;
      letter-spacing: 0.1em !important;
      z-index: 2;
    }
    .pcard .pic img { transition: transform 0.5s var(--ease-out); }
    .pcard:hover .pic img { transform: scale(1.06); }

    .pcard .body {
      padding: 14px 4px 0 !important;
      background: transparent !important;
    }
    .pcard .title {
      font-family: var(--font-serif) !important;
      font-size: 18px !important;
      font-weight: 700 !important;
      color: var(--navy) !important;
      letter-spacing: -0.01em;
      margin: 0 0 4px !important;
      line-height: 1.2 !important;
    }
    .pcard .rating {
      font-size: 12px !important;
      color: var(--fg-3) !important;
      margin-bottom: 10px !important;
    }
    .pcard .rating .stars { color: #f5a623 !important; letter-spacing: 1px; }
    .pcard .price-row {
      display: flex !important;
      align-items: baseline !important;
      gap: 8px !important;
      margin-bottom: 8px !important;
      font-variant-numeric: tabular-nums;
    }
    .pcard .p-old {
      font-size: 13px !important;
      color: var(--fg-muted) !important;
      text-decoration: line-through !important;
      font-weight: 500 !important;
    }
    .pcard .p-now {
      font-size: 22px !important;
      font-weight: 800 !important;
      color: var(--coral) !important;
      letter-spacing: -0.01em;
    }
    .pcard .stock {
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: 0.02em;
      display: inline-flex !important; align-items: center; gap: 5px;
    }
    .pcard .stock .dot {
      width: 6px; height: 6px; border-radius: 50%;
      animation: pulseDot 1.6s ease-in-out infinite;
    }
    .pcard .cta {
      display: none !important;
    }
    /* Subtle arrow on hover */
    .pcard::after {
      content: "→";
      position: absolute;
      right: 8px; bottom: 14px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--navy); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 700;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.3s, transform 0.3s var(--ease-out);
      box-shadow: 0 8px 20px rgba(22,32,65,0.25);
      pointer-events: none;
    }
    .pcard:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* (Why cards styling consolidated below in original section block) */

    /* How steps with watermark numbers */
    .step { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
    .step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22,32,65,0.10); }

    /* Trust strip icon hover */
    .trust-strip .item { transition: transform 0.25s ease; }
    .trust-strip .item:hover { transform: translateY(-2px); }
    .trust-strip .icon { transition: transform 0.4s var(--ease-out), background 0.25s; }
    .trust-strip .item:hover .icon { transform: scale(1.08) rotate(-4deg); }

    /* Accessory cards lift on hover */
    .acard { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.25s; border: 1px solid transparent; }
    .acard:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22,32,65,0.10); border-color: var(--mint); }
    .acard:hover .ic { background: var(--mint-50); color: var(--mint-700); }

    /* FAQ smooth */
    .faq details summary { transition: color 0.2s; }
    .faq details[open] summary { color: var(--navy); }
    .section-head .underline {
      width: 56px; height: 3px; background: var(--navy); border-radius: 2px;
      margin: 14px auto 0;
      display: none;
    }
    .section-head h2 {
      font-family: var(--font-serif); font-weight: 700; font-size: 32px;
      line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 8px;
    }
    .section-head .underline {
      width: 56px; height: 3px; background: var(--navy); border-radius: 2px;
      margin: 14px auto 0;
    }
    .section-head p {
      font-family: var(--font-sans); font-size: 14px; color: var(--fg-2);
      max-width: 480px; margin: 8px auto 0; line-height: 1.55;
    }
    @media (min-width: 700px) {
      .section-head h2 { font-size: 42px; }
    }

    /* ---------- Product carousel (horizontal scroll) ---------- */
    .product-scroll-wrap {
      margin: 0 -20px;          /* bleed gutters so first/last card aligns with content */
      position: relative;
      overflow: hidden;
    }
    .product-scroll {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 20px;
      padding: 4px 20px 16px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--line-strong) transparent;
    }
    .product-scroll .pcard {
      scroll-snap-align: start;
      transition: transform 0.5s var(--ease-out), filter 0.5s;
    }
    .product-scroll .pcard:hover {
      transform: translateY(-6px) scale(1.02);
    }
    .product-scroll::-webkit-scrollbar { height: 6px; }
    .product-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
    .product-scroll::-webkit-scrollbar-track { background: transparent; }
    .product-scroll .pcard {
      flex: 0 0 64%;            /* ~1.5 cards on mobile, invites swipe */
      max-width: 280px;
      scroll-snap-align: start;
    }
    @media (min-width: 600px) {
      .product-scroll .pcard { flex-basis: 42%; max-width: 300px; }
    }
    @media (min-width: 900px) {
      .product-scroll .pcard { flex-basis: calc((100% - 4 * 22px) / 5); max-width: none; }
      .product-scroll { gap: 22px; padding: 4px 20px 12px; }
    }
    /* hint on desktop that more cards exist by showing 4.5 instead of 5 */
    @media (min-width: 1100px) {
      .product-scroll .pcard { flex-basis: calc((100% - 4 * 22px) / 4.5); }
    }
    /* Arrow buttons (desktop only) */
    .product-nav {
      display: none;
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: #fff; color: var(--ink); border: 1px solid var(--line);
      align-items: center; justify-content: center; cursor: pointer;
      box-shadow: var(--shadow-2);
      z-index: 2; transition: background var(--dur-2);
    }
    .product-nav:hover { background: var(--bg-soft); }
    .product-nav.prev { left: 4px; }
    .product-nav.next { right: 4px; }
    .product-nav:disabled { opacity: 0.3; cursor: not-allowed; }
    @media (min-width: 900px) { .product-nav { display: inline-flex; } }

    /* stock colors (needed regardless of card style) */
    .pcard .stock { color: var(--mint-700) !important; }
    .pcard .stock .dot { background: var(--mint) !important; }
    .pcard .stock.low { color: var(--coral-700) !important; }
    .pcard .stock.low .dot { background: var(--coral) !important; }
    /* base anchor reset for .pcard */
    .pcard { text-decoration: none; color: inherit; display: block; }

    /* ---------- Why Humart ---------- */
    section.why { background: #fff; }
    .why .row {
      display: grid; grid-template-columns: 1fr; gap: 18px;
      align-items: stretch;
    }
    @media (min-width: 700px) { .why .row { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
    .why .card {
      position: relative; overflow: hidden;
      background: #fff;
      border: 1px solid rgba(22,32,65,0.06);
      border-radius: 20px;
      padding: 28px 24px 28px 28px;
      box-shadow: 0 8px 24px rgba(22,32,65,0.05);
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
      display: flex; flex-direction: column;
      min-height: 280px;
    }
    .why .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(22,32,65,0.12);
      border-color: rgba(46,204,143,0.35);
    }
    /* Left mint accent bar that grows on hover */
    .why .card::before {
      content: "";
      position: absolute; left: 0; top: 28px; bottom: 28px;
      width: 3px;
      background: linear-gradient(180deg, var(--mint), var(--coral));
      border-radius: 0 3px 3px 0;
      transform: scaleY(0.3);
      transform-origin: top;
      opacity: 0.6;
      transition: transform 0.5s var(--ease-out), opacity 0.3s;
    }
    .why .card:hover::before {
      transform: scaleY(1);
      opacity: 1;
    }
    /* Big serif number on the right, italic, prominent */
    .why .card::after {
      content: attr(data-num);
      position: absolute;
      right: 22px; top: 24px;
      font-family: var(--font-serif); font-style: italic; font-weight: 900;
      font-size: 56px; line-height: 1; letter-spacing: -0.04em;
      color: var(--navy);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
      transition: opacity 0.35s, transform 0.4s var(--ease-out);
    }
    .why .card:hover::after {
      opacity: 0.28;
      transform: scale(1.04);
    }
    .why .card > * { position: relative; z-index: 1; }
    .why .card .ic {
      width: 52px; height: 52px; border-radius: 16px;
      background: var(--mint-50); color: var(--mint-700);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
    }
    .why .card:hover .ic {
      background: var(--mint); color: #fff;
      transform: scale(1.08) rotate(-6deg);
    }
    .why .card h3 {
      font-family: var(--font-serif); font-weight: 700; font-size: 22px;
      color: var(--ink); margin: 0 0 10px;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .why .card p {
      font-size: 14px; color: var(--fg-2); line-height: 1.6; margin: 0;
      flex: 1;
    }
    .why .card .strong { color: var(--navy); font-weight: 700; }

    /* ---------- Banner ---------- */
    section.banner { padding: 0; background: var(--bg-soft); }
    .banner-inner {
      position: relative; overflow: hidden;
      background-image: url('assets/hero-twin-watches.webp');
      background-size: cover; background-position: center;
      min-height: 380px;
      display: flex; align-items: center; justify-content: center;
    }
    .banner-inner::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.10) 100%);
    }
    .banner-card {
      position: relative; z-index: 2;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 18px;
      padding: 28px 28px;
      text-align: center;
      box-shadow: 0 10px 32px rgba(22,32,65,0.10);
      max-width: 420px; margin: 24px;
      color: var(--navy);
    }
    .banner-card h2 { color: var(--navy) !important; text-shadow: 0 2px 14px rgba(255,255,255,0.8); }
    .banner-card h2 em { color: var(--fg-2) !important; }
    .banner-card p { color: var(--navy) !important; text-shadow: 0 1px 8px rgba(255,255,255,0.7); font-weight: 600; }
    .banner-card .underline { background: var(--navy) !important; }
    .banner-card h2 {
      font-family: var(--font-serif); font-weight: 700; font-size: 28px;
      line-height: 1.12; letter-spacing: -0.01em; color: var(--navy);
      margin: 0 0 12px;
    }
    .banner-card .underline {
      width: 48px; height: 3px; background: var(--navy); border-radius: 2px; margin: 0 auto 14px;
    }
    .banner-card p { font-family: var(--font-sans); font-size: 13px; color: var(--fg-2); margin: 0 0 18px; line-height: 1.55;}
    @media (min-width: 700px) {
      .banner-inner { min-height: 480px; }
      .banner-card h2 { font-size: 36px; }
    }

    /* ---------- Testimonials ---------- */
    section.testimonials { background: #fff; padding: 48px 0;}
    .testimonials .row {
      display: grid; grid-template-columns: 1fr; gap: 14px;
    }
    @media (min-width: 700px) { .testimonials .row { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
    .review {
      background: var(--bg-soft); border-radius: 12px; padding: 20px;
    }
    .review .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
    .review p {
      font-family: var(--font-serif); font-size: 15px; line-height: 1.5; color: var(--ink);
      margin: 0 0 12px; font-style: italic;
    }
    .review .who { font-size: 12px; color: var(--fg-3); display: flex; align-items: center; gap: 6px; }
    .review .who .nm { color: var(--ink); font-weight: 700; font-family: var(--font-sans); }
    .review .who .ver {
      background: var(--mint); color: #fff; font-size: 9px; font-weight: 800;
      padding: 2px 6px; border-radius: 999px; letter-spacing: 0.04em;
    }

    /* ---------- COD section + animations ---------- */
    section.cod {
      background: var(--navy); color: #fff; padding: 56px 0;
      position: relative; overflow: hidden;
    }
    /* E · Aurora background halos */
    section.cod::before, section.cod::after {
      content: "";
      position: absolute;
      width: 70%; aspect-ratio: 1/1;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(60px);
      opacity: 0;
      transition: opacity 1.5s var(--ease-out), transform 8s ease-in-out;
      z-index: 0;
    }
    section.cod::before {
      top: -10%; right: -20%;
      background: radial-gradient(circle, rgba(46,204,143,0.18) 0%, transparent 70%);
    }
    section.cod::after {
      bottom: -20%; left: -20%;
      background: radial-gradient(circle, rgba(58,99,255,0.22) 0%, transparent 70%);
    }
    section.cod.in::before { opacity: 1; transform: translate(-4%, 4%); }
    section.cod.in::after  { opacity: 1; transform: translate(4%, -4%); }
    section.cod .container { position: relative; z-index: 1; }

    .cod .row { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
    @media (min-width: 800px) { .cod .row { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
    .cod .eyebrow {
      font-family: var(--font-sans); font-size: 11px; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint);
      margin-bottom: 14px;
    }
    .cod h2 {
      font-family: var(--font-serif); font-weight: 700; font-size: 32px;
      line-height: 1.12; letter-spacing: -0.01em; color: #fff; margin: 0 0 14px; text-wrap: balance;
    }
    .cod p { font-family: var(--font-sans); font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 0 24px; max-width: 440px; }
    .cod-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    /* B · Bullets cascade in from left */
    .cod-points li {
      display: flex; gap: 10px; align-items: center;
      font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.92);
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    section.cod.in .cod-points li { opacity: 1; transform: translateX(0); }
    section.cod.in .cod-points li:nth-child(1) { transition-delay: 0.2s; }
    section.cod.in .cod-points li:nth-child(2) { transition-delay: 0.35s; }
    section.cod.in .cod-points li:nth-child(3) { transition-delay: 0.50s; }
    section.cod.in .cod-points li:nth-child(4) { transition-delay: 0.65s; }
    .cod-points li .check {
      width: 22px; height: 22px; border-radius: 50%; background: var(--mint); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 900; flex-shrink: 0;
    }
    .cod .card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px; padding: 24px;
      backdrop-filter: blur(4px);
    }
    .cod .card .lbl {
      font-family: var(--font-sans); font-size: 10px; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55);
      margin-bottom: 14px; text-align: center;
    }
    .pay-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
    }
    /* D · Payment chips bounce-in */
    .pay-grid .pchip {
      background: #fff; border-radius: 6px; padding: 8px;
      display: flex; align-items: center; justify-content: center;
      min-height: 38px;
      opacity: 0;
      transform: scale(0.4);
      transition: opacity 0.5s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    section.cod.in .pay-grid .pchip { opacity: 1; transform: scale(1); }
    section.cod.in .pay-grid .pchip:nth-child(1) { transition-delay: 0.5s; }
    section.cod.in .pay-grid .pchip:nth-child(2) { transition-delay: 0.58s; }
    section.cod.in .pay-grid .pchip:nth-child(3) { transition-delay: 0.66s; }
    section.cod.in .pay-grid .pchip:nth-child(4) { transition-delay: 0.74s; }
    section.cod.in .pay-grid .pchip:nth-child(5) { transition-delay: 0.82s; }
    section.cod.in .pay-grid .pchip:nth-child(6) { transition-delay: 0.90s; }
    section.cod.in .pay-grid .pchip:nth-child(7) { transition-delay: 0.98s; }
    section.cod.in .pay-grid .pchip:nth-child(8) { transition-delay: 1.06s; }
    .pay-grid .pchip svg { display: block; max-width: 100%; max-height: 20px; }

    /* ---------- FAQ ---------- */
    section.faq { background: #fff; padding: 56px 0; }
    .faq .wrap { max-width: 720px; margin: 0 auto; }
    .faq details {
      border-top: 1px solid var(--line);
      padding: 16px 4px;
    }
    .faq details:last-of-type { border-bottom: 1px solid var(--line); }
    .faq summary {
      list-style: none; cursor: pointer;
      font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--ink);
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      line-height: 1.4;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "+"; color: var(--fg-3); font-size: 22px; font-weight: 400; line-height: 1; flex-shrink: 0;
    }
    .faq details[open] summary::after { content: "−"; }
    .faq .body { font-size: 13px; color: var(--fg-2); line-height: 1.6; padding: 10px 0 4px; }

    /* ---------- Accessories ---------- */
    section.accessories { background: var(--bg-soft); }
    .acc-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    @media (min-width: 700px) { .acc-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
    .acard {
      background: #fff; border-radius: 12px; padding: 18px 16px;
      text-decoration: none; color: var(--ink);
      display: flex; flex-direction: column; align-items: center; text-align: center;
      transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
    }
    .acard:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
    .acard .ic {
      width: 56px; height: 56px; border-radius: 50%; background: var(--bg-tint);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--navy); margin-bottom: 12px;
    }
    .acard .nm { font-family: var(--font-serif); font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 4px; }
    .acard .from { font-size: 11px; color: var(--fg-3); }
    .acard .from strong { color: var(--coral); font-weight: 800; font-variant-numeric: tabular-nums; }

    /* ---------- Newsletter strip (inside footer) ---------- */
    .footer-newsletter {
      background: var(--navy-900);
      padding: 32px 0;
    }
    .footer-newsletter .row {
      display: grid; gap: 16px;
      align-items: center;
    }
    @media (min-width: 800px) { .footer-newsletter .row { grid-template-columns: 1.2fr 1fr; gap: 32px; } }
    .footer-newsletter h3 {
      font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: #fff; margin: 0 0 6px;
    }
    .footer-newsletter p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }
    .footer-newsletter form { display: flex; gap: 8px; }
    .footer-newsletter input {
      flex: 1; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15); color: #fff;
      border-radius: 6px; padding: 12px 14px;
      font-family: var(--font-sans); font-size: 14px; min-height: 48px;
    }
    .footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
    .footer-newsletter input:focus { outline: none; border-color: var(--mint); }
    .footer-newsletter button {
      background: var(--mint); color: #fff; border: 0; border-radius: 6px;
      padding: 0 22px; font-family: var(--font-sans); font-weight: 800; font-size: 12px;
      letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; min-height: 48px;
    }
    .footer-newsletter button:hover { background: var(--mint-700); }

    /* ---------- Footer ---------- */
    .footer {
      background: var(--navy); color: rgba(255,255,255,0.82);
      padding: 40px 0 24px;
      font-family: var(--font-sans);
    }
    .footer .top {
      display: grid; gap: 32px; grid-template-columns: 1fr;
    }
    @media (min-width: 700px) { .footer .top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
    .footer .brand img { height: 24px; width: auto; filter: brightness(0) invert(1); }
    .footer .brand .tag {
      font-family: var(--font-sans); font-size: 10px; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.55); margin-top: 8px;
    }
    .footer .brand .blurb {
      font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.7);
      line-height: 1.55; max-width: 320px; margin-top: 14px;
    }
    .footer .socials { display: flex; gap: 8px; margin-top: 16px; }
    .footer .socials a {
      width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
      display: inline-flex; align-items: center; justify-content: center; color: #fff;
      transition: background var(--dur-2);
    }
    .footer .socials a:hover { background: rgba(255,255,255,0.18); }
    .footer h4 {
      font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
      text-transform: uppercase; color: #fff; margin: 0 0 14px;
    }
    .footer ul { list-style: none; padding: 0; margin: 0; }
    .footer li { margin: 8px 0; font-size: 13px; }
    .footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
    .footer a:hover { color: #fff; }
    .footer .contact-item { display: flex; gap: 8px; align-items: center; margin: 8px 0; font-size: 13px; }
    .footer .contact-item .ic { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;}
    .footer hr { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 24px 0; }
    .footer .bottom {
      display: grid; gap: 16px; align-items: center; grid-template-columns: 1fr;
    }
    @media (min-width: 800px) { .footer .bottom { grid-template-columns: 1fr auto 1fr; } }
    .footer .copyright { font-size: 11px; color: rgba(255,255,255,0.55); }
    .footer .legal { font-size: 11px; color: rgba(255,255,255,0.55); text-align: right; }
    .footer .legal a { color: rgba(255,255,255,0.7); }

    .pay-row-bottom {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    }
    .pay-row-bottom .lbl {
      width: 100%; text-align: center;
      font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.55); margin-bottom: 10px;
    }
    .pchip {
      background: #fff; border-radius: 6px; padding: 6px 10px;
      display: inline-flex; align-items: center; justify-content: center; min-height: 32px; min-width: 50px;
    }
    .pchip svg { display: block; max-width: 100%; max-height: 18px; }
    .pchip.cod {
      background: var(--mint-50); color: var(--mint-700); padding: 0 12px;
      font-family: var(--font-sans); font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
      gap: 6px;
    }
    .pchip.cod svg { width: 14px; height: 14px; max-height: 14px; }

    /* page-end spacer */
    .end-spacer { height: 24px; }

    /* ---------- How it works (4 steps) · timeline editorial ---------- */
    section.how { background: var(--bg-soft); padding: 56px 0; overflow: hidden; position: relative; }
    section.how::before {
      content: "";
      position: absolute;
      top: 30%; right: -15%;
      width: 60%; aspect-ratio: 1/1;
      background: radial-gradient(circle, rgba(46,204,143,0.05) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(20px);
    }
    section.how .container { position: relative; z-index: 1; }
    .how .steps {
      display: grid; grid-template-columns: 1fr; gap: 0;
      counter-reset: step;
      position: relative;
      max-width: 540px; margin: 0 auto;
      padding-left: 0;
    }
    /* Timeline vertical line (mobile + small desktop) */
    .how .steps::before {
      content: "";
      position: absolute;
      left: 27px; top: 28px; bottom: 28px;
      width: 2px;
      background: linear-gradient(180deg, var(--mint) 0%, var(--mint) 65%, var(--coral) 100%);
      opacity: 0.35;
      z-index: 0;
      /* A · scroll-triggered draw */
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 1.2s var(--ease-out), opacity 0.5s;
    }
    .how .steps.line-on::before {
      transform: scaleY(1);
      opacity: 0.4;
    }
    @media (min-width: 900px) {
      .how .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        max-width: none;
      }
      .how .steps::before {
        left: 28px; right: 28px; top: 28px;
        height: 2px; width: auto; bottom: auto;
        background: linear-gradient(90deg, var(--mint) 0%, var(--mint) 65%, var(--coral) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 1.4s var(--ease-out), opacity 0.5s;
      }
      .how .steps.line-on::before {
        transform: scaleX(1);
      }
    }
    .step {
      background: transparent;
      border-radius: 0;
      padding: 16px 0 28px 80px;
      position: relative;
      box-shadow: none;
      transition: transform 0.35s var(--ease-out);
    }
    .step:hover { transform: translateX(4px); }
    @media (min-width: 900px) {
      .step { padding: 70px 14px 0 14px; text-align: center; }
      .step:hover { transform: translateY(-4px); }
    }
    /* Big number circle on timeline */
    .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 0; top: 8px;
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--navy); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--font-serif); font-weight: 900;
      font-size: 24px; line-height: 1;
      box-shadow: 0 8px 20px rgba(22,32,65,0.20);
      z-index: 2;
      /* B · bouncy pop-in default state */
      transform: scale(0);
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.4s;
    }
    .step.in::before { transform: scale(1); }
    .step.in:nth-child(2)::before { transition-delay: 0.15s; }
    .step.in:nth-child(3)::before { transition-delay: 0.30s; }
    .step.in:nth-child(4)::before { transition-delay: 0.45s; }
    @media (min-width: 900px) {
      .step::before { left: 50%; top: 0; transform: translateX(-50%) scale(0); }
      .step.in::before { transform: translateX(-50%) scale(1); }
      .step:hover::before { transform: translateX(-50%) scale(1.08); }
      .step.in:hover::before { transform: translateX(-50%) scale(1.08); }
    }
    /* D · active step — glow + scale */
    .step.active::before {
      box-shadow: 0 0 0 6px rgba(46,204,143,0.25), 0 8px 20px rgba(22,32,65,0.30);
      background: var(--navy-900);
    }
    .step.active.coral::before {
      box-shadow: 0 0 0 6px rgba(255,107,107,0.25), 0 8px 20px rgba(255,107,107,0.35);
      background: var(--coral-700);
    }
    .step.active h3 { color: var(--navy); }
    .step.active .pill {
      transform: scale(1.05);
      box-shadow: 0 4px 14px rgba(46,204,143,0.20);
    }
    .step.coral.active .pill {
      box-shadow: 0 4px 14px rgba(255,107,107,0.20);
    }

    /* C · content slide-in from left */
    .step h3, .step p, .step .pill {
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), box-shadow 0.3s;
    }
    .step.in h3   { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
    .step.in p    { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
    .step.in .pill { opacity: 1; transform: translateX(0); transition-delay: 0.45s; }
    .step.in:nth-child(2) h3   { transition-delay: 0.40s; }
    .step.in:nth-child(2) p    { transition-delay: 0.50s; }
    .step.in:nth-child(2) .pill { transition-delay: 0.60s; }
    .step.in:nth-child(3) h3   { transition-delay: 0.55s; }
    .step.in:nth-child(3) p    { transition-delay: 0.65s; }
    .step.in:nth-child(3) .pill { transition-delay: 0.75s; }
    .step.in:nth-child(4) h3   { transition-delay: 0.70s; }
    .step.in:nth-child(4) p    { transition-delay: 0.80s; }
    .step.in:nth-child(4) .pill { transition-delay: 0.90s; }
    .step.coral::before {
      background: var(--coral) !important;
      box-shadow: 0 8px 20px rgba(255,107,107,0.25);
    }
    .step.coral:hover::before { background: var(--coral-700) !important; }
    /* Hide the .ic block — number circle replaces it */
    .step .ic { display: none !important; }
    .step h3 {
      font-family: var(--font-serif); font-weight: 700; font-size: 18px;
      color: var(--navy); margin: 6px 0 8px;
      letter-spacing: -0.005em;
    }
    .step p {
      font-family: var(--font-sans); font-size: 14px;
      color: var(--fg-2); line-height: 1.55; margin: 0;
    }
    .step .pill {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 12px;
      font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 10px; border-radius: 999px;
      background: var(--mint-50); color: var(--mint-700);
    }
    .step .pill::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--mint);
    }
    .step.coral .pill {
      background: var(--coral-50); color: var(--coral-700);
    }
    .step.coral .pill::before { background: var(--coral); }

    /* ---------- Press strip ---------- */
    section.press { background: #fff; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .press .row {
      display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center;
    }
    .press .lbl {
      font-family: var(--font-sans); font-size: 10px; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3);
      width: 100%; text-align: center; margin-bottom: 14px;
    }
    .press .logo {
      font-family: var(--font-serif); font-weight: 700; font-size: 17px;
      color: var(--fg-2); opacity: 0.55;
      letter-spacing: 0.02em;
    }
    .press .logo.alt { font-family: var(--font-sans); font-style: italic; font-weight: 800; letter-spacing: -0.01em; }
    .press .logo.compact { font-family: var(--font-sans); font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; }

    /* ---------- Sticky mobile buy bar (DISABLED on home) ---------- */

    /* ============================================================
       Efectos adicionales (1, 2, 3, 5, 6 del set extra)
       ============================================================ */

    /* ---------- 1) Hero Ken-Burns + parallax ---------- */
    .hero .image {
      animation: heroKenBurns 24s ease-in-out infinite alternate;
      will-change: transform, background-position;
    }
    @keyframes heroKenBurns {
      0%   { transform: scale(1.04); background-position: center 32%; }
      100% { transform: scale(1.12); background-position: center 28%; }
    }
    /* Parallax desplazamiento JS-driven via translate3d en .image */
    .hero .image { transition: transform 80ms linear, background-position 80ms linear; }
    @media (prefers-reduced-motion: reduce) {
      .hero .image { animation: none !important; }
    }

    /* ---------- 2) Scroll progress bar ---------- */
    .scroll-progress {
      position: fixed; top: 0; left: 0;
      width: 0%; height: 3px;
      background: linear-gradient(90deg, var(--coral), var(--coral-700));
      z-index: 9999;
      pointer-events: none;
      transition: width 80ms linear;
      box-shadow: 0 1px 6px rgba(255,107,107,0.4);
    }

    /* ---------- 5) Trust strip con contadores ---------- */
    section.trust-counters {
      padding: 36px 0 28px;
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    section.trust-counters::before {
      content: "";
      position: absolute; left: 50%; top: 0; transform: translateX(-50%);
      width: 60px; height: 3px;
      background: var(--mint);
      border-radius: 2px;
      opacity: 0.4;
    }
    .trust-counters .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px 18px;
      max-width: 920px; margin: 0 auto;
    }
    @media (min-width: 720px) {
      .trust-counters .grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    }
    .trust-counters .stat { text-align: center; }
    .trust-counters .num {
      font-family: var(--font-serif);
      font-weight: 900;
      font-size: 30px;
      line-height: 1;
      color: var(--navy);
      letter-spacing: -0.015em;
      font-variant-numeric: tabular-nums;
      display: inline-block;
      transition: transform 0.4s var(--ease-out);
    }
    .trust-counters .stat:hover .num { transform: scale(1.05); }
    .trust-counters .num .suffix { color: var(--coral); margin-left: 1px; }
    .trust-counters .lbl {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--fg-3);
      margin-top: 8px;
    }
    @media (min-width: 720px) {
      .trust-counters .num { font-size: 38px; }
    }

    /* ---------- 6) FAQ accordion animado ---------- */
    .faq details {
      overflow: hidden;
      transition: background 0.25s var(--ease-out);
    }
    .faq details summary {
      list-style: none;
      cursor: pointer;
      position: relative;
      padding-right: 36px;
    }
    .faq details summary::-webkit-details-marker { display: none; }
    .faq details summary::after {
      content: "";
      position: absolute;
      right: 6px; top: 50%;
      width: 12px; height: 12px;
      border-right: 2px solid var(--fg-3);
      border-bottom: 2px solid var(--fg-3);
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s var(--ease-out), border-color 0.25s;
    }
    .faq details[open] summary::after {
      transform: translateY(-30%) rotate(-135deg);
      border-color: var(--navy);
    }
    .faq details .body {
      animation: faqSlide 0.32s var(--ease-out);
      transform-origin: top;
    }
    @keyframes faqSlide {
      from { opacity: 0; transform: translateY(-6px); max-height: 0; }
      to   { opacity: 1; transform: translateY(0);    max-height: 320px; }
    }

    /* ---------- 3) Tilt 3D en pcards (se aplica via JS solo en desktop) ---------- */
    .product-scroll .pcard {
      transform-style: preserve-3d;
      will-change: transform;
    }
