/* ===== LA JEFA DARKITCHEN — brand edition ===== */

@font-face {
  font-family: 'Wayside';
  src: url('fonts/wayside/demowaysidecoloradomedscript-3l2q3.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --purple: #4b2178;
  --purple-deep: #331460;
  --purple-dark: #3d1a68;
  --ink: #2b1152;
  --coral: #f2917c;
  --coral-hot: #ee7a60;
  --coral-light: #f7b3a4;
  --coral-soft: #fce4dd;
  --cream: #fdf6f0;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(75, 33, 120, .15);
  --shadow-lg: 0 24px 60px rgba(51, 20, 96, .28);
  --font-head: 'Lilita One', 'Arial Black', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(51, 20, 96, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-mascot { height: 52px; width: auto; }

.brand-logo { height: 48px; width: auto; }

.header-checker {
  flex: 1;
  height: 16px;
  margin: 0 18px;
  background:
    repeating-conic-gradient(rgba(242,145,124,.55) 0% 25%, transparent 0% 50%)
    0 0 / 16px 16px;
  border-radius: 4px;
  opacity: .7;
}

.nav { margin-left: auto; display: flex; gap: 2px; }

.header-social { display: flex; gap: 8px; }

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  transition: .2s;
}

.header-social a:hover { background: var(--coral); color: var(--purple-deep); transform: translateY(-2px); }

.nav a {
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 13px;
  border-radius: 999px;
  transition: .2s;
}

.nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }

.nav a.active { color: var(--purple-deep); background: var(--coral); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--purple-deep);
  border: none;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
}

.cart-btn:hover { background: var(--coral-hot); transform: scale(1.07); }

.cart-btn.bump { animation: bump .35s ease; }

@keyframes bump {
  30% { transform: scale(1.25) rotate(-6deg); }
  60% { transform: scale(.95); }
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--purple);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(242,145,124,.25), transparent 60%),
    radial-gradient(700px 500px at 90% 10%, rgba(242,145,124,.15), transparent 55%),
    linear-gradient(165deg, var(--purple-deep) 0%, var(--purple-dark) 55%, var(--purple) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 60px 20px 120px;
  text-align: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  animation: drift 14s ease-in-out infinite alternate;
}

.blob-1 { width: 380px; height: 380px; background: #6b35a8; top: -120px; left: -100px; }
.blob-2 { width: 300px; height: 300px; background: var(--coral); bottom: -80px; right: -60px; opacity: .3; animation-delay: -5s; }
.blob-3 { width: 220px; height: 220px; background: #8a4fd0; top: 30%; right: 12%; opacity: .35; animation-delay: -9s; }

@keyframes drift { to { transform: translate(40px, 30px) scale(1.12); } }

.spark {
  position: absolute;
  color: var(--coral-light);
  opacity: .8;
  animation: twinkle 3.2s ease-in-out infinite;
  font-size: 1.1rem;
}

.s1 { top: 18%; left: 12%; }
.s2 { top: 30%; right: 14%; animation-delay: .8s; font-size: 1.5rem; }
.s3 { bottom: 28%; left: 20%; animation-delay: 1.6s; font-size: .9rem; }
.s4 { top: 12%; right: 30%; animation-delay: 2.2s; }
.s5 { top: 55%; right: 8%; animation-delay: 1.2s; font-size: 1.3rem; }
.s6 { bottom: 14%; right: 32%; animation-delay: 2.8s; font-size: .85rem; }
.s7 { top: 26%; left: 30%; animation-delay: .4s; font-size: 2rem; }
.s8 { top: 66%; left: 14%; animation-delay: 1.9s; }

/* Aros decorativos */
.ring {
  position: absolute;
  border: 3px solid rgba(242,145,124,.4);
  border-radius: 50%;
  animation: floaty 9s ease-in-out infinite;
}

.r1 { width: 90px; height: 90px; top: 20%; right: 7%; animation-delay: -2s; }
.r2 { width: 55px; height: 55px; bottom: 22%; left: 9%; border-color: rgba(255,255,255,.18); animation-delay: -6s; }
.r3 { width: 130px; height: 130px; top: 60%; right: 22%; border-color: rgba(242,145,124,.2); animation-delay: -4s; }

/* Mini banderas ajedrez */
.mini-checker {
  position: absolute;
  width: 54px;
  height: 28px;
  background:
    repeating-conic-gradient(rgba(242,145,124,.75) 0% 25%, transparent 0% 50%)
    0 0 / 14px 14px;
  border-radius: 5px;
  animation: floaty 8s ease-in-out infinite;
}

.mc1 { top: 38%; right: 5%; rotate: 14deg; }
.mc2 { bottom: 8%; left: 7%; rotate: -10deg; animation-delay: -3s; }
.mc3 { top: 7%; left: 34%; rotate: 8deg; animation-delay: -5.5s; opacity: .6; }

/* Puntitos */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-light);
  opacity: .55;
  animation: twinkle 4s ease-in-out infinite;
}

