/* =========================================================================
   Menutti — Demo interactiva (menú v2)
   Dirección visual: "dark glassmorphism" cálido, con el acento naranja de
   marca de Menutti (flame) en vez de un naranja genérico — fondo casi
   negro con tinte café-espresso (coherente con el token "ink" del sitio
   principal), tarjetas de vidrio esmerilado con blur + borde sutil, fotos
   de producto reales como protagonistas. Mismo lenguaje visual que
   dashboardv2.css.

   Tipografía: los mismos dos tipos que usa menutti.vercel.app —
   Bricolage Grotesque (headlines, con carácter, evita el look "default
   framework") + Inter (texto/UI, muy legible en pantallas chicas) — así
   la demo se siente parte de la misma marca que la landing, no un
   producto aparte.
   ========================================================================= */

@font-face{
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/bricolage-variable.woff2') format('woff2');
}
@font-face{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

:root{
  /* -- superficie / fondo: negro con tinte espresso, no un negro neutro -- */
  --bg: #140f0a;
  --bg-soft: #1c1610;
  --bg-elevated: #241c14;

  /* -- vidrio -- */
  --glass: rgba(251,246,236,0.05);
  --glass-strong: rgba(251,246,236,0.09);
  --glass-border: rgba(251,246,236,0.13);
  --glass-border-soft: rgba(251,246,236,0.08);
  --blur: 20px;

  /* -- texto -- */
  --cream: #fbf6ec;
  --cream-dim: #c7b8a2;
  --cream-faint: #9c8f7e;

  /* -- acento único: flame (marca Menutti) -- */
  --accent: #e3502a;
  --accent-2: #f0805a;
  --accent-soft: rgba(227,80,42,0.16);
  --accent-ink: #2b0d02;

  /* -- estados -- */
  --red: #ff5470;
  --green-ok: #3fa873;

  --shadow: 0 20px 45px rgba(0,0,0,0.5);
  --shadow-soft: 0 10px 26px rgba(0,0,0,0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --maxw: 1080px;

  --font-head: 'Bricolage Grotesque', "Segoe UI", sans-serif;
  --font-body: 'Inter', "Segoe UI", sans-serif;

  font-size: 16px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body{
  margin:0;
  position: relative;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow blobs — flame (arriba) virando a cash-green (abajo): la
   misma metáfora de marca que el resto del sitio, "lo que empieza como
   un pedido termina siendo más facturación", incluso en pantallas sin foto. */
body::before, body::after{
  content:""; position: fixed; z-index:-1; pointer-events:none;
  border-radius: 50%; filter: blur(110px);
}
body::before{
  width: 480px; height: 480px; top: -160px; right: -140px;
  background: radial-gradient(circle, rgba(227,80,42,0.38), transparent 70%);
}
body::after{
  width: 420px; height: 420px; bottom: -160px; left: -160px;
  background: radial-gradient(circle, rgba(63,168,115,0.20), transparent 70%);
}

img{ max-width:100%; display:block; }
a{ color: inherit; }
button{ font-family: inherit; }
h1,h2,h3,h4,h5,h6{ font-family: var(--font-head); }
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.visually-hidden{ position:absolute; width:1px;height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* ---------- Demo banner ----------
   Nota de "estás probando una demo": mismo lenguaje de vidrio que el resto,
   pero con un acento violeta propio (no flame, no cash) para que se lea
   como un mensaje de sistema/meta, distinto de la marca y de los CTAs. */
.demo-banner-wrap{ position: sticky; top:0; z-index: 70; }
.demo-banner{
  background: rgba(124,58,237,0.16);
  border-bottom: 1px solid rgba(124,58,237,0.4);
  backdrop-filter: blur(var(--blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(140%);
  color:#f1e9ff; text-align:center; font-weight:700; font-size:.82rem;
  padding:10px 16px; display:flex; flex-wrap:wrap; gap:6px 10px; justify-content:center; align-items:center;
  line-height:1.4;
}
.demo-banner strong{ font-weight:800; }
.demo-banner-link{
  color:#fff; text-decoration:underline; text-underline-offset:2px; font-weight:800; white-space:nowrap;
}
.demo-banner-link:hover{ color: var(--accent-2); }

/* ---------- Header (glass nav) ---------- */
.site-header{
  position: sticky; top:0; z-index: 40;
  background: rgba(20,15,10,0.55);
  backdrop-filter: blur(var(--blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(140%);
  border-bottom: 1px solid var(--glass-border-soft);
}
.demo-banner-wrap .site-header{ position: static; }
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 68px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.1rem; letter-spacing:.2px; text-decoration:none; font-family: var(--font-head); }
.brand-badge{
  width:38px;height:38px;border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex;align-items:center;justify-content:center;
  font-family: var(--font-head); font-weight:800; font-size:1.1rem; color: var(--accent-ink);
  box-shadow: 0 6px 16px rgba(227,80,42,0.35);
}
.icon-btn svg{ display:block; }
.header-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  position:relative; background: var(--glass); border:1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur));
  color: var(--cream); width:42px; height:42px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  font-size:1.2rem; transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.icon-btn:hover{ transform: translateY(-1px); border-color: rgba(227,80,42,0.5); background: var(--glass-strong); }

/* ---------- Hero (foto real de producto, muy blureada, glass) ---------- */
.hero{
  position:relative; overflow:hidden;
  padding: 52px 0 44px;
}
.hero::before{
  content:""; position:absolute; inset:-8px; z-index:0;
  background-image: url("../img/clasica-argenta.jpg");
  background-size: cover; background-position: center 32%;
  filter: blur(4px) brightness(.8) saturate(1.05);
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(20,15,10,0.15) 0%, rgba(20,15,10,0.55) 58%, var(--bg) 97%),
    radial-gradient(circle at 88% -10%, rgba(227,80,42,0.22), transparent 45%);
}
.hero .container{ position:relative; z-index:2; display:flex; flex-direction:column; gap:20px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:6px; align-self:flex-start;
  color: var(--cream-dim); font-size:.85rem; font-weight:600;
}
.hero h1{
  font-size: clamp(2.3rem, 8vw, 3.6rem); line-height:1.0; margin:0; font-weight:800; letter-spacing:-1px;
  text-wrap: balance; font-family: var(--font-head);
}
.hero h1 span,
.hero p.lead{ color: var(--cream-dim); max-width: 46ch; margin:0; font-size:1.02rem; }
.hero-meta{ display:flex; flex-wrap:wrap; gap:8px; margin-top:2px; }
.meta-chip{
  display:flex; align-items:center; gap:7px;
  background: rgba(251,246,236,0.04); border:1px solid var(--glass-border-soft);
  padding:7px 13px; border-radius: var(--radius-pill); font-size:.76rem; color: var(--cream-dim);
}
.hero-note{ color: var(--cream-faint); font-size:.74rem; opacity:.9; margin:-6px 0 0; }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 16px 28px; border-radius: var(--radius-pill); border:none; cursor:pointer;
  font-weight:800; font-size:.95rem; letter-spacing:.2px; font-family: var(--font-head);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  text-decoration:none;
}
.btn:active{ transform: scale(.97); }
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  box-shadow: 0 10px 26px rgba(227,80,42,0.4);
}
.btn-primary:hover{ filter: brightness(1.06); box-shadow: 0 12px 30px rgba(227,80,42,0.5); }
.btn-outline{
  background: var(--glass); border:1px solid var(--glass-border); color: var(--cream);
  backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur));
}
.btn-outline:hover{ border-color: rgba(227,80,42,0.55); color: var(--accent-2); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; }

/* ---------- Promo strip / closed banner ---------- */
.promo-strip{
  display:flex; align-items:center; justify-content:center; gap:6px; text-align:center;
  background: var(--glass); border-bottom: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur));
  color: var(--accent-2); font-weight:700; font-size:.8rem;
  padding:9px 12px;
}

