/* ============================================================
   PA TU CORO — styles.css
   Paleta: Cream #F6F1E7 · Terracota #C96A4A · Chocolate #4A3428 · Sage #7BAE7F
   ============================================================ */

:root {
  --cream:      #F6F1E7;
  --cream-2:    #EDE5D6;
  --cream-3:    #D9CEB8;
  --terracota:  #C96A4A;
  --terra-dark: #A8522F;
  --choco:      #4A3428;
  --choco-soft: #6B4F3A;
  --sage:       #7BAE7F;
  --sage-dark:  #5A8E5F;
  --text:       #2C1F14;
  --text-soft:  #5C432F;
  --text-mute:  #9A7A62;
  --line:       rgba(74,52,40,0.12);
  --line-strong:rgba(74,52,40,0.25);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 80px;
  --r:     12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ---- Typography ---- */
.display, h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.05;
  font-weight: 500;
}
em { font-style: italic; color: var(--terracota); }

/* ---- Section kicker ---- */
.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}
.section-kicker.light { color: var(--cream); opacity: 0.7; }

/* ─── Logo images ─── */
.splash-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}
.nav-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(330deg);
}

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), clip-path 0.7s var(--ease-in-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner {
  text-align: center;
  animation: splashReveal 0.8s 0.3s var(--ease-out) both;
}
@keyframes splashReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-logo svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  animation: splashSpin 8s linear infinite;
}
@keyframes splashSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.splash-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #ffffff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.35s ease;
}
.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(74,52,40,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--choco);
  letter-spacing: 0.03em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--choco);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--terracota);
  transition: right 0.3s var(--ease-out);
}
.nav-link:hover::after { right: 0; }
.btn-nav {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--choco);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-nav:hover { background: var(--terracota); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--choco);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  box-shadow: 0 20px 40px rgba(74,52,40,0.1);
}
.nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.drawer-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--choco);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.drawer-cta {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--choco);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74,52,40,0.55) 0%,
    rgba(74,52,40,0.35) 40%,
    rgba(74,52,40,0.65) 100%
  );
}
.hero-watermark-cover {
  position: absolute;
  right: 3.6%;
  bottom: 13%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(30,18,10,0.55);
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0.9;
  z-index: 1;
}
@media (max-width: 640px) {
  .hero-watermark-cover { width: 48px; height: 48px; right: 4%; bottom: 13%; }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo en el hero */
.hero-logo {
  margin-bottom: 2rem;
}
.hero-logo img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title em { color: #fff; font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream);
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 40ch;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--terracota);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,106,74,0.4);
}
.btn-primary.large { font-size: 1rem; padding: 1rem 2.5rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  border: 1.5px solid rgba(246,241,231,0.5);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(246,241,231,0.1);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  opacity: 0.55;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--terracota);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--choco);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.marquee-track .dot {
  color: var(--terracota);
  font-size: 0.65rem;
  opacity: 1;
}

/* ============================================================
   CONCEPT — rediseño premium
   ============================================================ */
.concept {
  position: relative;
  padding: 8rem 2rem;
  background: var(--choco);
  overflow: hidden;
}
.concept::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/fondo-quienes-somos.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

/* Palabra decorativa de fondo */
.concept-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(12rem, 28vw, 22rem);
  font-weight: 700;
  color: rgba(246,241,231,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

.concept-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

/* Encabezado */
.concept-head { text-align: center; }
.concept-head .section-kicker { color: var(--terracota); }
.concept-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--cream);
  line-height: 1.05;
  text-wrap: balance;
  margin-top: 0.75rem;
}
.concept-title em { color: var(--terracota); }

/* Cita */
.concept-quote {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(246,241,231,0.65);
  max-width: 600px;
  line-height: 1.5;
  position: relative;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(246,241,231,0.1);
  border-bottom: 1px solid rgba(246,241,231,0.1);
}
.concept-quote-mark {
  font-size: 3.5rem;
  color: var(--terracota);
  line-height: 0;
  vertical-align: -0.6rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0.6;
  margin: 0 0.1em;
}