.d1 { top: 24%; left: 42%; }
.d2 { top: 70%; right: 12%; animation-delay: 1s; width: 7px; height: 7px; }
.d3 { bottom: 20%; left: 38%; animation-delay: 2s; }
.d4 { top: 40%; left: 8%; animation-delay: 3s; width: 6px; height: 6px; }

@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Comida flotante del hero (cambiar por fotos reales luego) */
.float-food {
  position: absolute;
  z-index: 1;
  font-size: 3.2rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}

.float-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--coral);
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
}

.ff1 { top: 12%; left: 15%; rotate: -14deg; width: 150px; height: 150px; }
.ff2 { bottom: 28%; right: 13%; rotate: 12deg; animation-delay: -3s; width: 140px; height: 140px; }
.ff3 { top: 46%; left: 5%; rotate: 8deg; animation-delay: -5s; }
.ff4 { top: 8%; right: 25%; rotate: -8deg; width: 95px; height: 95px; animation-delay: -1.5s; }
.ff5 { bottom: 12%; left: 25%; rotate: 14deg; width: 100px; height: 100px; animation-delay: -4s; }
.ff6 { top: 68%; right: 4%; rotate: -10deg; width: 105px; height: 105px; animation-delay: -2.2s; }
.ff7 { top: 30%; left: 3%; rotate: 12deg; width: 88px; height: 88px; animation-delay: -6s; }

@media (max-width: 900px) {
  .float-photo { width: 80px; height: 80px; border-width: 3px; }
  .ff1 { width: 95px; height: 95px; }
  .ff2 { width: 90px; height: 90px; }
  .ff4, .ff5, .ff6, .ff7 { display: none; }
  .ring, .mini-checker { display: none; }
}

/* En móvil las fotos van arriba, junto al logo: nunca sobre el texto */
@media (max-width: 760px) {
  .ff1 { top: 3%; left: 2%; width: 78px; height: 78px; }
  .ff2 { top: 3%; right: 2%; bottom: auto; width: 78px; height: 78px; }
  .ff3 { display: none; }
}

/* Stickers flotantes del hero */
.hero-sticker {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
  animation: floaty 6s ease-in-out infinite;
  pointer-events: none;
}

.st-cayambe { width: 190px; top: 6%; left: 4%; rotate: -10deg; }
.st-lupita { width: 170px; top: 14%; right: 4%; rotate: 10deg; animation-delay: -2s; }
.st-preparando { width: 200px; bottom: 16%; left: 5%; rotate: 7deg; animation-delay: -4s; }

.hero-mascot-peek {
  position: absolute;
  z-index: 2;
  width: 170px;
  right: 4%;
  bottom: 10%;
  rotate: -8deg;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
  animation: floaty 6s ease-in-out infinite;
  animation-delay: -1s;
  pointer-events: none;
}

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -20px; }
}

.hero-content { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }

.hero-logo {
  width: min(520px, 86%);
  margin-bottom: 8px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin: 10px 0 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
  letter-spacing: 2px;
}