.closed-banner{
  background: rgba(255,84,112,0.16); border-bottom: 1px solid rgba(255,84,112,0.35);
  color:#ffd7de; font-weight:700; text-align:center; font-size:.82rem;
  padding:10px 12px;
}

/* ---------- Menutti showcase (mini-pitch insertado en la demo) ---------- */
.menutti-showcase{ padding: 34px 0 8px; }
.showcase-photos{
  display:flex; gap:3px; height: 130px; border-radius: var(--radius); overflow:hidden;
  border:1px solid var(--glass-border); box-shadow: var(--shadow-soft);
}
.showcase-photos img{ flex: 1 1 25%; width:100%; height:100%; object-fit:cover; display:block; }
.showcase-body{ margin-top: 22px; }
.showcase-body .eyebrow{ margin-bottom: 12px; }
.showcase-body h2{
  font-size: clamp(1.35rem, 4.5vw, 2rem); margin:0 0 10px; font-weight:800; line-height:1.15; text-wrap:balance;
}
.showcase-lead{ color: var(--cream-dim); margin:0 0 20px; max-width: 58ch; }
.showcase-list{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:1fr; gap:12px; }
.showcase-list li{
  display:flex; gap:12px; align-items:flex-start; background: var(--glass); border:1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur));
  border-radius: var(--radius-sm); padding: 14px;
}
.showcase-list .s-num{
  flex-shrink:0; width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head);
  font-weight:800; font-size:.9rem; color: var(--accent-ink);
  box-shadow: 0 6px 14px rgba(227,80,42,0.35);
}
.showcase-list strong{ display:block; font-size:.95rem; font-weight:700; margin-bottom:2px; font-family: var(--font-head); }
.showcase-list span{ font-size:.83rem; color: var(--cream-dim); line-height:1.4; }