/* Tres pilares */
.concept-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246,241,231,0.08);
  border: 1px solid rgba(246,241,231,0.08);
  border-radius: calc(var(--r) * 1.5);
  overflow: hidden;
  width: 100%;
}
.concept-pillar {
  padding: 2.5rem 2rem;
  background: rgba(74,52,40,0.6);
  text-align: center;
  transition: background 0.3s ease;
}
.concept-pillar:hover { background: rgba(74,52,40,0.4); }
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.pillar-body {
  font-size: 0.875rem;
  color: rgba(246,241,231,0.55);
  line-height: 1.7;
}

/* Stats */
.concept-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(246,241,231,0.1);
}
.concept-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--terracota);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
}
.concept-stat-divider {
  color: var(--terracota);
  opacity: 0.4;
  font-size: 0.75rem;
}

/* ============================================================
   MENÚ
   ============================================================ */
.menu-section {
  position: relative;
  padding: 7rem 2rem;
  background: var(--cream-2);
}
.menu-bg-img { display: none; }
.menu-bg-overlay { display: none; }
.menu-section { background: var(--cream-2); }
.menu-section .menu-header,
.menu-section .menu-grid,
.menu-section .menu-note {
  position: relative;
  z-index: 2;
}
.menu-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.menu-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--choco);
  text-wrap: balance;
  max-width: 16ch;
}
.menu-header .section-kicker {
  color: var(--terracota);
}
.menu-pills {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.menu-pill {
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  color: var(--choco);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.menu-pill:hover { border-color: var(--choco); transform: translateY(-1px); }
.menu-pill.active { background: var(--choco); border-color: var(--choco); color: var(--cream); }

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.menu-card {
  border-radius: calc(var(--r) * 2.2);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: 0 12px 32px rgba(74,52,40,0.1);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(74,52,40,0.18);
}
.menu-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-2);
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(30,18,10,0.55);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.menu-card-tag.featured { background: var(--terracota); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(20,12,7,0) 45%,
    rgba(20,12,7,0.55) 75%,
    rgba(20,12,7,0.88) 100%
  );
  pointer-events: none;
}
.menu-card-overlay > * { pointer-events: auto; }
.menu-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.75);
  margin-bottom: 0.3rem;
}
.menu-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.menu-card-desc { display: none; }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 1rem;
}
.menu-card-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.btn-add-cart,
.btn-view-options {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  background: var(--terracota);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-add-cart:hover, .btn-view-options:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,106,74,0.35); }
.btn-add-cart:active, .btn-view-options:active { transform: translateY(0); }
.btn-add-cart.pop { animation: cartPop 0.3s var(--ease-out); }
@keyframes cartPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.price {
  font-weight: 600;
  color: var(--terracota);
  font-size: 0.85rem;
  white-space: nowrap;
}
.menu-card-note {
  font-size: 0.78rem;
  color: rgba(246,241,231,0.8);
  font-style: italic;
}
.menu-note {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  font-size: 0.82rem;
  color: var(--text-mute);
  text-align: center;
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  background: var(--choco);
  padding: 7rem 2rem;
}
.order-inner {
  max-width: 860px;
  margin: 0 auto;
}
.order-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.order-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.order-title em { color: var(--terracota); }
.order-sub {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  max-width: 44ch;
  margin: 0 auto;
}

/* Form sections */
.order-form { display: flex; flex-direction: column; gap: 0; }
.form-section {
  background: rgba(246,241,231,0.05);
  border: 1px solid rgba(246,241,231,0.1);
  border-radius: calc(var(--r) * 1.5);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.form-section-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracota);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Order items */