.hero-sub {
  font-size: 1.08rem;
  opacity: .92;
  max-width: 560px;
  margin: 0 auto 30px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-claims {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 14px 30px;
  backdrop-filter: blur(6px);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.35;
}

.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg { width: 100%; height: 60px; }

/* ============ BOTONES ============ */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-big { padding: 16px 34px; font-size: 1.05rem; }

.btn-coral {
  background: var(--coral);
  color: var(--purple-deep);
  box-shadow: 0 10px 24px rgba(242,145,124,.4);
}

.btn-coral:hover { background: var(--coral-hot); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(242,145,124,.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); transform: translateY(-3px); }

.btn-purple { background: var(--purple); color: var(--white); box-shadow: 0 10px 24px rgba(75,33,120,.35); }

.btn-purple:hover { background: var(--purple-deep); transform: translateY(-3px); }

.btn-wa { width: 100%; background: var(--wa); color: var(--white); font-size: 1.02rem; box-shadow: 0 10px 24px rgba(37,211,102,.35); }

.btn-wa:hover { background: #1fb958; transform: translateY(-2px); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--coral);
  color: var(--purple-deep);
  overflow: hidden;
  padding: 9px 0;
  border-top: 3px solid var(--purple-deep);
  border-bottom: 3px solid var(--purple-deep);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .88rem;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 16px; padding: 0 8px; flex-shrink: 0; }

.marquee-track img { height: 26px; width: auto; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ TABBAR ============ */
.tabbar {
  position: sticky;
  top: 64px;
  z-index: 80;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 12px 16px;
  background: rgba(253,246,240,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(75,33,120,.08);
  scrollbar-width: none;
}

.tabbar::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  text-decoration: none;
  color: var(--purple);
  background: var(--white);
  border: 2px solid rgba(75,33,120,.12);
  font-weight: 700;
  font-size: .9rem;
  padding: 9px 20px;
  border-radius: 999px;
  transition: .2s;
}

.tab:hover { border-color: var(--coral); transform: translateY(-2px); }

.tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 8px 20px rgba(75,33,120,.3);
}

/* ============ MENÚ ============ */
.menu { max-width: 1150px; margin: 0 auto; padding: 34px 22px 70px; }

.menu-section { position: relative; margin-bottom: 72px; scroll-margin-top: 140px; }

.section-watermark {
  position: absolute;
  width: 300px;
  right: -80px;
  top: 40px;
  opacity: .06;
  rotate: 12deg;
  pointer-events: none;
}

.section-head { text-align: center; margin-bottom: 34px; }

.section-eyebrow {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral-hot);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
}

.section-sub { color: #6b5a80; max-width: 520px; margin: 8px auto 0; font-size: .95rem; }

.section-sub strong { color: var(--coral-hot); }

/* Pan strip */
.pan-strip { margin: 0 auto 56px; position: relative; max-width: 950px; }

.pan-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  padding: 16px 26px;
  border: 2px solid var(--coral-soft);
}

.pan-strip-title { font-weight: 700; color: var(--purple); }

.pan-chip {
  background: var(--coral-soft);
  color: var(--purple);
  font-weight: 600;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 999px;
}

.pan-chip-new {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(75,33,120,.35);
}

.pan-chip-new em { font-style: normal; color: var(--coral-light); font-weight: 700; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}

.grid-small { grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); }

.grid-combos { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* ============ CARD ============ */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.3,1.1), box-shadow .3s;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-light);
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(140px 100px at 70% 20%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(135deg, var(--coral-soft), var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.6rem;
  overflow: hidden;
}

.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }

.card:hover .card-img img { transform: scale(1.07); }

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s;
  pointer-events: none;
}

.card:hover .card-img::after { transform: translateX(120%); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--purple);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.card-badge.hot { background: var(--coral-hot); color: var(--white); }

.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.card-name { font-family: var(--font-head); font-weight: 400; font-size: 1.4rem; color: var(--purple); margin-bottom: 4px; }

.card-desc { font-size: .85rem; color: #6b5a80; flex: 1; margin-bottom: 14px; }

.card-bottom { display: flex; align-items: center; justify-content: space-between; }

.card-price { font-size: 1.3rem; font-weight: 700; color: var(--coral-hot); }

.card-add {
  background: var(--purple);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  box-shadow: 0 6px 14px rgba(75,33,120,.3);
}

.card-add:hover { background: var(--coral-hot); transform: scale(1.15) rotate(90deg); }

/* Combo cards */
.card-combo {
  background: linear-gradient(160deg, var(--purple-deep), var(--purple));
  border: 2px solid rgba(242,145,124,.35);
}

.card-combo .card-name { color: var(--white); }

.card-combo .card-desc { color: rgba(255,255,255,.75); }

.card-combo .card-price { color: var(--coral-light); }

.card-combo .card-img {
  background:
    radial-gradient(140px 100px at 70% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, #5d2b94, var(--purple-dark));
}

.card-combo .card-add { background: var(--coral); color: var(--purple-deep); }

/* ============ CUMPLEAÑEROS ============ */
.birthday {
  position: relative;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(500px 220px at 50% -40%, rgba(242,145,124,.4), transparent 70%),
    linear-gradient(160deg, var(--purple-deep), var(--purple));
  border-radius: var(--radius);
  padding: 46px 24px;
  margin-bottom: 72px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.birthday-mascot {
  width: 160px;
  margin-bottom: 10px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.3));
}

.birthday h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 8px; }