@media (min-width: 640px){
  .showcase-photos{ height: 190px; }
  .showcase-list{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Menu ---------- */
.menu-section{ padding: 46px 0 30px; }
.section-title{ display:flex; flex-direction:column; gap:6px; margin-bottom: 22px; }
.section-title h2{ font-size: clamp(1.5rem,4vw,2rem); margin:0; font-weight:800; }
.section-title p{ margin:0; color: var(--cream-dim); }

/* Category tabs: tarjetas "squircle" glass con ícono + label DENTRO. */
.cat-tabs{
  display:flex; gap:10px; overflow-x:auto; padding: 4px 2px 12px;
  margin-bottom: 26px;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar{ display:none; }
.cat-tab{
  flex: 0 0 auto; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  width:72px; min-height:80px; background: var(--glass); border:1px solid var(--glass-border);
  border-radius: 22px; color: var(--cream-dim);
  backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur));
  cursor:pointer; font-weight:700; font-size:.6rem; letter-spacing:.02px; white-space:normal;
  line-height:1.15; text-align:center; font-family: var(--font-body); padding: 10px 5px;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.cat-tab::before{
  content:"🍽️"; display:block; font-size:1.35rem; line-height:1;
}
.cat-tab:hover{ transform: translateY(-2px); border-color: rgba(227,80,42,0.3); }
.cat-tab.active{
  color: var(--accent-ink); background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; box-shadow: 0 10px 22px rgba(227,80,42,0.42);
}
.cat-tab[data-cat="todas"]::before{ content:"✨"; }
.cat-tab[data-cat="hamburguesas"]::before{ content:"🍔"; }
.cat-tab[data-cat="papas"]::before{ content:"🍟"; }
.cat-tab[data-cat="combos"]::before{ content:"🧺"; }
.cat-tab[data-cat="promos"]::before{ content:"🔥"; }
.cat-tab[data-cat="bebidas"]::before{ content:"🥤"; }
.cat-tab[data-cat="extras"]::before{ content:"🧂"; }

.category-block{ margin-bottom: 36px; }
.category-block h3{ font-size:1.05rem; font-weight:800; margin: 0 0 16px; color: var(--cream); font-family: var(--font-head); }

.product-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px;
}
/* Tarjeta "photo-forward": la foto manda, con su propia sombra, y el botón
   "+" se superpone a su borde inferior. */
.product-card{
  --photo-h: 168px;
  background: rgba(251,246,236,0.02); border:1px solid rgba(251,246,236,0.06); border-radius: var(--radius);
  padding: 0 15px 18px; display:flex; flex-direction:column; gap:8px; position:relative;
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover{ transform: translateY(-3px); border-color: rgba(227,80,42,0.3); }
.product-photo{
  height: var(--photo-h); margin: 0 -15px 14px; border-radius: var(--radius) var(--radius) 20px 20px; overflow:hidden;
  background: linear-gradient(135deg, rgba(227,80,42,0.18), rgba(251,246,236,0.04));
  box-shadow: 0 22px 34px rgba(0,0,0,0.5);
  display:flex; align-items:center; justify-content:center;
}
.glyph{
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 700; color: var(--accent-2); opacity: .85;
}
.product-photo .glyph{ font-size: 2.6rem; }
.ci-photo .glyph{ font-size: 1.3rem; }
.u-photo .glyph{ font-size: 1.5rem; }
.p-photo .glyph{ font-size: 3rem; }
.badge-top{
  position:absolute; top:14px; left:14px;
  background: var(--red); color:#fff;
  font-size:.65rem; font-weight:800; padding:5px 12px; border-radius:var(--radius-pill); letter-spacing:.3px;
  z-index: 2; box-shadow: 0 6px 14px rgba(255,84,112,0.35);
}
.product-card h4{ margin:0; font-size:1.02rem; font-weight:700; font-family: var(--font-head); }
.product-card p{ margin:0; color: var(--cream-dim); font-size:.83rem; flex:1; }
.product-footer{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:2px; min-height:38px; }
.price{ font-weight:800; font-size:1.08rem; color: var(--cream); font-family: var(--font-head); }

.product-footer .add-btn,
.product-footer .qty-stepper{
  position:absolute; right:15px; top: calc(var(--photo-h) - 21px); z-index:3;
}
.add-btn{
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); border:none; border-radius:50%;
  width:42px; height:42px; font-size:1.4rem; font-weight:800; cursor:pointer; line-height:1;
  box-shadow: 0 10px 22px rgba(227,80,42,0.5), 0 0 0 4px var(--bg);
  transition: filter .15s ease, transform .15s ease;
}
.add-btn:hover{ filter: brightness(1.08); transform: translateY(-1px); }

.qty-stepper{
  display:flex; align-items:center; gap:8px;
  background: rgba(28,22,16,0.92); border: 1px solid var(--glass-border); border-radius:var(--radius-pill); padding:5px 7px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.4), 0 0 0 4px var(--bg);
}
.qty-stepper button{
  width:26px; height:26px; border-radius:50%; border:none;
  background: rgba(251,246,236,0.12); color: var(--cream);
  font-weight:800; font-size:1rem; cursor:pointer;
}
.qty-stepper span{ min-width:16px; text-align:center; font-weight:800; font-size:.9rem; }