.order-item-group { margin-bottom: 1.5rem; }
.order-item-cat {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(246,241,231,0.1);
}
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(246,241,231,0.06);
  transition: background 0.2s ease;
}
.order-item.has-qty {
  background: rgba(201,106,74,0.07);
  border-radius: 8px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0 -0.75rem;
}
.order-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.order-item-name {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 400;
}
.order-item-price {
  font-size: 0.8rem;
  color: var(--terracota);
  font-weight: 600;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(246,241,231,0.25);
  color: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  line-height: 1;
}
.qty-btn:hover {
  border-color: var(--terracota);
  background: var(--terracota);
  transform: scale(1.1);
}
.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.order-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(201,106,74,0.12);
  border: 1px solid rgba(201,106,74,0.3);
  border-radius: 10px;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--cream);
}
#order-total {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--terracota);
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.75;
  letter-spacing: 0.03em;
}
.form-field input,
.form-field textarea {
  background: rgba(246,241,231,0.08);
  border: 1.5px solid rgba(246,241,231,0.15);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(246,241,231,0.3); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--terracota);
  background: rgba(246,241,231,0.12);
}
.form-field input.error { border-color: #e05050; }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ── Delivery toggle ── */
.delivery-toggle { display: flex; flex-direction: column; gap: 0.85rem; }
.delivery-option { cursor: pointer; }
.delivery-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.delivery-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid rgba(246,241,231,0.15);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.delivery-option input:checked + .delivery-card {
  border-color: var(--sage);
  background: rgba(123,174,127,0.1);
}
.delivery-icon { font-size: 1.75rem; flex-shrink: 0; width: 44px; text-align: center; }
.delivery-info { flex: 1; }
.delivery-info strong { display: block; font-size: 0.95rem; color: var(--cream); margin-bottom: 0.2rem; }
.delivery-info span { font-size: 0.82rem; color: rgba(246,241,231,0.55); }
.delivery-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(246,241,231,0.25);
  flex-shrink: 0; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.delivery-option input:checked + .delivery-card .delivery-check {
  border-color: var(--sage);
  background: var(--sage);
}
.delivery-option input:checked + .delivery-card .delivery-check::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 10px; height: 10px;
  background: var(--cream);
  border-radius: 50%;
}
.takeout-info {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(123,174,127,0.08);
  border: 1px solid rgba(123,174,127,0.2);
  border-radius: 10px;
}

/* ── Location button ── */
.location-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}
.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(123,174,127,0.18);
  border: 1.5px solid rgba(123,174,127,0.4);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-location:hover {
  background: rgba(123,174,127,0.3);
  border-color: var(--sage);
  transform: translateY(-1px);
}
.btn-location.loading { opacity: 0.6; cursor: wait; }
.btn-location.success {
  background: rgba(123,174,127,0.25);
  border-color: var(--sage);
  color: var(--sage);
}
.location-status {
  font-size: 0.78rem;
  color: var(--sage);
  font-style: italic;
}
.location-status.error { color: #ffb3b3; }
.location-hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(246,241,231,0.35);
  line-height: 1.5;
}

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 1rem; }
.payment-option { cursor: pointer; }
.payment-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.payment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid rgba(246,241,231,0.15);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.payment-option input:checked + .payment-card {
  border-color: var(--terracota);
  background: rgba(201,106,74,0.1);
}
.payment-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-info { flex: 1; }
.payment-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.payment-info span {
  font-size: 0.82rem;
  color: rgba(246,241,231,0.55);
  line-height: 1.4;
}
.payment-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(246,241,231,0.25);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.payment-option input:checked + .payment-card .payment-check {
  border-color: var(--terracota);
  background: var(--terracota);
}
.payment-option input:checked + .payment-card .payment-check::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 10px; height: 10px;
  background: var(--cream);
  border-radius: 50%;
}
.payment-detail-box {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(123,174,127,0.1);
  border: 1px solid rgba(123,174,127,0.25);
  border-radius: 10px;
}
.pdb-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.pdb-value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.pdb-note {
  font-size: 0.8rem;
  color: rgba(246,241,231,0.55);
  line-height: 1.5;
}
.pdb-note strong { color: var(--cream); }