.birthday p { opacity: .9; margin-bottom: 22px; }

/* ============ HOW ============ */
.how { text-align: center; margin-bottom: 72px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.how-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px 30px;
  box-shadow: var(--shadow);
  border: 2px solid var(--coral-soft);
  transition: .25s;
}

.how-step:hover { transform: translateY(-6px) rotate(-1deg); border-color: var(--coral); }

.how-sticker {
  height: 240px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 8px 16px rgba(75,33,120,.2));
  transition: .25s;
}

.how-step:hover .how-sticker { transform: scale(1.08) rotate(3deg); }

.how-step h3 { color: var(--purple); margin-bottom: 6px; font-size: 1.05rem; font-weight: 700; }

.how-step p { font-size: .88rem; color: #6b5a80; }

/* ============ ENCUÉNTRANOS ============ */
.findus { margin-bottom: 20px; }

.findus-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--white);
  border: 2px solid var(--coral-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.findus-mascot { width: 280px; flex-shrink: 0; }

.findus-info { flex: 1; min-width: 260px; text-align: center; }

.findus-info .section-title { margin-bottom: 10px; }

.findus-addr { font-size: 1.05rem; color: #4a3a63; margin-bottom: 16px; }

.findus-map { margin-bottom: 20px; }

.findus-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.findus-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--purple);
  background: var(--coral-soft);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 18px;
  border-radius: 999px;
  transition: .2s;
}

.findus-social a:hover { background: var(--coral); color: var(--purple-deep); transform: translateY(-2px); }

/* ============ FOOTER ============ */
.footer {
  background: var(--purple-deep);
  color: var(--white);
  text-align: center;
  padding: 50px 20px 100px;
  margin-top: 40px;
}

.footer-logo { width: min(320px, 80%); margin-bottom: 16px; }

.footer-loc { opacity: .85; margin-bottom: 12px; font-size: .92rem; }

.footer-social { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 11px 22px;
  border-radius: 999px;
  transition: .2s;
}

.footer-social a:hover { background: var(--coral); color: var(--purple-deep); transform: translateY(-2px); }

.footer-note { font-size: .82rem; opacity: .65; }

.footer-copy { font-size: .75rem; opacity: .45; margin-top: 18px; }

.footer-credit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .78rem;
}

.footer-verse { color: var(--coral-light); font-style: italic; }

.footer-studio { opacity: .6; }

.footer-studio strong { color: var(--white); opacity: .9; }

/* ============ WA FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  width: 60px;
  height: 60px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  transition: .2s;
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.12); animation: none; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  translate: -50% 20px;
  z-index: 120;
  background: var(--purple-deep);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.toast.show { opacity: 1; translate: -50% 0; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }

.reveal.in { opacity: 1; transform: none; }

.card.reveal { transition-delay: var(--d, 0s); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(43, 17, 82, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn .28s cubic-bezier(.2,.9,.3,1.2);
}

@keyframes modalIn { from { transform: translateY(26px) scale(.97); opacity: 0; } }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: .2s;
}

.modal-close:hover { background: var(--coral-soft); transform: rotate(90deg); }

.modal-img {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(180px 120px at 70% 20%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(135deg, var(--coral-soft), var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: 22px 24px 26px; }

.modal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }

.modal-body h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.7rem; color: var(--purple); }

.modal-price { font-weight: 700; font-size: 1.3rem; color: var(--coral-hot); white-space: nowrap; }

.modal-desc { color: #6b5a80; font-size: .9rem; margin: 6px 0 18px; }

.opt-block { margin-bottom: 20px; }

.opt-block h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 9px;
  font-weight: 700;
}

.opt-list { display: flex; flex-wrap: wrap; gap: 8px; }

.opt-chip {
  border: 2px solid var(--coral-soft);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 17px;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s;
}

.opt-chip:hover { border-color: var(--coral); }

.opt-chip.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(75,33,120,.3);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--coral-soft);
  transition: .2s;
}

.check-row:hover { background: #fbd7cc; }

.check-row input { width: 19px; height: 19px; accent-color: var(--purple); flex-shrink: 0; }

.combo-row small { font-weight: 500; color: #8a7a9b; }

.combo-row strong { color: var(--coral-hot); margin-left: auto; }

.opt-sub { margin-top: 12px; }

/* Pasos didácticos del personalizador */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--purple-deep);
  font-size: .8rem;
  margin-right: 6px;
}

