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

:root {
  --bg: #0A0A0A; --surface: #141414; --surface-alt: #1C1C1C;
  --text: #E8E4DF; --muted: #6B6560; --accent: #25D366;
  --accent-hover: #20BA5A; --orange: #FF8C42; --blue: #5B9BD5;
  --border: rgba(255,255,255,0.06); --card-bg: #141414;
  --header-bg: rgba(10,10,10,0.92);
  --hero-gradient: linear-gradient(180deg, #0A0A0A 0%, #111 100%);
  --btn-gradient: linear-gradient(135deg, #25D366, #20BA5A);
  --footer-bg: #080808;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', sans-serif;
  --ticket-border: 1px dashed rgba(255,255,255,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; line-height: 1.5; transition: background 0.4s, color 0.4s; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--header-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: background 0.4s; }
.header__inner { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.header__logo { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; color: var(--text); }
.header__right { display: flex; align-items: center; gap: 0.5rem; }
.cart-btn { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.cart-btn svg { width: 22px; height: 22px; stroke: var(--text); }
.cart-badge { position: absolute; top: 2px; right: 0; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; opacity: 0; transform: scale(0.5); transition: all 0.3s cubic-bezier(0.2, 0.8, 0.3, 1); }
.cart-badge.visible { opacity: 1; transform: scale(1); }
.demo-tag { font-family: var(--font-b); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); background: rgba(255,255,255,0.05); padding: 0.2rem 0.5rem; border-radius: 6px; }
.hours-pill { font-family: var(--font-b); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; padding: 0.25rem 0.6rem; border-radius: 20px; white-space: nowrap; }
.hours-pill.open { background: rgba(37,211,102,0.15); color: #25D366; }
.hours-pill.closed { background: rgba(229,57,53,0.15); color: #E53935; }

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero { margin-top: 56px; padding: 4rem 1.5rem 2.5rem; background: var(--hero-gradient); text-align: center; position: relative; }
.hero__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.hero__tagline { font-family: var(--font-b); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.hero__title { font-family: var(--font-d); font-size: clamp(2.2rem, 7vw, 3.5rem); font-weight: 700; letter-spacing: 0.01em; line-height: 1.15; margin-bottom: 1.75rem; color: var(--text); }
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #fff; color: #0A0A0A;
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.hero__cta svg { width: 18px; height: 18px; stroke: #0A0A0A; }

/* ============================================ */
/* DEMO NOTICE                                  */
/* ============================================ */
.demo-notice {
  border-top: 1px dashed rgba(255,255,255,0.12);
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.015);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.demo-notice__inner {
  max-width: 560px; margin: 0 auto;
}
.demo-notice__title {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text);
  margin-bottom: 0.4rem;
}
.demo-notice__text {
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  max-width: 480px; margin: 0 auto;
}

/* ============================================ */
/* HOW IT WORKS                                 */
/* ============================================ */
.how-it-works {
  max-width: 600px; margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-family: var(--font-b); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
  background: rgba(37,211,102,0.08); padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.section-title {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.01em; margin-bottom: 0.4rem;
}
.section-subtitle {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem;
}
.section-header {
  text-align: center; margin-bottom: 1.5rem;
}
.steps {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem;
}
.step {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border: var(--ticket-border);
  border-radius: 12px;
  text-align: left;
}
.step__number {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  color: var(--accent); min-width: 32px; text-align: center;
}
.step__text { display: flex; flex-direction: column; gap: 0.15rem; }
.step__text strong { font-size: 0.9rem; font-weight: 600; }
.step__text span { font-size: 0.78rem; color: var(--muted); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: #fff; color: #0A0A0A;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.12); }
.how-it-works__note {
  font-size: 0.72rem; color: var(--muted); line-height: 1.6;
  max-width: 380px; margin: 0 auto 1.5rem; font-style: italic;
}

/* ============================================ */
/* SECTION (menu)                               */
/* ============================================ */
.section { max-width: 960px; margin: 0 auto; padding: 2rem 1.25rem 4rem; width: 100%; }

/* GRID */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* CARD */
.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
.card__thumb { position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 35%, rgba(37,211,102,0.09), transparent 70%); }
.card__thumb img { width: 62%; height: 62%; object-fit: contain; padding: 1.25rem; transition: transform 0.4s ease; }
.card:hover .card__thumb img { transform: scale(1.06); }
.card__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 78%, var(--card-bg) 100%); pointer-events: none; }
.card__bar { position: absolute; left: 0; top: 10%; bottom: 10%; width: 3px; background: var(--accent); border-radius: 0 2px 2px 0; transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; z-index: 2; }
.card:hover .card__bar { transform: scaleY(1); }
.card__body { padding: 1rem 1.25rem 1.25rem; flex-shrink: 0; }
.card__name { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.02em; line-height: 1.1; color: var(--text); }
.card__cta { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; transition: color 0.2s; }
.card:hover .card__cta { color: var(--accent); }

/* ============================================ */
/* FEATURES                                     */
/* ============================================ */
.features {
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.features__inner { max-width: 800px; margin: 0 auto; }
.features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 0.5rem;
}
.feature {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.feature__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,0.08);
  border-radius: 10px;
  margin-bottom: 0.3rem;
}
.feature__icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.feature strong { font-size: 0.85rem; font-weight: 600; }
.feature span { font-size: 0.75rem; color: var(--muted); }

/* ============================================ */
/* FINAL CTA                                    */
/* ============================================ */
.final-cta {
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem;
  text-align: center;
}
.final-cta__inner { max-width: 500px; margin: 0 auto; }
.final-cta__title {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.final-cta__text {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem;
  line-height: 1.6;
}
.final-cta__actions {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.final-cta__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.final-cta__btn:hover { transform: translateY(-2px); }
.final-cta__btn--primary {
  background: #fff; color: #0A0A0A;
  box-shadow: 0 4px 16px rgba(255,255,255,0.08);
}
.final-cta__btn--primary:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.final-cta__btn--secondary {
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid var(--border);
}
.final-cta__btn--secondary:hover { border-color: rgba(255,255,255,0.15); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

/* ============================================ */
/* PRICING CTA (¿Cuánto cuesta?)                */
/* ============================================ */
.pricing-cta {
  max-width: 640px; margin: 0 auto; padding: 2.5rem 1.25rem;
  text-align: center;
}
.pricing-cta__inner {
  background: rgba(37,211,102,0.05);
  border: 1px dashed rgba(37,211,102,0.35);
  border-radius: 18px;
  padding: 2.25rem 1.5rem;
}
.pricing-cta__title {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.6rem; line-height: 1.25;
}
.pricing-cta__title em { color: var(--accent); font-style: normal; white-space: nowrap; }
.pricing-cta__text {
  font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.pricing-cta__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #25D366, #1EBE5A);
  color: #fff; font-family: var(--font-b); font-size: 0.9rem; font-weight: 700;
  border-radius: 50px; box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.pricing-cta__btn svg { width: 18px; height: 18px; stroke: #fff; }

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq { max-width: 640px; margin: 0 auto; padding: 1rem 1.25rem 4rem; text-align: center; }
.faq__list { text-align: left; margin-top: 0.5rem; }
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 0.6rem; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-b); font-weight: 700; font-size: 1.2rem;
  color: var(--accent); transition: transform 0.2s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
  padding: 0 1.25rem 1.1rem;
}

/* ============================================ */
/* OVERLAY + DRAWER                             */
/* ============================================ */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 90vw); background: var(--surface); z-index: 400; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), background 0.4s; }
.drawer.open { transform: translateX(0); }
.drawer__header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.drawer__title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; }
.drawer__close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--muted); border-radius: 8px; transition: background 0.2s; }
.drawer__close:hover { background: rgba(255,255,255,0.06); }
.drawer__items { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.drawer-empty { text-align: center; color: var(--muted); padding: 3rem 0; font-size: 0.9rem; }
.drawer-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.drawer-item:last-child { border-bottom: none; }
.drawer-item__name { font-weight: 500; font-size: 0.9rem; }
.drawer-item__qty { color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.drawer-item__detail { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.drawer-item__price { font-family: var(--font-b); font-weight: 600; color: var(--text); font-size: 0.9rem; white-space: nowrap; }
.drawer-item__remove { color: var(--muted); font-size: 0.85rem; padding: 4px; border-radius: 6px; transition: color 0.2s, background 0.2s; flex-shrink: 0; }
.drawer-item__remove:hover { color: #E53935; background: rgba(255,255,255,0.06); }
.drawer__footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.drawer__btn { width: 100%; padding: 0.85rem; background: var(--btn-gradient); color: #fff; font-family: var(--font-b); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 50px; transition: opacity 0.2s; }
.drawer__btn:hover { opacity: 0.9; }
.drawer__envio { font-size: 0.8rem; color: var(--muted); padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.drawer__envio strong { color: var(--accent); }

/* ============================================ */
/* TOAST                                        */
/* ============================================ */
.toast { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85); background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 0.75rem 1.25rem; border-radius: 12px; font-size: 0.85rem; font-weight: 500; z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; text-align: center; max-width: 90vw; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.toast span { font-weight: 700; color: var(--accent); }

/* ============================================ */
/* FABs                                         */
/* ============================================ */
/* Grupo de utilidades (tema + admin) abajo-izquierda, apilados */
.theme-fab { position: fixed; bottom: 1.25rem; left: 1.25rem; width: 44px; height: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 100; cursor: pointer; transition: transform 0.2s, border-color 0.3s, background 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.theme-fab:hover { transform: scale(1.1); border-color: var(--accent); }
.theme-fab svg { width: 18px; height: 18px; stroke: var(--accent); }
.admin-fab {
  position: fixed; bottom: calc(1.25rem + 56px); left: 1.25rem; z-index: 100;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 600;
  color: var(--muted); border-radius: 50px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, border-color 0.3s, color 0.3s;
}
.admin-fab:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--text); }
.admin-fab svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

/* ============================================ */
/* CONTACT FAB (CTA a WhatsApp del dev)         */
/* ============================================ */
.contact-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 160;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, #25D366, #1EBE5A);
  color: #fff; font-family: var(--font-b); font-size: 0.88rem; font-weight: 700;
  border-radius: 50px; box-shadow: 0 8px 28px rgba(37,211,102,0.35), 0 6px 24px rgba(0,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(37,211,102,0.45), 0 10px 30px rgba(0,0,0,0.55); }
.contact-fab svg { width: 18px; height: 18px; stroke: #fff; flex-shrink: 0; }
.contact-fab span { white-space: nowrap; }

/* ============================================ */
/* CLOSED NOTICE                                */
/* ============================================ */
.closed-notice { display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0; z-index: 160; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.closed-notice.visible { display: flex; }
.closed-notice__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.closed-notice__title { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text); margin-bottom: 0.5rem; }
.closed-notice__hours { font-size: 1rem; color: var(--accent); font-weight: 500; margin-bottom: 0.5rem; }
.closed-notice__sub { font-size: 0.85rem; color: var(--muted); max-width: 300px; margin: 0 auto; }

/* ============================================ */
/* THEME PANEL                                  */
/* ============================================ */
.theme-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.theme-overlay.open { opacity: 1; pointer-events: auto; }
.theme-panel { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); border-top: 1px solid var(--border); border-radius: 20px 20px 0 0; padding: 1.5rem 1.25rem 2rem; z-index: 950; transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), background 0.4s; }
.theme-panel.open { transform: translateY(0); }
.theme-panel__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.theme-panel__title { font-family: var(--font-d); font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; }
.theme-panel__close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--muted); border-radius: 8px; transition: background 0.2s; }
.theme-panel__close:hover { background: rgba(255,255,255,0.06); }
.theme-panel__note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; font-style: italic; }
.theme-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.theme-option { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; padding: 0.6rem 0.2rem; border-radius: 12px; border: 2px solid transparent; transition: border-color 0.2s, background 0.2s; }
.theme-option:hover { background: rgba(255,255,255,0.04); }
.theme-option.active { border-color: var(--accent); background: rgba(255,255,255,0.04); }
.theme-swatch { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; }
.theme-name { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.05em; color: var(--muted); }
.theme-option.active .theme-name { color: var(--text); }

/* ============================================ */
/* BADGES                                       */
/* ============================================ */
.badge { display: inline-block; font-family: var(--font-b); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.4rem; vertical-align: middle; }
.badge--popular { background: rgba(255,140,66,0.15); color: var(--orange); }
.badge--new { background: rgba(37,211,102,0.15); color: var(--accent); }
.badge--spicy { background: rgba(229,57,53,0.15); color: #E53935; }
.badge--veg { background: rgba(37,211,102,0.15); color: var(--accent); }
.badge--gf { background: rgba(255,213,79,0.15); color: var(--orange); }
.badge--soldout { background: rgba(229,57,53,0.2); color: #E53935; }
.agotado-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.75); display: flex; align-items: center; justify-content: center; z-index: 3; border-radius: inherit; }
.agotado-label { font-family: var(--font-b); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #E53935; background: rgba(10,10,10,0.8); padding: 0.4rem 1rem; border-radius: 6px; border: 1px solid #E53935; }

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer { margin-top: auto; background: var(--footer-bg); border-top: 1px solid var(--border); padding: 1rem 1.25rem; text-align: center; font-size: 0.8rem; color: var(--muted); transition: background 0.4s; }
.footer__info { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.5rem; }
.footer__ig { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); opacity: 0.8; transition: opacity 0.2s; }
.footer__ig:hover { opacity: 1; }
.footer__demo { font-size: 0.7rem; color: rgba(232,228,222,0.3); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); letter-spacing: 0.05em; }
.footer__demo strong { color: var(--accent); font-family: var(--font-d); }
.footer__demo a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer__demo a:hover { color: var(--text); }

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 700px) {
  .grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero { padding: 3rem 1rem 2rem; }
  .section { padding: 1.5rem 1rem 3rem; }
  .features__grid { grid-template-columns: 1fr; }
  .contact-fab {
    left: 50%; right: auto; transform: translateX(-50%);
    bottom: 1rem; justify-content: center;
  }
  .contact-fab:hover { transform: translateX(-50%) translateY(-2px); }
  .theme-fab { bottom: 4.5rem; }
  .admin-fab { bottom: calc(4.5rem + 56px); }
  .demo-notice { padding: 1.25rem 1.25rem; }
  .demo-notice__title { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .header__inner { padding: 0 0.75rem; height: 50px; }
  .header__logo { font-size: 1.25rem; }
  .hero__title { font-size: 1.8rem; }
  .theme-options { gap: 0.3rem; }
  .theme-swatch { width: 26px; height: 26px; }
  .final-cta__actions { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}