/* Summary */
.form-summary-section { background: rgba(246,241,231,0.03); }
.order-summary {
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.summary-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(246,241,231,0.1);
}
.summary-items { min-height: 60px; }
.summary-empty {
  font-size: 0.875rem;
  color: rgba(246,241,231,0.4);
  font-style: italic;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.85;
  padding: 0.35rem 0;
}
.summary-item span:last-child { font-weight: 600; color: var(--terracota); }
.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246,241,231,0.15);
  font-size: 0.9rem;
  color: rgba(246,241,231,0.7);
}
#summary-total {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  color: var(--terracota);
}
.form-error {
  background: rgba(224,80,80,0.12);
  border: 1px solid rgba(224,80,80,0.35);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: #ffb3b3;
  margin-bottom: 1.25rem;
}
.btn-order-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--terracota);
  padding: 1.1rem 2rem;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-order-submit:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,106,74,0.4);
}
.btn-order-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-submit-icon { font-size: 1.2rem; transition: transform 0.2s ease; }
.btn-order-submit:hover .btn-submit-icon { transform: translateX(4px); }
.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(246,241,231,0.35);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   CONFIRM MODAL
   ============================================================ */
/* ── Product modal ── */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30,18,10,0.82);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
}
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease;
}
.product-modal-inner {
  background: var(--cream);
  border-radius: 1.25rem;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 120px rgba(30,18,10,0.4);
  position: relative;
}
.product-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 0.9rem;
  color: var(--choco);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.product-modal-close:hover { background: var(--terracota); color: #fff; }
.product-modal-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.product-modal-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-modal-body {
  padding: 2.5rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-modal-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.product-modal-title {
  font-size: 2rem;
  color: var(--choco);
  line-height: 1.1;
}
.product-modal-desc {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.product-modal-items {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-modal-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.card-item-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.card-item-left span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: zoom-in;
}
.product-modal-items li .price {
  font-weight: 600;
  color: var(--terracota);
}
.card-item-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.btn-add-cart-modal.added {
  background: var(--sage);
  transition: background 0.15s;
}
.product-modal-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-style: italic;
}
.product-modal-cta {
  margin-top: auto;
  text-align: center;
}
@media (max-width: 640px) {
  .product-modal-inner {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .product-modal-img-wrap { min-height: 240px; }
}
#product-modal-img { cursor: zoom-in; }

/* ── Lightbox: galería de fotos por producto ── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: rgba(20,12,7,0.92);
  animation: fadeIn 0.2s ease;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 551;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  animation: fadeIn 0.2s ease;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0,0,0,0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
@media (max-width: 640px) {
  .lightbox { padding: 1.25rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-close { width: 36px; height: 36px; }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(74,52,40,0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalSlide 0.45s var(--ease-out);
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.confirm-modal-inner {
  background: var(--cream);
  border-radius: calc(var(--r) * 2);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(74,52,40,0.3);
}
.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: popIn 0.5s 0.2s var(--ease-out) both;
}
@keyframes popIn {
  from { transform: scale(0); } to { transform: scale(1); }
}
.confirm-title {
  font-size: 2rem;
  color: var(--choco);
  margin-bottom: 0.75rem;
}
.confirm-sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.confirm-details {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.btn-confirm-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: #25D366;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-confirm-wa:hover { background: #1DA851; transform: translateY(-1px); }
.btn-confirm-close {
  font-size: 0.85rem;
  color: var(--text-mute);
  background: none;
  border: none;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn-confirm-close:hover { color: var(--choco); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--terracota);
  padding: 7rem 2rem;
  overflow: hidden;
  text-align: center;
}
.final-cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(246,241,231,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(74,52,40,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-inner .section-kicker { color: rgba(246,241,231,0.7); }
.final-cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  margin: 0.75rem 0 2.5rem;
  text-wrap: balance;
}
.final-cta-title em { color: var(--choco); }
.final-cta .btn-primary {
  background: var(--choco);
  color: var(--cream);
}
.final-cta .btn-primary:hover {
  background: #2C1F14;
  box-shadow: 0 12px 32px rgba(74,52,40,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--choco);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,241,231,0.1);
}
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(246,241,231,0.55);
  line-height: 1.5;
  font-style: italic;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(246,241,231,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracota); }
.footer-contact {
  padding-top: 0.25rem;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(246,241,231,0.55);
  margin-bottom: 0.75rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.footer-social-btn span { line-height: 1; }
.footer-social-btn--wa {
  background: rgba(37,211,102,0.15);
  color: #25d366;
}
.footer-social-btn--wa:hover { background: #25d366; color: #fff; }
.footer-social-btn--ig {
  background: rgba(201,106,74,0.15);
  color: var(--terracota);
}
.footer-social-btn--ig:hover { background: var(--terracota); color: #fff; }

/* Nav social icons */
.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--choco);
  transition: background 0.2s, color 0.2s;
}
.nav-social:hover { background: var(--cream-2); }
.nav-social--wa { color: #25d366; }
.nav-social--wa:hover { background: #25d366; color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(246,241,231,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.credits-note:hover { color: rgba(246,241,231,0.6); }
.credits-detail {
  max-width: 1200px;
  margin: 1rem auto 0;
  font-size: 0.72rem;
  color: rgba(246,241,231,0.3);
  line-height: 1.6;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .concept-pillars { grid-template-columns: 1fr; }
  .concept-quote { padding: 1.5rem 1.25rem; }
  .concept-stats { gap: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .confirm-modal-inner { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   WHATSAPP FLOTANTE
============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, opacity 0.2s;
}
/* Cede el paso cuando se solapa con un botón "Agregar" — ver initFloatCollisionGuard en main.js */
.wa-float--yield {
  opacity: 0;
  pointer-events: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float svg { position: relative; z-index: 1; }
@media (max-width: 480px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ============================================================
   FAVICON DECORATIVO
============================================================ */
.marquee-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
  opacity: 0.85;
}
.deco-favicon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.18;
  margin: 0 auto 1.25rem;
}
/* Quiénes somos — favicon sobre el kicker */
.concept-head .deco-favicon {
  opacity: 0.25;
  filter: brightness(10);
  width: 48px; height: 48px;
}
/* Menú — favicon pequeño junto al kicker */
.deco-favicon--menu {
  opacity: 0.22;
  width: 44px; height: 44px;
  margin-bottom: 0.75rem;
}
/* CTA final — favicons flotantes a los lados */
.deco-favicon--cta-l,
.deco-favicon--cta-r {
  position: absolute;
  width: 80px; height: 80px;
  opacity: 0.12;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.deco-favicon--cta-l { left: 4vw; }
.deco-favicon--cta-r { right: 4vw; transform: translateY(-50%) scaleX(-1); }
.final-cta { position: relative; }

/* ============================================================
   RESPONSIVE MÓVIL — ajustes completos
============================================================ */

/* ─── 768px: tablets ─── */
@media (max-width: 768px) {
  /* Nav */
  --nav-h: 68px;
  .nav-logo-img { width: 60px; height: 60px; }

  /* Hero */
  .hero-logo img { width: 180px; height: 180px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-content { padding: 0 1.25rem; }

  /* Sections padding */
  .concept { padding: 5rem 1.25rem; }
  .menu-section { padding: 5rem 1.25rem; }
  .order-section { padding: 5rem 1.25rem; }
  .final-cta { padding: 5rem 1.25rem; }

  /* Concept */
  .concept-title { font-size: clamp(2rem, 6vw, 3.2rem); }
  .concept-inner { gap: 3rem; }

  /* Menu */
  .menu-grid { gap: 1.25rem; }

  /* Order form */
  .order-inner { padding: 0 0; }

  /* Delivery toggle */
  .delivery-toggle { flex-direction: column; gap: 0.75rem; }

  /* CTA decorativos ocultos en tablet pequeña */
  .deco-favicon--cta-l,
  .deco-favicon--cta-r { width: 60px; height: 60px; opacity: 0.08; }
}

/* ─── 480px: móvil ─── */
@media (max-width: 480px) {
  /* Nav */
  .nav-logo-img { width: 52px; height: 52px; }
  .nav-inner { padding: 0 1rem; }

  /* Hero */
  .hero-logo img { width: 140px; height: 140px; }
  .hero-kicker { font-size: 0.7rem; }
  .hero-title { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }
  .hero-sub { font-size: 0.88rem; padding: 0 0.5rem; }
  .hero-content { gap: 1rem; }
  .hero-actions { gap: 0.75rem; }

  /* Sections */
  .concept { padding: 4rem 1rem; }
  .menu-section { padding: 4rem 1rem; }
  .order-section { padding: 4rem 1rem; }

  /* Concept */
  .concept-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .concept-quote { font-size: clamp(1rem, 4vw, 1.25rem); padding: 1.25rem 1rem; }
  .concept-inner { gap: 2.5rem; }
  .concept-stats { flex-direction: column; gap: 1.5rem; }
  .concept-stat-divider { display: none; }
  .stat-num { font-size: 2rem; }

  /* Menu */
  .menu-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .menu-grid { gap: 1rem; }
  .menu-card-title { font-size: 1.4rem; }

  /* Marquee */
  .marquee-icon { width: 20px; height: 20px; }

  /* Order form */
  .form-section { padding: 1.5rem 1rem; }
  .form-section-title { font-size: 1rem; }
  .order-item { padding: 0.75rem 0; }
  .order-item-name { font-size: 0.85rem; }
  .order-item-price { font-size: 0.82rem; }
  .qty-btn { width: 28px; height: 28px; font-size: 1rem; }

  /* Delivery cards */
  .delivery-card { padding: 1rem; }
  .delivery-toggle { gap: 0.6rem; }

  /* Payment */
  .payment-options { flex-direction: column; }

  /* Modals */
  .product-modal { padding: 0.75rem; }
  .product-modal-inner { border-radius: 1rem; }
  .product-modal-body { padding: 1.5rem 1.25rem; }
  .product-modal-title { font-size: 1.5rem; }

  .confirm-modal-inner { padding: 1.75rem 1.25rem; }
  .confirm-icon { width: 52px; height: 52px; font-size: 1.4rem; }

  /* Footer */
  .footer { padding: 3rem 1rem 1.5rem; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
  .footer-social-btn { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

  /* CTA decorativos ocultos en móvil */
  .deco-favicon--cta-l,
  .deco-favicon--cta-r { display: none; }

  /* Final CTA */
  .final-cta-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .final-cta { padding: 4rem 1.25rem; }
}

/* ─── 360px: móviles muy pequeños ─── */
@media (max-width: 360px) {
  .hero-logo img { width: 110px; height: 110px; }
  .hero-title { font-size: 1.7rem; }
  .nav-logo-img { width: 44px; height: 44px; }
  .menu-card-items li { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
  .concept-bg-word { font-size: 8rem; }
}

/* ============================================================
   NAV CART BUTTON
============================================================ */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--choco);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cart-btn:hover { background: var(--choco); color: var(--cream); transform: scale(1.05); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--terracota);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   FIX LASAÑA IMAGE
============================================================ */
.img-lasana {
  object-position: center 40% !important;
}

/* ============================================================
   FAVICON DECORATIVO AVANZADO
============================================================ */
.concept-stat-divider img.deco-tiny {
  width: 24px; height: 24px;
  object-fit: contain;
  opacity: 0.4;
  filter: brightness(10);
  vertical-align: middle;
}
.pillar-favicon {
  width: 32px; height: 32px;
  object-fit: contain;
  opacity: 0.15;
  filter: brightness(10);
  position: absolute;
  bottom: 1rem; right: 1rem;
}
.concept-pillar { position: relative; overflow: hidden; }
.section-deco-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 200px;
}
.section-deco-line::before,
.section-deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
.section-deco-line img {
  width: 28px; height: 28px;
  object-fit: contain;
  opacity: 0.5;
}

/* ============================================================
   CART DRAWER — rediseño completo
============================================================ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(30,18,10,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cart-backdrop.visible { opacity: 1; pointer-events: all; }


/* ── Cart drawer shell ── */
.cd {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 401;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out);
  box-shadow: -12px 0 60px rgba(74,52,40,0.22);
}
.cd.open { transform: translateX(0); }

/* ── Header ── */
.cd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--choco);
  flex-shrink: 0;
  gap: 1rem;
}
.cd-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cd-header-icon {
  width: 34px; height: 34px;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
}
.cd-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}
.cd-subtitle {
  font-size: 0.75rem;
  color: rgba(246,241,231,0.6);
  margin-top: 1px;
}
.cd-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(246,241,231,0.1);
  color: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cd-close:hover { background: rgba(246,241,231,0.22); }

/* ── Body (scrollable) ── */
.cd-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* ── Empty state ── */
.cd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 4rem 2rem;
  text-align: center;
}
.cd-empty-icon {
  width: 60px; height: 60px;
  object-fit: contain;
  opacity: 0.18;
  margin-bottom: 0.25rem;
}
.cd-empty-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}
.cd-empty-hint {
  font-size: 0.82rem;
  color: var(--text-mute);
}

/* ── Items list ── */
.cd-items {
  padding: 1rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cd-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(74,52,40,0.06);
}
.cd-item-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.cd-item-info { flex: 1; min-width: 0; }
.cd-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--choco);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.cd-item-unit-price {
  font-size: 0.75rem;
  color: var(--text-mute);
}
.cd-item-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cd-item-subtotal {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--terracota);
  min-width: 62px;
  text-align: right;
}
.cd-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream-2);
  border-radius: 100px;
  padding: 3px 4px;
}
.cd-qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--choco);
  font-size: 1.1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cd-qty-btn:hover { background: var(--choco); color: var(--cream); }