.opt-hint { font-size: .8rem; color: #8a7a9b; margin-bottom: 10px; }

/* Steppers de ingredientes (estilo caja POS) */
.ing-list { display: flex; flex-direction: column; gap: 6px; }

.ing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 2px solid var(--coral-soft);
  border-radius: 14px;
  padding: 8px 12px;
  transition: .15s;
}

.ing-row.removed { opacity: .55; background: #f6eeee; }

.ing-emoji { font-size: 1.2rem; }

.ing-name { font-weight: 600; font-size: .88rem; flex: 1; }

.ing-state { font-size: .72rem; font-weight: 700; white-space: nowrap; }

.ing-state.inc { color: #2e9e5b; }
.ing-state.extra { color: var(--coral-hot); }
.ing-state.off { color: #c44; }
.ing-state.zero { color: #9a8bab; }

.ing-stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(75,33,120,.12);
}

.ing-stepper button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--purple);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
}

.ing-stepper button:hover { background: var(--purple); color: var(--white); }

.ing-stepper span { min-width: 24px; text-align: center; font-weight: 700; font-size: .95rem; }

.inc-chip.removed-chip { background: #f6eeee; border-color: #e5c9c9; color: #c44; }

/* Desglose de precio en vivo */
.price-breakdown {
  border-top: 2px dashed var(--coral-soft);
  padding-top: 10px;
  margin-bottom: 6px;
}

.bd-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: #6b5a80;
  padding: 2px 0;
}

.bd-row:first-child { font-weight: 700; color: var(--purple); }

.topping-list { display: flex; flex-direction: column; gap: 4px; }

.topping-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: .15s;
  font-size: .9rem;
  font-weight: 500;
}

.topping-row:hover { background: var(--coral-soft); }

.topping-row input { width: 17px; height: 17px; accent-color: var(--purple); }

.topping-price { margin-left: auto; color: var(--coral-hot); font-weight: 700; }

.note-input {
  width: 100%;
  border: 2px solid var(--coral-soft);
  border-radius: 14px;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: .2s;
}

.note-input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,145,124,.15); }

.modal-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding-top: 6px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--coral-soft);
  border-radius: 999px;
  padding: 5px;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
}

.qty-control button:hover { background: var(--purple); color: var(--white); }

.qty-control span { min-width: 30px; text-align: center; font-weight: 700; font-size: 1.05rem; }

.modal-footer .btn { flex: 1; }

/* ============ CARRITO ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(43, 17, 82, .6);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(430px, 100%);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  box-shadow: -14px 0 50px rgba(0,0,0,.3);
  animation: slideIn .3s cubic-bezier(.2,.9,.3,1);
}

@keyframes slideIn { from { transform: translateX(80px); opacity: 0; } }

.cart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--purple-deep);
  color: var(--white);
}

.cart-mascot { height: 44px; width: auto; }

.cart-header h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.5rem; flex: 1; }

.cart-close { position: static; box-shadow: none; background: rgba(255,255,255,.15); color: var(--white); }

.cart-close:hover { background: rgba(255,255,255,.3); }

.cart-items { flex: 0 1 auto; overflow-y: auto; padding: 14px 22px; min-height: 90px; }

.cart-item {
  background: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(75,33,120,.08);
}

.cart-item-top { display: flex; justify-content: space-between; gap: 10px; }

.cart-item-name { font-weight: 700; color: var(--purple); }

.cart-item-price { font-weight: 700; color: var(--coral-hot); white-space: nowrap; }

.cart-item-detail { font-size: .78rem; color: #6b5a80; margin-top: 3px; }

.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 10px; }

.cart-item-actions .qty-control { padding: 2px; }

.cart-item-actions .qty-control button { width: 27px; height: 27px; font-size: 1rem; }

.cart-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #c44;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.cart-remove:hover { background: #fdecec; }

.cart-empty { text-align: center; padding: 40px 20px; color: #6b5a80; }

.cart-empty-img { width: 180px; margin-bottom: 6px; }

.cart-footer {
  flex: 0 1 auto;
  overflow-y: auto;
  padding: 16px 22px 22px;
  background: var(--white);
  border-top: 2px solid var(--coral-soft);
}

/* Formulario del pedido */
.cart-form { display: flex; flex-direction: column; gap: 13px; margin-bottom: 14px; }