.product-card.inactive{ opacity:.4; }
.sold-out-tag{ font-size:.72rem; font-weight:700; color: var(--red); }

/* ---------- Floating cart bar (mobile-first) ---------- */
.floating-cart{
  position: fixed; left:16px; right:16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 45;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  border:1px solid rgba(251,246,236,0.25);
  border-radius:var(--radius-pill); padding: 15px 22px; display:flex; align-items:center; justify-content:space-between;
  box-shadow: 0 16px 36px rgba(227,60,20,0.4); cursor:pointer; font-weight:800; font-family: var(--font-head);
  transform: translateY(140%); transition: transform .28s cubic-bezier(.2,.9,.3,1.2);
}
.floating-cart.show{ transform: translateY(0); }
.floating-cart .fc-left{ display:flex; align-items:center; gap:10px; }
.floating-cart .fc-count{ background: rgba(43,13,2,0.22); border-radius:var(--radius-pill); padding:2px 10px; font-size:.85rem; }

/* ---------- Overlay & Drawers/Modals ---------- */
.overlay{
  position: fixed; inset:0; background: rgba(8,6,4,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 80;
  display:none; align-items:flex-end; justify-content:center;
}
.overlay.open{ display:flex; }
@media (min-width: 720px){
  .overlay{ align-items:center; }
}

.sheet{
  background: rgba(24,18,13,0.93);
  backdrop-filter: blur(28px) saturate(150%); -webkit-backdrop-filter: blur(28px) saturate(150%);
  width:100%; max-width: 480px; max-height: 90vh; overflow-y:auto;
  border-radius: 26px 26px 0 0; padding: 22px; padding-bottom: calc(22px + env(safe-area-inset-bottom));
  border:1px solid var(--glass-border);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.55);
  animation: slide-up .22s ease;
}
@media (min-width: 720px){
  .sheet{ border-radius: 26px; animation: pop-in .18s ease; }
}
@keyframes slide-up{ from{ transform: translateY(30px); opacity:0;} to{ transform:none; opacity:1;} }
@keyframes pop-in{ from{ transform: scale(.96); opacity:0;} to{ transform:none; opacity:1;} }

