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

  :root {
    /* ─────────────────────────────────────────────────────────────
       PALETA PREMIUM — Marrón chocolate + Oro champagne sobre crema.
       Sin rojo. Chocolate en áreas de contraste y botones; oro como
       acento fino (precios, eyebrows, hovers); crema como lienzo.
       ───────────────────────────────────────────────────────────── */
    --cream:      #FCF9F5;   /* lienzo principal */
    --cream-2:    #F6EFE6;   /* secciones alternas / cards suaves */
    --sand:       #EFE6D9;   /* fondo de imágenes de producto */
    --choc:       #251619;   /* chocolate alta gama: texto, botones, bandas */
    --choc-2:     #3D282C;   /* chocolate intermedio */
    --gold:       #C9A24B;   /* oro champagne: acento */
    --gold-2:     #B08D34;   /* oro profundo: hover de texto sobre claro */
    --gold-soft:  #E8D4A2;

    /* Texto */
    --ink:        #251619;   /* texto principal */
    --muted:      #6E6466;   /* texto secundario */
    --muted-2:    #8C8285;   /* texto terciario */
    --white:      #FFFFFF;

    /* Cream sobre fondos oscuros (footer, showcase, bandas) */
    --on-dark:      rgba(252,249,245,0.92);
    --on-dark-soft: rgba(252,249,245,0.62);
    --on-dark-faint:rgba(252,249,245,0.34);

    /* WhatsApp (único verde, para acciones que abren el chat) */
    --wa:         #1FA855;
    --wa-hi:      #189247;

    /* Líneas y bordes */
    --line:        rgba(37,22,25,0.09);
    --line-strong: rgba(37,22,25,0.16);
    --gold-line:   rgba(201,162,75,0.45);
    --line-dark:   rgba(252,249,245,0.14);

    /* Sombras suaves (tema claro) */
    --shadow-sm: 0 2px 10px rgba(37,22,25,0.05);
    --shadow:    0 14px 34px rgba(37,22,25,0.09);
    --shadow-lg: 0 28px 64px rgba(37,22,25,0.14);

    /* Layout */
    --maxw:   1200px;
    --gutter: 40px;
    --radius: 22px;
  }

  @media (max-width: 768px) { :root { --gutter: 20px; } }
  @media (max-width: 480px) { :root { --gutter: 16px; } }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* ── TIPOGRAFÍA DISPLAY (Fraunces serif de alto contraste) ── */
  .hero-title, .section-title, .statement-big, .contact-title, .thanks-title,
  .card-name, .popular-name,
  .hero-price, .card-price, .popular-price, .stat-num {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.02em;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--cream-2); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

  /* ── NAV ── */
  #navbar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto; width: 100%;
    padding: 0 var(--gutter);
    display: flex; align-items: center; justify-content: space-between;
  }
  #navbar.scrolled {
    background: rgba(252,249,245,0.82);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
    position: relative; z-index: 110;
  }
  /* El logo es trazo blanco → lo oscurecemos para que luzca sobre la crema */
  .nav-logo img {
    height: 42px; width: auto; object-fit: contain; display: block;
    filter: brightness(0) saturate(100%);
    opacity: 0.88;
  }

  .nav-links-desktop { display: flex; align-items: center; gap: 26px; }
  .nav-links-desktop > a:not(.nav-icon) {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
    transition: color 0.2s;
  }
  .nav-links-desktop > a:not(.nav-icon):hover { color: var(--gold-2); }
  .nav-icon {
    display: inline-flex; align-items: center;
    color: var(--ink);
    transition: color 0.2s, transform 0.2s;
  }
  .nav-icon:hover { color: var(--gold-2); transform: translateY(-1px); }

  /* Hamburguesa */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
    z-index: 110; position: relative;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--choc); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Drawer móvil */
  .nav-drawer {
    display: none; position: fixed; inset: 0;
    background: rgba(252,249,245,0.98);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    z-index: 105; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px; padding: 80px 40px;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    color: var(--ink); text-decoration: none;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px; font-weight: 600; letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-drawer a:hover { color: var(--gold-2); }
  .nav-drawer .drawer-divider { width: 44px; height: 2px; background: var(--gold); border-radius: 2px; }
  .drawer-social { display: flex; gap: 28px; align-items: center; }
  .drawer-social a { color: var(--ink); display: inline-flex; transition: color 0.2s; }
  .drawer-social a:hover { color: var(--gold-2); }

  @media (max-width: 768px) {
    #navbar { padding: 16px 0; }
    .nav-links-desktop { display: none; }
    .nav-hamburger { display: flex; }
  }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 60% 55% at 82% 38%, rgba(201,162,75,0.14) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 10% 20%, rgba(232,212,162,0.18) 0%, transparent 55%),
      linear-gradient(180deg, #FDFBF8 0%, var(--cream) 45%, var(--cream-2) 100%);
  }
  .hero::before {
    content: ''; position: absolute;
    top: -8%; right: -6%;
    width: 460px; height: 460px;
    background: var(--gold); opacity: 0.10;
    border-radius: 50%; filter: blur(150px);
    pointer-events: none; z-index: 0;
  }
  .hero-inner {
    max-width: var(--maxw); margin: 0 auto; width: 100%;
    padding: 0 var(--gutter);
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,162,75,0.12); border: 1px solid var(--gold-line);
    padding: 6px 14px; border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-2); margin-bottom: 24px;
  }
  .hero-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }
  .hero-title {
    font-size: clamp(44px, 6.2vw, 82px);
    font-weight: 600; line-height: 1.0; color: var(--ink);
    margin-bottom: 12px;
  }
  .hero-title span { color: var(--gold-2); font-style: italic; font-weight: 500; }
  .hero-subtitle-line {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400; color: var(--muted);
    margin-bottom: 28px; line-height: 1.65; max-width: 440px;
  }
  .hero-product-name { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
  .hp-kicker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-2);
  }
  .hp-flavor {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 600;
    font-size: 27px; color: var(--ink); line-height: 1.05;
  }
  .hero-price {
    font-size: 44px; font-weight: 600;
    color: var(--gold-2); margin-bottom: 28px;
    display: flex; align-items: baseline; gap: 6px;
  }
  .hero-price sub { font-size: 14px; font-weight: 500; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--choc); color: var(--cream);
    padding: 15px 30px; border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
    border: none; cursor: pointer; text-decoration: none;
    transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-sm);
  }
  .btn-primary:hover { background: var(--gold); color: var(--choc); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,162,75,0.35); }
  .btn-secondary {
    background: transparent; color: var(--ink);
    padding: 15px 26px; border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    border: 1px solid var(--line-strong); cursor: pointer; text-decoration: none;
    transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(201,162,75,0.06); }

  /* ── HERO VISUAL ── */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    gap: 24px; min-height: 520px; overflow: visible;
  }
  .hero-stage {
    position: relative; display: flex; align-items: center; justify-content: center;
    flex: 1; min-width: 0;
  }
  .hero-stage::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 380px; height: 380px; max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,75,0.26) 0%, rgba(232,212,162,0.14) 42%, transparent 70%);
    z-index: 0; pointer-events: none;
  }
  .hero-float-img {
    position: relative; z-index: 2;
    width: 420px; margin-left: 40px;
    pointer-events: none;
    animation: floatY 4s ease-in-out infinite;
  }
  .hero-float-img img {
    width: 100%; height: auto; max-height: 520px; object-fit: contain;
    filter: drop-shadow(0 26px 46px rgba(37,22,25,0.22)) drop-shadow(0 0 26px rgba(201,162,75,0.28));
    display: block;
  }
  @keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
  @keyframes slideInProduct { from { opacity: 0; transform: translateX(80px) scale(0.88); } to { opacity: 1; transform: translateX(0) scale(1); } }
  .hero-float-img.switching { animation: slideInProduct 0.42s cubic-bezier(0.34,1.56,0.64,1) 0.15s both; }

  .hero-thumbs { display: flex; flex-direction: column; gap: 16px; align-items: center; flex-shrink: 0; }
  .hero-thumb {
    width: 64px; height: 64px; border-radius: 50%;
    border: 2px solid var(--line); background: var(--white);
    cursor: pointer; overflow: hidden; padding: 0; position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
  }
  .hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
  .hero-thumb:hover { transform: translateY(-3px); border-color: var(--gold-line); }
  .hero-thumb:hover img { transform: scale(1.06); }
  .hero-thumb.active {
    border-color: var(--gold);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 0 0 3px rgba(201,162,75,0.20), var(--shadow);
  }

  @media (max-width: 900px) {
    .hero { padding: 100px 0 56px; }
    .hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-visual { order: -1; min-height: 300px; flex-direction: column; gap: 18px; }
    .hero-float-img { width: 240px; margin-left: 0; }
    .hero-thumbs { gap: 12px; flex-direction: row; }
    .hero-thumb { width: 56px; height: 56px; }
    .hero-title { font-size: clamp(34px, 8vw, 56px); }
    .hero-subtitle-line { max-width: none; margin-bottom: 30px; }
    .hero-price { margin-bottom: 30px; }
  }
  @media (max-width: 480px) {
    .hero { padding: 90px 0 48px; }
    .hero-visual { min-height: 250px; }
    .hero-float-img { width: 200px; margin-left: 0; }
    .hero-thumbs { gap: 10px; }
    .hero-thumb { width: 46px; height: 46px; }
  }

  /* ── TABS ── */
  .section-tabs {
    position: sticky; top: 0; z-index: 80;
    background: rgba(252,249,245,0.85);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--line);
  }
  .tabs-inner {
    max-width: var(--maxw); margin: 0 auto;
    display: flex; gap: 10px; overflow-x: auto; justify-content: center;
  }
  .tabs-inner::-webkit-scrollbar { display: none; }
  .tab-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: all 0.25s; flex-shrink: 0;
  }
  .tab-btn:hover { color: var(--ink); border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
  .tab-btn.active {
    background: var(--choc); color: var(--cream); border-color: var(--choc);
    font-weight: 700; box-shadow: var(--shadow-sm);
  }
  @media (max-width: 768px) {
    .section-tabs { padding: 12px var(--gutter); }
    .tabs-inner { justify-content: flex-start; }
  }

  /* ── PRODUCT GRID ── */
  .products-section { background: var(--white); }
  .products-inner { max-width: var(--maxw); margin: 0 auto; padding: 68px var(--gutter); }
  .section-header { margin-bottom: 40px; display: flex; align-items: flex-end; justify-content: space-between; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px;
  }
  .section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 600; line-height: 1.08; color: var(--ink); }
  .section-count { font-size: 13px; color: var(--muted); font-weight: 500; }

  .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }

  .product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex; flex-direction: column; position: relative;
    box-shadow: var(--shadow-sm);
  }
  .product-card:hover {
    border-color: var(--gold-line);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  .product-card.hidden { display: none; }

  .card-img {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(140deg, var(--sand) 0%, var(--cream-2) 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .product-card:hover .card-img img { transform: scale(1.07); }
  .card-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 5px 11px; border-radius: 50px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; box-shadow: var(--shadow-sm);
  }
  .badge-nuevo { background: var(--gold); color: var(--choc); }
  .badge-trending { background: rgba(255,255,255,0.9); color: var(--gold-2); border: 1px solid var(--gold-line); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
  .badge-favorito { background: var(--choc); color: var(--cream); }

  .card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .card-name { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 6px; transition: color 0.2s; }
  .product-card:hover .card-name { color: var(--gold-2); }
  .card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 18px; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
  .card-price-label { font-size: 10px; color: var(--muted-2); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .card-price { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.1; white-space: nowrap; }
  .card-price-unit { font-size: 11px; color: var(--muted); font-weight: 500; }
  .card-btn {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--cream-2); border: 1px solid var(--line);
    color: var(--choc);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; flex-shrink: 0;
  }
  .product-card:hover .card-btn { background: var(--gold); border-color: var(--gold); color: var(--choc); }

  .empty-state { text-align: center; padding: 80px 20px; display: none; }
  .empty-state p { color: var(--muted); font-size: 15px; }

  @media (max-width: 768px) {
    .products-inner { padding: 40px var(--gutter); }
    .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .card-name { font-size: 15px; }
    .card-price { font-size: 18px; }
    .card-body { padding: 15px; }
    .card-footer { flex-direction: column; align-items: stretch; gap: 10px; }
    .card-btn { width: 100%; height: 36px; border-radius: 10px; }
  }

  /* ── STATEMENT ── */
  .statement-section { background: var(--cream-2); padding: 100px 0; position: relative; overflow: hidden; }
  .statement-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 72% 50%, rgba(201,162,75,0.16) 0%, transparent 66%);
  }
  .statement-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .statement-big { font-size: clamp(48px, 7vw, 94px); font-weight: 600; line-height: 0.98; text-transform: uppercase; color: var(--ink); }
  .statement-big em { font-style: italic; font-weight: 400; color: var(--gold-2); text-transform: none; }
  .statement-right p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
  .statement-stats { display: flex; gap: 44px; }
  .stat-num { font-size: 38px; font-weight: 600; color: var(--ink); display: block; }
  .stat-label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
  @media (max-width: 900px) {
    .statement-section { padding: 64px 0; }
    .statement-inner { grid-template-columns: 1fr; gap: 40px; }
    .statement-stats { gap: 28px; }
  }
  @media (max-width: 480px) {
    .statement-section { padding: 52px 0; }
    .statement-big { font-size: clamp(38px, 10vw, 64px); }
    .statement-stats { flex-wrap: wrap; gap: 18px; }
    .stat-num { font-size: 30px; }
  }

  /* ── POPULAR ── */
  .popular-section { background: var(--white); padding: 84px 0; position: relative; overflow: hidden; }
  .popular-section .section-header { max-width: var(--maxw); margin: 0 auto 40px; padding: 0 var(--gutter); }
  .popular-marquee {
    overflow: hidden; padding-bottom: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .popular-track { display: flex; width: max-content; padding: 6px 0; animation: popularScroll 24s linear infinite; will-change: transform; }
  .popular-marquee:hover .popular-track, .popular-track:focus-within { animation-play-state: paused; }
  .popular-card {
    flex-shrink: 0; width: 300px; margin-right: 22px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  @keyframes popularScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .popular-card:hover { border-color: var(--gold-line); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .popular-card:hover .popular-name { color: var(--gold-2); transition: color 0.2s; }
  .popular-img {
    width: 100%; height: 200px;
    background: linear-gradient(140deg, var(--sand) 0%, var(--cream-2) 100%);
    position: relative; overflow: hidden;
  }
  .popular-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
  .popular-card:hover .popular-img img { transform: scale(1.07); }
  .popular-body { padding: 20px; }
  .popular-name { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .popular-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
  @media (max-width: 768px) { .popular-section { padding: 52px 0; } }
  @media (max-width: 480px) {
    .popular-img { height: 160px; }
    .popular-name { font-size: 15px; }
    .popular-body { padding: 16px; }
  }

  /* ── CONTACT ── */
  .contact-section { background: var(--white); padding: 88px 0; position: relative; overflow: hidden; }
  .contact-inner { max-width: 680px; margin: 0 auto; padding: 0 var(--gutter); }
  .contact-title { font-size: clamp(30px, 4vw, 52px); font-weight: 600; margin-bottom: 16px; color: var(--ink); line-height: 1.05; }
  .contact-subtitle { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
  .contact-items { display: flex; flex-direction: column; gap: 14px; }
  .contact-item {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px; border-radius: 16px;
    background: var(--cream); border: 1px solid var(--line);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .contact-item:hover { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
  .contact-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(201,162,75,0.14); border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-item-label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .contact-item-val { font-size: 15px; font-weight: 700; color: var(--ink); }
  @media (max-width: 900px) { .contact-section { padding: 64px 0; } }
  @media (max-width: 480px) { .contact-section { padding: 52px 0; } }

  /* ── CÓMO PEDIR ── */
  .howto-section { background: var(--cream-2); padding: 88px 0; }
  .howto-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
  .howto-head { text-align: center; margin-bottom: 48px; }
  .howto-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
  .howto-step {
    position: relative; background: var(--white);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .howto-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .howto-num {
    position: absolute; top: 18px; right: 20px;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--choc); color: var(--cream);
    font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .howto-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--choc); color: var(--gold);
    margin-bottom: 18px;
  }
  .howto-title { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .howto-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .howto-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
  .howto-fact { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .howto-fact svg { color: var(--gold-2); flex-shrink: 0; }
  .howto-fact strong { color: var(--ink); font-weight: 700; }
  @media (max-width: 768px) {
    .howto-section { padding: 60px 0; }
    .howto-facts { flex-direction: column; align-items: flex-start; gap: 14px; }
  }

  /* ── FOOTER ── */
  footer { background: var(--choc); padding: 60px var(--gutter) 32px; text-align: center; }
  .footer-logo { width: 158px; height: auto; margin: 0 auto 20px; display: block; opacity: 0.95; }
  .footer-tagline { font-size: 13px; color: var(--on-dark-soft); letter-spacing: 0.3px; margin-bottom: 28px; line-height: 1.6; }
  .footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
  .footer-links a { color: var(--on-dark-soft); font-size: 13px; text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    font-size: 11.5px; color: var(--on-dark-faint); letter-spacing: 0.3px;
    padding-top: 22px; border-top: 1px solid var(--line-dark);
    max-width: 760px; margin: 0 auto;
  }
  @media (max-width: 768px) {
    footer { padding: 44px var(--gutter) 24px; }
    .footer-links { gap: 20px; }
    .footer-bottom { flex-direction: column; }
  }

  /* ── NAV CART ── */
  .nav-right { display: flex; align-items: center; gap: 18px; }
  .nav-cart {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    background: none; border: none; color: var(--ink); cursor: pointer; padding: 4px;
    transition: color 0.2s;
  }
  .nav-cart:hover { color: var(--gold-2); }
  .cart-count {
    position: absolute; top: -5px; right: -7px;
    min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
    background: var(--gold); color: var(--choc);
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
  }
  .cart-count.empty { display: none; }

  /* ── MODAL PRODUCTO ── */
  @keyframes pmPop { from { opacity: 0; transform: scale(0.94) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  .pm-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(37,22,25,0.55);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  }
  .pm-overlay[hidden] { display: none; }
  .pm-modal {
    background: var(--white);
    border: 1px solid var(--gold-line);
    border-radius: 24px;
    width: 100%; max-width: 384px; padding: 28px;
    position: relative; text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pmPop 0.25s ease-out both;
  }
  .pm-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted-2); font-size: 26px; line-height: 1; cursor: pointer; transition: color 0.2s; }
  .pm-close:hover { color: var(--ink); }
  .pm-img { width: 120px; height: 120px; margin: 4px auto 14px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .pm-img img { width: 100%; height: 100%; object-fit: cover; }
  .pm-name { font-family: 'Fraunces', Georgia, serif; font-size: 23px; font-weight: 600; color: var(--ink); }
  .pm-price { font-size: 13px; color: var(--gold-2); font-weight: 600; margin: 5px 0 20px; }
  .pm-field { text-align: left; margin-bottom: 20px; }
  .pm-label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
  .pm-varieties { display: flex; flex-wrap: wrap; gap: 8px; }
  .pm-var {
    background: var(--cream); border: 1px solid var(--line); color: var(--muted);
    border-radius: 50px; padding: 8px 15px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.2s;
  }
  .pm-var:hover { border-color: var(--gold-line); color: var(--ink); }
  .pm-var.active { background: var(--choc); border-color: var(--choc); color: var(--cream); font-weight: 600; }
  .pm-stepper { display: flex; align-items: center; gap: 14px; }
  .pm-stepper button {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--cream); border: 1px solid var(--line); color: var(--choc);
    font-size: 20px; cursor: pointer; transition: all 0.2s; line-height: 1;
  }
  .pm-stepper button:hover { border-color: var(--gold); color: var(--gold-2); }
  .pm-stepper #pm-qty { font-family: 'Fraunces', Georgia, serif; font-size: 20px; min-width: 28px; text-align: center; color: var(--ink); }
  .pm-qty-hint { font-size: 12px; color: var(--muted); }
  .pm-subtotal { font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 18px; }
  .pm-add {
    width: 100%; background: var(--choc); color: var(--cream); border: none; cursor: pointer;
    padding: 14px; border-radius: 50px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
    transition: all 0.2s;
  }
  .pm-add:hover { background: var(--gold); color: var(--choc); }

  /* ── DRAWER CARRITO ── */
  .cart-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(37,22,25,0.45); }
  .cart-overlay[hidden] { display: none; }
  .cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 310;
    width: 380px; max-width: 90vw;
    background: var(--cream);
    border-left: 1px solid var(--gold-line);
    box-shadow: -20px 0 60px rgba(37,22,25,0.16);
    transform: translateX(100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column;
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); background: var(--white); }
  .cart-head h3 { font-family: 'Fraunces', Georgia, serif; font-size: 21px; font-weight: 600; color: var(--ink); }
  .cart-x { background: none; border: none; color: var(--muted-2); font-size: 26px; cursor: pointer; line-height: 1; transition: color 0.2s; }
  .cart-x:hover { color: var(--ink); }
  .cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
  .cart-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .cart-item-name { font-size: 14px; font-weight: 700; color: var(--ink); }
  .cart-item-meta { font-size: 12px; color: var(--gold-2); font-weight: 600; margin-top: 3px; }
  .cart-item-rm { background: none; border: none; color: var(--muted-2); font-size: 20px; cursor: pointer; transition: color 0.2s; line-height: 1; flex-shrink: 0; }
  .cart-item-rm:hover { color: var(--choc); }
  .cart-empty { padding: 40px 24px; color: var(--muted); font-size: 14px; text-align: center; }
  .cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--white); }
  .cart-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
  .cart-field span { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
  .cart-field input {
    width: 100%; box-sizing: border-box;
    background: var(--cream); border: 1px solid var(--line); border-radius: 11px;
    padding: 11px 13px; color: var(--ink);
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
    color-scheme: light; transition: border-color 0.2s;
  }
  .cart-field input:focus { outline: none; border-color: var(--gold); }
  .cart-field input::placeholder { color: var(--muted-2); }
  .cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
  .cart-total-row span:first-child { color: var(--muted); font-size: 13px; }
  .cart-total-row span:last-child { font-family: 'Fraunces', Georgia, serif; font-size: 24px; font-weight: 600; color: var(--gold-2); }
  .cart-finish {
    width: 100%; background: var(--wa); color: #fff; border: none; cursor: pointer;
    padding: 15px; border-radius: 50px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
    transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  }
  .cart-finish:hover:not(:disabled) { background: var(--wa-hi); transform: translateY(-1px); }
  .cart-finish:disabled { opacity: 0.4; cursor: not-allowed; }
  .cart-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

  /* ── FLOAT CTA (WhatsApp) ── */
  .float-cta {
    position: fixed; bottom: 24px; left: 16px; right: 16px;
    margin: 0 auto; max-width: 380px; z-index: 200;
    transform: translateY(20px); opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .float-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .float-inner {
    background: var(--wa);
    border-radius: 18px; padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 14px 40px rgba(31,168,85,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    text-decoration: none; color: #fff;
    transition: transform 0.2s, background 0.2s;
  }
  .float-inner:hover { transform: scale(1.02); background: var(--wa-hi); }
  .float-left { display: flex; align-items: center; gap: 12px; }
  .float-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; }
  .float-text-small { font-size: 11px; color: rgba(255,255,255,0.82); font-weight: 500; }
  .float-text-big { font-size: 14px; font-weight: 800; }

  /* Animaciones de entrada */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
  .animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
  .delay-1 { animation-delay: 0.1s; opacity: 0; }
  .delay-2 { animation-delay: 0.2s; opacity: 0; }
  .delay-3 { animation-delay: 0.35s; opacity: 0; }
  .delay-4 { animation-delay: 0.5s; opacity: 0; }

  /* ── SHOWCASE (banda oscura de contraste) ── */
  .showcase-section {
    position: relative; background: var(--choc);
    overflow: hidden; padding: 100px 0 80px;
    display: flex; flex-direction: column; align-items: center; gap: 0;
  }
  .showcase-ribbon { position: relative; width: 120%; left: -10%; overflow: hidden; z-index: 2; padding: 13px 0; }
  .ribbon-top { transform: rotate(-3deg); background: var(--gold); margin-bottom: 44px; }
  .ribbon-bottom { transform: rotate(-3deg); background: var(--gold-soft); margin-top: 44px; }
  .showcase-ribbon-track {
    display: flex; align-items: center; white-space: nowrap; width: max-content;
    animation: ribbonScroll 20s linear infinite;
    font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--choc); text-transform: uppercase;
  }
  .showcase-ribbon-track > * { margin-right: 32px; }
  .ribbon-reverse { animation-direction: reverse; animation-duration: 25s; }
  .rdot { color: rgba(37,22,25,0.45); font-size: 10px; }
  @keyframes ribbonScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  .showcase-inner { display: flex; justify-content: center; align-items: center; max-width: var(--maxw); width: 100%; padding: 0 var(--gutter); position: relative; z-index: 1; }
  .showcase-img-wrap { display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
  .showcase-img {
    position: relative; z-index: 1;
    width: clamp(260px, 28vw, 400px); height: auto; object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(201,162,75,0.4));
    animation: floatY 5s ease-in-out infinite;
  }
  .showcase-img-wrap::before {
    content: ''; position: absolute; width: 34%; height: 34%; top: 52%; left: 50%;
    transform: translate(-50%, -50%); background: var(--gold); opacity: 0.20;
    border-radius: 50%; filter: blur(48px); z-index: 0; pointer-events: none;
  }
  @media (max-width: 768px) {
    .showcase-section { padding: 72px 0 60px; }
    .showcase-img { width: 220px; }
  }

  /* ── MARQUEE STRIP (banda chocolate) ── */
  .marquee-strip { width: 100%; overflow: hidden; padding: 15px 0; background: var(--choc); }
  .marquee-track { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
  .marquee-item { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark); margin-right: 40px; }
  .marquee-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── MARCA DE AGUA DEL LOGO (decoración sutil) ── */
  #menu { position: relative; }
  .hero::after,
  #menu::before,
  .popular-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 100vh;
    background-image: url('../images/logo_3_suspiros.webp');
    background-repeat: no-repeat; background-position: center;
    background-size: min(800px, 90vw);
    /* logo blanco → oscurecido a chocolate muy tenue sobre secciones claras */
    filter: brightness(0) saturate(100%);
    opacity: 0.035; pointer-events: none; z-index: 0;
  }
  .hero::after { top: 60%; left: 72%; transform: translate(-50%, -50%) rotate(-15deg); background-size: 560px; }
  #menu::before { top: 40%; left: 18%; background-size: 480px; transform: translate(-50%, -50%) rotate(10deg); }
  .popular-section::before { top: 50%; left: 82%; background-size: 640px; transform: translate(-50%, -50%) rotate(-5deg); }
  /* En la banda oscura del showcase el logo va en claro */
  .showcase-section::before {
    content: ''; position: absolute; top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 100vh;
    background-image: url('../images/logo_3_suspiros.webp');
    background-repeat: no-repeat; background-position: center;
    background-size: 900px; opacity: 0.03; pointer-events: none; z-index: 0;
  }

  /* ── ACCESIBILIDAD ── */
  a:focus-visible, button:focus-visible,
  .tab-btn:focus-visible, .hero-thumb:focus-visible, .card-btn:focus-visible {
    outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 6px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important;
    }
  }

  /* Feedback táctil */
  .product-card:active, .popular-card:active { transform: scale(0.985); }

  /* Skeleton shimmer mientras cargan las imágenes lazy */
  .card-img img, .popular-img img { position: relative; z-index: 1; }
  .card-img::after, .popular-img::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(37,22,25,0.05) 50%, transparent 65%);
    background-size: 200% 100%; animation: shimmer 1.6s linear infinite;
  }
  @keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