.cd-qty-num {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  color: var(--choco);
}

/* ── Checkout form ── */
.cd-checkout {
  padding: 0.5rem 0 0.5rem;
}
/* ── Alerta 48h / comprobante ── */
.cd-alert {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1rem 1.2rem 0;
  padding: 0.85rem 1rem;
  background: rgba(201,106,74,0.1);
  border: 1px solid rgba(201,106,74,0.25);
  border-radius: 10px;
}
.cd-alert-icon { font-size: 1.15rem; line-height: 1.3; flex-shrink: 0; }
.cd-alert-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.cd-alert-body p + p { margin-top: 0.25rem; }
.cd-alert-body strong { color: var(--terracota); }

.cd-payment-note {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-mute);
  font-style: italic;
}

.cd-section {
  padding: 1.1rem 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cd-section--last { border-bottom: none; }
.cd-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--choco);
  opacity: 0.55;
}
.cd-optional {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-mute);
}

/* ── Toggle group (delivery/payment) ── */
.cd-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.cd-toggle-opt { cursor: pointer; }
.cd-toggle-opt input { display: none; }
.cd-toggle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.75rem 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  position: relative;
}
.cd-toggle-card strong {
  font-size: 0.85rem;
  color: var(--choco);
  font-weight: 700;
}
.cd-toggle-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 2px;
}
.cd-toggle-sub {
  font-size: 0.7rem;
  color: var(--text-mute);
}
.cd-toggle-check {
  position: absolute;
  top: 6px; right: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sage);
  opacity: 0;
  transition: opacity 0.15s;
}
.cd-toggle-opt input:checked + .cd-toggle-card {
  border-color: var(--sage);
  background: rgba(123,174,127,0.08);
  box-shadow: 0 0 0 3px rgba(123,174,127,0.15);
}
.cd-toggle-opt input:checked + .cd-toggle-card .cd-toggle-check {
  opacity: 1;
}
.cd-toggle-opt input:checked + .cd-toggle-card strong {
  color: var(--choco);
}