.sheet-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.sheet-header h3{ margin:0; font-size:1.15rem; font-weight:800; font-family: var(--font-head); }
.close-btn{
  background: var(--glass-strong); border:1px solid var(--glass-border); color: var(--cream);
  width:34px; height:34px; border-radius:50%; cursor:pointer; font-size:.95rem;
  display:flex; align-items:center; justify-content:center; flex: 0 0 auto;
  transition: border-color .15s ease;
}
.close-btn:hover{ border-color: rgba(227,80,42,0.5); }

/* Cart items */
.cart-item{ display:flex; gap:12px; padding: 12px 0; border-bottom:1px solid var(--glass-border-soft); }
.cart-item:last-child{ border-bottom:none; }
.cart-item .ci-photo{
  width:56px; height:56px; border-radius:14px; flex-shrink:0; overflow:hidden;
  background: linear-gradient(135deg, rgba(227,80,42,0.2), rgba(251,246,236,0.04));
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
}
.cart-item .ci-info{ flex:1; min-width:0; }
.cart-item .ci-info h5{ margin:0 0 2px; font-size:.94rem; font-weight:700; font-family: var(--font-head); }
.cart-item .ci-note{ font-size:.76rem; color: var(--cream-dim); font-style:italic; }
.cart-item .ci-price{ font-size:.83rem; color: var(--accent-2); font-weight:700; }
.cart-item .ci-controls{ display:flex; flex-direction:column; align-items:flex-end; gap:6px; }
.remove-link{ background:none; border:none; color: var(--red); font-size:.73rem; font-weight:700; cursor:pointer; padding:0; }

.empty-state{ text-align:center; padding: 34px 10px; color: var(--cream-dim); }
.empty-state .emoji{ font-size:2.4rem; display:block; margin-bottom:10px; }

.shipping-bar-wrap{ margin: 14px 0; }
.shipping-bar{ height:7px; border-radius:var(--radius-pill); background: rgba(251,246,236,0.06); overflow:hidden; border:1px solid var(--glass-border-soft); }
.shipping-bar > div{ height:100%; background: linear-gradient(90deg, var(--accent), var(--green-ok)); transition: width .3s ease; }
.shipping-msg{ font-size:.78rem; color: var(--cream-dim); margin-top:6px; }
.shipping-msg strong{ color: var(--accent-2); }

.totals{ margin-top: 12px; border-top:1px dashed var(--glass-border); padding-top:12px; }
.totals-row{ display:flex; justify-content:space-between; font-size:.9rem; color: var(--cream-dim); margin-bottom:6px; }
.totals-row.total{ color: var(--cream); font-weight:800; font-size:1.12rem; margin-top:4px; font-family: var(--font-head); }

.upsell-strip{ margin-top:14px; }
.upsell-strip h6{ margin:0 0 10px; font-size:.76rem; text-transform:uppercase; letter-spacing:.6px; color: var(--cream-dim); }
.upsell-list{ display:flex; gap:10px; overflow-x:auto; padding-bottom:4px; }
.upsell-card{
  flex:0 0 auto; width:128px; background: var(--glass); border:1px solid var(--glass-border); border-radius: var(--radius-sm);
  padding:10px; text-align:center;
}
.upsell-card .u-photo{
  height:50px; border-radius:10px; overflow:hidden;
  background: linear-gradient(135deg, rgba(227,80,42,0.18), rgba(251,246,236,0.04));
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.upsell-card h6{ margin: 6px 0 2px; font-size:.77rem; font-weight:700; color: var(--cream); text-transform:none; letter-spacing:0; }
.upsell-card .u-price{ font-size:.74rem; color: var(--accent-2); font-weight:700; margin-bottom:6px; }
.upsell-card button{
  width:100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); border:none; border-radius:var(--radius-pill);
  padding:7px 0; font-weight:800; font-size:.74rem; cursor:pointer;
}

/* Forms */
.field{ margin-bottom: 14px; }
.field label{ display:block; font-size:.8rem; font-weight:700; color: var(--cream-dim); margin-bottom:6px; }
.field input[type="text"], .field input[type="tel"], .field textarea, .field select{
  width:100%; background: rgba(251,246,236,0.04); border:1px solid var(--glass-border); color: var(--cream);
  padding: 12px 14px; border-radius: var(--radius-sm); font-size:.92rem; font-family: var(--font-body);
}
.field select{
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3502a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--cream-faint); }
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-error{ color: var(--red); font-size:.75rem; margin-top:5px; display:none; }
.field.invalid input, .field.invalid textarea{ border-color: var(--red); }
.field.invalid .field-error{ display:block; }