.field-block { display: flex; flex-direction: column; gap: 7px; }

.field-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--purple);
}

.field-label em { font-style: normal; color: var(--coral-hot); }

.field-label small { font-weight: 500; color: #8a7a9b; }

.cart-form input {
  border: 2px solid var(--coral-soft);
  border-radius: 14px;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: .2s;
}

.cart-form input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,145,124,.15); }

/* Botones de opción (tipo de pedido y pago) */
.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  border-radius: 16px;
  transition: .2s;
}

#payOptions { grid-template-columns: repeat(4, 1fr); }

.choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 66px;
  padding: 9px 4px;
  border: 2px solid var(--coral-soft);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.25rem;
  cursor: pointer;
  transition: .18s;
}

.choice span {
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.choice:hover { border-color: var(--coral); transform: translateY(-2px); }

.choice.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(75,33,120,.3);
}

/* Marca de campo faltante */
.field-error { border-color: #e05252 !important; }

input.field-error { box-shadow: 0 0 0 4px rgba(224,82,82,.15); }

.choice-row.field-error {
  outline: 2px solid #e05252;
  outline-offset: 4px;
}

.form-error {
  background: #fdecec;
  color: #c23434;
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  padding: 9px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Sugerencias "¿Le sumas algo?" */
.suggest {
  background: var(--coral-soft);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.suggest-title { font-size: .82rem; font-weight: 700; color: var(--purple); margin-bottom: 9px; }

.suggest-row { display: flex; gap: 8px; }

.suggest-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 8px 5px;
  font-family: var(--font-body);
  font-size: 1.4rem;
  cursor: pointer;
  transition: .18s;
}

.suggest-card:hover { border-color: var(--coral); transform: translateY(-3px); }

.suggest-card img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }

.suggest-name {
  font-size: .68rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.15;
  text-align: center;
}

.suggest-price { font-size: .7rem; font-weight: 700; color: var(--coral-hot); }

/* Código de descuento */
.promo-code { margin-bottom: 14px; }

.promo-code label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 7px;
}

.promo-code-row { display: flex; gap: 8px; }

.promo-code-row input {
  flex: 1;
  min-width: 0;
  border: 2px dashed var(--coral);
  border-radius: 14px;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  background: var(--cream);
  transition: .2s;
}

.promo-code-row input::placeholder { letter-spacing: 0; font-weight: 500; text-transform: none; }

.promo-code-row input:focus { border-style: solid; box-shadow: 0 0 0 4px rgba(242,145,124,.15); }

.promo-code-row button {
  flex-shrink: 0;
  border: none;
  border-radius: 14px;
  padding: 0 20px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s;
}

.promo-code-row button:hover { background: var(--coral-hot); color: var(--purple-deep); }

.promo-msg { font-size: .8rem; font-weight: 700; margin-top: 7px; }