/* ── Fields ── */
.cd-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cd-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.cd-input::placeholder { color: var(--text-mute); }
.cd-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,174,127,0.15);
}
.cd-textarea {
  resize: vertical;
  min-height: 72px;
}

/* ── GPS button ── */
.cd-gps-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px dashed var(--line-strong);
  background: transparent;
  color: var(--choco);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.cd-gps-btn:hover { border-color: var(--terracota); background: rgba(201,106,74,0.05); }
.cd-gps-btn.loading { opacity: 0.6; cursor: wait; }
.cd-gps-btn.success {
  border-color: var(--sage);
  border-style: solid;
  color: var(--sage);
  background: rgba(123,174,127,0.07);
}
.cd-gps-status {
  font-size: 0.78rem;
  margin: 0;
}
.cd-gps-status.error { color: var(--terracota); }
.cd-gps-status.ok    { color: var(--sage); }

/* ── Comprobante de pago ── */
.cd-proof-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px dashed var(--line-strong);
  background: transparent;
  color: var(--choco);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.cd-proof-btn:hover { border-color: var(--terracota); background: rgba(201,106,74,0.05); }
.cd-proof-btn.attached {
  border-color: var(--sage);
  border-style: solid;
  color: var(--sage);
  background: rgba(123,174,127,0.07);
}
.cd-proof-preview {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.6rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  background: var(--cream-2);
}
.cd-proof-preview img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.cd-proof-preview-name {
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cd-proof-remove {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(74,52,40,0.08);
  color: var(--choco);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cd-proof-remove:hover { background: rgba(201,106,74,0.18); color: var(--terracota); }

/* ── Map ── */
.cd-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--line-strong);
  margin-top: 0.25rem;
}
.cd-map-wrap iframe {
  width: 100%;
  height: 180px;
  border: none;
  display: block;
}
.cd-map-ext {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  background: var(--cream-2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--choco);
  text-decoration: none;
  border-top: 1px solid var(--line);
  transition: background 0.15s;
}
.cd-map-ext:hover { background: var(--cream-3); }