/* Selector segmentado tipo "pill" */
.radio-group{
  display:flex; gap:4px; background: rgba(251,246,236,0.04); border:1px solid var(--glass-border);
  border-radius: var(--radius-pill); padding: 4px;
}
.radio-option{
  flex:1; border:none; border-radius: var(--radius-pill); padding:10px 8px; text-align:center;
  cursor:pointer; font-weight:700; font-size:.83rem; color: var(--cream-dim);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.radio-option.selected{
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  box-shadow: 0 6px 16px rgba(227,80,42,0.4);
}
.radio-option input{ display:none; }
.radio-option:focus-within{ outline: 2px solid var(--accent); outline-offset: 2px; }

.delivery-fields{ display:none; }
.delivery-fields.show{ display:block; }

/* Welcome / upsell popups — foto grande full-bleed arriba del sheet, botón
   de cerrar circular glass flotando sobre la foto, badge pill. */
.promo-modal{ position: relative; text-align:center; }
.promo-modal .p-photo{
  height:210px; margin: -22px -22px 16px -22px; overflow:hidden; position:relative;
  border-radius: var(--radius) var(--radius) 14px 14px;
  background: linear-gradient(135deg, rgba(227,80,42,0.24), rgba(251,246,236,0.04));
  display:flex; align-items:center; justify-content:center; font-size:3rem;
}
.promo-modal .p-photo img{ width:100%; height:100%; object-fit:cover; }
.promo-modal .close-btn{ position:absolute; top:14px; right:14px; z-index:4; float:none; background: rgba(20,15,10,0.55); }
.promo-modal .p-photo + div{
  position:absolute; top:14px; left:14px; z-index:4;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  font-weight:800; font-size:.68rem; letter-spacing:.2px; padding:6px 13px; border-radius: var(--radius-pill);
}
.promo-modal h3{ font-size:1.25rem; margin:0 0 6px; font-family: var(--font-head); font-weight:800; }
.promo-modal p{ color: var(--cream-dim); margin:0 0 4px; }
.promo-modal .price{ display:block; margin: 10px 0 16px; font-size:1.35rem; color: var(--accent-2); }

.mini-toast{
  position: fixed; left:16px; right:16px; bottom:90px; z-index: 55;
  background: rgba(28,22,16,0.85); border:1px solid var(--glass-border); border-radius: var(--radius);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding:14px; box-shadow: var(--shadow); max-width: 420px; margin:0 auto;
  transform: translateY(20px); opacity:0; pointer-events:none; transition: all .2s ease;
}
.mini-toast.show{ transform: translateY(0); opacity:1; pointer-events:auto; }
.mini-toast-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; gap: 10px; }
.mini-toast-head strong{ font-size:.83rem; }
.mini-toast-head button{ background:none; border:none; color: var(--cream-dim); cursor:pointer; font-size:.9rem; flex: 0 0 auto; }

/* Footer */
.site-footer{ padding: 40px 0 90px; border-top:1px solid var(--glass-border-soft); margin-top:30px; }
.footer-grid{ display:flex; flex-wrap:wrap; gap:24px; justify-content:space-between; }
.footer-col h5{ margin:0 0 10px; font-size:.82rem; text-transform:uppercase; letter-spacing:.6px; color: var(--cream); font-family: var(--font-head); }
.footer-col p, .footer-col a{ color: var(--cream-dim); font-size:.88rem; text-decoration:none; display:block; margin-bottom:6px; }
.footer-col a:hover{ color: var(--accent-2); }

@media (min-width: 720px){
  .floating-cart{ left:auto; right:32px; bottom:32px; width:auto; min-width:260px; }
  .hero .container{ max-width: 640px; }
}

.wa-note{
  display:flex; gap:8px; align-items:flex-start; background: rgba(63,168,115,0.08);
  border:1px solid rgba(63,168,115,0.28); padding:11px 13px; border-radius:var(--radius-sm);
  font-size:.8rem; color: var(--cream-dim); margin-top:10px;
}

/* Accesibilidad: foco visible consistente para navegación por teclado */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--accent); outline-offset: 2px;
}