.promo-msg.ok { color: #2e9e5b; }

.promo-msg.err { color: #c44; }

/* Totales */
.cart-total-box { margin-bottom: 4px; }

.cart-line {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: #6b5a80;
  padding: 2px 0;
}

.cart-line.discount { color: #2e9e5b; font-weight: 700; }

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple);
  padding-top: 6px;
  margin-bottom: 4px;
}

.cart-note { font-size: .76rem; color: #6b5a80; margin-bottom: 12px; }

/* ============ STATUS ABIERTO/CERRADO ============ */
.status-chip {
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.status-chip.open { background: rgba(37,211,102,.18); color: #7dedaa; border: 1px solid rgba(37,211,102,.4); }

.status-chip.closed { background: rgba(255,90,90,.15); color: #ff9d9d; border: 1px solid rgba(255,90,90,.35); }

.closed-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
}

.closed-banner img { height: 150px; width: auto; }

.closed-hours { width: 100%; color: var(--coral-light); font-size: .85rem; }

.closed-banner small { opacity: .7; font-weight: 500; width: 100%; font-size: .78rem; }

/* ============ PROMO SEMANA ============ */
.promo { background: var(--cream); padding: 26px 20px 0; }

.promo-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(160deg, var(--purple-deep), var(--purple));
  border: 2px solid rgba(242,145,124,.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  color: var(--white);
}

.promo-mascot { width: 150px; flex-shrink: 0; filter: drop-shadow(0 8px 18px rgba(0,0,0,.3)); }

.promo-text { flex: 1; min-width: 240px; }

.promo-eyebrow {
  display: inline-block;
  background: var(--coral);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.promo-text h2 { font-family: var(--font-head); font-weight: 400; font-size: 1.7rem; margin-bottom: 4px; }

.promo-text p { font-size: .92rem; opacity: .9; }

.promo-side { text-align: center; }

.promo-count { font-size: .95rem; margin-bottom: 10px; opacity: .95; }

.promo-count strong { color: var(--coral-light); }

/* ============ QUIZ ============ */
.quiz-strip {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--coral-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 34px;
  margin-bottom: 72px;
}

.quiz-mascot { width: 180px; animation: floaty 5s ease-in-out infinite; }

.quiz-actions { display: flex; flex-direction: column; gap: 10px; }

/* Botón "Pregúntale a La Jefa" (abre el chat con el bot) */
.btn-ask {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
}

.btn-ask:hover { background: #1fb958; transform: translateY(-3px); }

.cart-empty .btn-ask { margin-top: 16px; display: inline-block; }

.quiz-text h2 { font-family: var(--font-head); font-weight: 400; font-size: 1.8rem; color: var(--purple); }

.quiz-text p { color: #6b5a80; font-size: .95rem; }

.quiz-modal { max-width: 460px; text-align: center; }

.quiz-body { padding: 34px 28px 30px; }

.quiz-modal-mascot { width: 150px; margin-bottom: 8px; }

.quiz-progress {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-hot);
  margin-bottom: 6px;
}

.quiz-q { font-family: var(--font-head); font-weight: 400; font-size: 1.6rem; color: var(--purple); margin-bottom: 18px; }

.quiz-answers { display: flex; flex-direction: column; gap: 10px; }

.quiz-answer {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  text-align: left;
  background: var(--cream);
  border: 2px solid var(--coral-soft);
  color: var(--ink);
  border-radius: 16px;
  padding: 13px 18px;
  cursor: pointer;
  transition: .18s;
}

.quiz-answer:hover {
  border-color: var(--coral);
  background: var(--coral-soft);
  transform: translateX(4px);
}

.quiz-result-name { color: var(--coral-hot); }

.quiz-result-desc { color: #6b5a80; font-size: .92rem; margin-bottom: 20px; }

.quiz-result-actions { display: flex; flex-direction: column; gap: 10px; }

.btn-ghost-purple { background: none; color: var(--purple); border: 2px solid var(--coral-soft); }

.btn-ghost-purple:hover { border-color: var(--coral); }

/* ============ RESEÑAS ============ */
.reviews { margin-bottom: 72px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--white);
  border: 2px solid var(--coral-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  text-align: left;
}

.review-stars { color: #f5b944; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 8px; }

.review-text { font-size: .92rem; color: #4a3a63; margin-bottom: 10px; }

.review-name { font-weight: 700; color: var(--purple); font-size: .85rem; }

.reviews-cta {
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  padding: 30px 24px;
}

.reviews-sticker { width: 190px; margin-bottom: 8px; }

.reviews-cta p { color: #4a3a63; margin-bottom: 16px; font-weight: 600; }

.findus-hours { color: #4a3a63; font-size: .95rem; margin-bottom: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .st-preparando { display: none; }
  .hero-mascot-peek { width: 120px; bottom: 8%; }
  .st-cayambe { width: 130px; }
  .st-lupita { width: 115px; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .status-chip { display: none; }
  .tabbar { top: 64px; justify-content: flex-start; }
  .hero { padding: 40px 18px 100px; }
  .hero-claims { flex-direction: column; gap: 12px; padding: 16px 26px; }
  .stat-sep { width: 60px; height: 1px; }
  .pan-strip-inner { border-radius: 24px; padding: 16px 18px; gap: 8px; }
  .pan-strip-title { width: 100%; text-align: center; margin-bottom: 2px; }
  .findus-card { padding: 28px 20px; }
  .findus-mascot { width: 200px; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { max-width: 100%; border-radius: 26px 26px 0 0; max-height: 90vh; animation: sheetIn .3s ease; }
  @keyframes sheetIn { from { transform: translateY(60px); opacity: 0; } }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