/* ── Error ── */
.cd-error {
  margin: 0 1.2rem 0.5rem;
  padding: 0.65rem 0.9rem;
  background: rgba(201,106,74,0.1);
  color: var(--terracota);
  border: 1px solid rgba(201,106,74,0.25);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Footer ── */
.cd-footer {
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 -4px 20px rgba(74,52,40,0.07);
}
.cd-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cd-total-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}
.cd-total-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracota);
  line-height: 1;
}
.cd-total-row--sub { margin-bottom: -0.2rem; }
.cd-total-amount--sub {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}
.cd-submit {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--terracota);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,106,74,0.35);
}
.cd-submit:hover:not(:disabled) {
  background: #b55a3c;
  box-shadow: 0 6px 24px rgba(201,106,74,0.45);
  transform: translateY(-1px);
}
.cd-submit:active:not(:disabled) { transform: translateY(0); }
.cd-submit:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
}
.cd-submit.loading {
  opacity: 0.7;
  cursor: wait;
}
.cd-footer-note {
  font-size: 0.72rem;
  color: var(--text-mute);
  text-align: center;
}

/* ── Success overlay ── */
.cd-success {
  position: absolute;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 10;
}
.cd-success-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cd-success-check {
  width: 72px; height: 72px;
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 24px rgba(123,174,127,0.4);
}
.cd-success-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--choco);
}
.cd-success-id {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--terracota);
  background: rgba(201,106,74,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}
.cd-success-msg {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 280px;
  line-height: 1.5;
}
.cd-success-share {
  margin-top: 0.3rem;
  padding: 0.85rem 1.5rem;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(123,174,127,0.35);
}
.cd-success-share:hover { background: var(--sage-dark); }
.cd-success-hint {
  font-size: 0.76rem;
  color: var(--text-mute);
  max-width: 280px;
  line-height: 1.4;
  margin-top: -0.3rem;
}
.cd-success-btn {
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--choco);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.cd-success-btn:hover { background: #3a271e; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .cd { width: 100vw; }
  .cd-total-amount { font-size: 1.4rem; }
  .cd-map-wrap iframe { height: 160px; }
}

/* ── Flag images en pilares ── */
.pillar-flag {
  width: 56px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}
