/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #0d0800;
  --bg-card:      #1a1105;
  --bg-card-h:    #221a09;
  --accent:       #e07b00;
  --accent-light: #f5a030;
  --gold:         #f0b429;
  --text:         #f5ead8;
  --text-muted:   #9a8060;
  --border:       #2e1f0a;
  --header-h:     72px;
  --tabs-h:       52px;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(0,0,0,.5);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  background-image: url('/img/burger-pattern.svg');
  background-repeat: repeat;
  background-size: 260px 260px;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Cubre el patrón completamente — el gradiente va de sólido a sólido */
  background: linear-gradient(180deg, #0d0800 60%, #0d080000 100%);
  background-color: #0d0800;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-wrap { flex-shrink: 0; }
.site-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--border), 0 4px 16px rgba(224,123,0,.35);
}
.site-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--text) 0%, var(--gold) 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ── BANNER PROMOS ──────────────────────────────────────── */
.promo-banner {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.promo-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}

.promo-item {
  flex: 0 0 100%;
  position: relative;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: #1a0f00;
  display: flex;
  align-items: flex-end;
}

.promo-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.1) 0%,
    rgba(0,0,0,.65) 100%
  );
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  width: 100%;
}

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 2px 8px; border-radius: 20px;
  margin-bottom: 5px;
}

.promo-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.promo-desc {
  font-size: 13px; color: rgba(255,255,255,.8);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dots de navegación */
.promo-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 6px;
  background: var(--bg-card);
}

.promo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.promo-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Ocultar dots si solo hay 1 promo */
.promo-dots:empty { display: none; }

/* ── CATEGORY TABS ──────────────────────────────────────── */
.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--tabs-h);
}
.tabs-track {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 0 16px;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs-track::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.tab-btn:hover {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--accent);
}
.tab-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

/* ── MAIN / SECTIONS ────────────────────────────────────── */
.menu-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 120px;
}

.cat-section { margin-bottom: 52px; }

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}

/* ── GRID ───────────────────────────────────────────────── */
.platillos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) {
  .platillos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .platillos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CARD ───────────────────────────────────────────────── */
.platillo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow);
}
.platillo-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(224,123,0,.2);
}

/* media */
.card-media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.platillo-card:hover .card-img { transform: scale(1.04); }

.card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f1508 0%, #2a1c0a 50%, #1a1005 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-icon {
  width: 52px;
  height: 52px;
  opacity: .25;
  color: var(--gold);
}

/* body */
.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.card-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
.card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: -.3px;
}
.card-price--consult {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0;
}

/* ── FADE-IN ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── LOADING ────────────────────────────────────────────── */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 80px 0;
}
.loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: .2s; }
.loading-dot:nth-child(3) { animation-delay: .4s; }
@keyframes pulse {
  0%, 100% { transform: scale(.6); opacity: .4; }
  50%       { transform: scale(1);  opacity: 1; }
}

/* ── ERROR ──────────────────────────────────────────────── */
.menu-error {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 15px;
}
.menu-error strong { display: block; color: var(--text); font-size: 18px; margin-bottom: 8px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 20px 16px 40px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-horario { font-size: 13px; color: var(--text); }
.footer-red {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color .15s;
}
.footer-red:hover { color: var(--accent); }
.footer-copy { font-size: 11px; }

/* ── CARD FOOTER (precio + agregar) ────────────────────── */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.btn-add {
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-add:hover  { background: #c96e00; }
.btn-add:active { transform: scale(.95); }

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.qty-btn:hover  { border-color: var(--accent); background: var(--bg-card-h); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 18px; text-align: center; color: var(--gold); }

/* ── CART FAB ───────────────────────────────────────────── */
.cart-fab {
  position: fixed;
  bottom: 24px;
  left: 16px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(224,123,0,.45);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  position: fixed;
}
.cart-fab svg { width: 22px; height: 22px; }
.cart-fab:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,0,.5); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold);
  color: #0d0800;
  font-size: 11px; font-weight: 800;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
}

/* ── CART OVERLAY ───────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── CART DRAWER ────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 301;
  background: #1a1105;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  max-height: 88svh;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
  overflow: hidden;
}
.cart-drawer.open { transform: translateY(0); }

.cart-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin: 12px auto 0;
  flex-shrink: 0;
}
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.cart-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.cart-close:hover { border-color: var(--accent); color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 8px 0; }

/* Ítem del carrito */
.cart-item {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.ci-row {
  display: flex; align-items: center; gap: 10px;
}
.ci-name { flex: 1; font-size: 14px; font-weight: 600; line-height: 1.3; }
.ci-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ci-qty { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; color: var(--gold); }
.ci-price {
  font-size: 13px; font-weight: 700; color: var(--gold);
  min-width: 80px; text-align: right; flex-shrink: 0;
}
.ci-price.confirm { color: var(--text-muted); font-style: italic; font-weight: 400; font-size: 12px; }
.ci-note {
  margin-top: 8px;
  width: 100%;
  background: #0d0800;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 10px;
  outline: none;
  transition: border-color .15s;
}
.ci-note:focus { border-color: var(--accent); color: var(--text); }
.ci-note::placeholder { color: var(--text-muted); opacity: .6; }

/* Carrito vacío */
.cart-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.cart-empty-icon { font-size: 40px; display: block; margin-bottom: 10px; opacity: .4; }

/* Campo de nombre */
.cart-name-wrap {
  padding: 14px 20px 0;
  border-top: 1px solid var(--border);
  background: #1a1105;
  flex-shrink: 0;
}
.cart-name-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 6px;
}
.cart-name-required {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--accent); font-size: 11px;
}
.cart-name-input {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; color: var(--text); font-size: 15px;
  outline: none; transition: border-color .2s;
}
.cart-name-input:focus { border-color: var(--accent); }
.cart-name-input.error { border-color: #e05555; }

/* Footer del carrito */
.cart-foot {
  padding: 16px 20px 24px;
  flex-shrink: 0;
  background: #1a1105;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px; font-weight: 600; margin-bottom: 14px;
}
.cart-total-amount { font-size: 22px; font-weight: 800; color: var(--gold); }
.cart-total-confirm { font-size: 12px; color: var(--text-muted); display: block; text-align: right; margin-top: 2px; }

.btn-send-wa {
  width: 100%; padding: 14px;
  border: none; border-radius: 12px; cursor: pointer;
  background: #25d366; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: opacity .2s, transform .15s;
}
.btn-send-wa:hover  { opacity: .92; transform: translateY(-1px); }
.btn-send-wa:active { transform: scale(.98); }
.btn-send-wa:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* ── WHATSAPP FAB ───────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 400px) { .wa-label { display: none; } }

/* ═══════════════════════════════════════════════════════════
   HOJA DE VARIANTES
═══════════════════════════════════════════════════════════ */

/* Overlay */
.vs-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.vs-overlay.open { opacity: 1; pointer-events: auto; }

/* Sheet */
.vs-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 401;
  max-height: 90svh;
  background: #1a1105;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,1,.23,1);
}
.vs-sheet.open { transform: translateY(0); }

/* Asa */
.vs-handle {
  width: 40px; height: 4px;
  background: var(--border); border-radius: 999px;
  margin: 12px auto 0; flex-shrink: 0;
}

/* Encabezado */
.vs-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.vs-head-media { flex-shrink: 0; }
.vs-img {
  width: 60px; height: 60px;
  border-radius: 10px; object-fit: cover;
}
.vs-img-placeholder {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: var(--bg-card-h);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.vs-img-placeholder .placeholder-icon { width: 32px; height: 32px; opacity: .35; }
.vs-head-info { flex: 1; min-width: 0; }
.vs-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vs-precio-live {
  font-size: 17px; font-weight: 700;
  color: var(--text-muted);
  margin-top: 3px;
  transition: color .2s;
}
.vs-precio--complete { color: var(--gold); }
.vs-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; cursor: pointer; padding: 8px; flex-shrink: 0;
  transition: color .15s;
}
.vs-close:hover { color: var(--text); }

/* Cuerpo scrollable */
.vs-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

/* Grupos de opciones */
.vs-group { padding: 16px 16px 0; }
.vs-group-title {
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 10px;
}
.vs-required { color: var(--accent); font-style: normal; }
.vs-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.vs-options { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }

.vs-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.vs-option.selected,
.vs-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(224,123,0,.09);
}
.vs-option input {
  accent-color: var(--accent);
  width: 17px; height: 17px; flex-shrink: 0;
  cursor: pointer;
}
.vs-option-label { flex: 1; font-size: 14px; line-height: 1.3; }
.vs-extra-price { color: var(--text-muted); font-size: 12px; margin-left: 4px; }

/* Pie de la hoja */
.vs-foot {
  flex-shrink: 0;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border);
  background: #1a1105;
  display: flex; gap: 10px; align-items: center;
}
.vs-qty-row {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.vs-qty-btn {
  background: none; border: none; color: var(--text);
  font-size: 20px; width: 40px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.vs-qty-btn:hover { background: var(--bg-card-h); }
.vs-qty-num {
  font-size: 15px; font-weight: 700; min-width: 28px;
  text-align: center; color: var(--gold);
}
.vs-add-btn {
  flex: 1; height: 44px;
  border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #0d0800; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.vs-add-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.vs-add-btn:disabled {
  background: var(--bg-card-h);
  color: var(--text-muted); cursor: not-allowed;
}

/* Badge de cantidad sobre el botón "+ Agregar" en la card */
.btn-add { position: relative; }
.add-badge {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--gold); color: #0d0800;
  font-size: 10px; font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--bg-card);
  pointer-events: none;
}

/* Detalle de variante en el carrito */
.ci-info { flex: 1; min-width: 0; }
.ci-seleccion  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.ci-extras-txt { font-size: 11px; color: var(--accent-light); margin-top: 1px; }

/* Toast público */
.menu-toast {
  position: fixed;
  bottom: 96px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #2e1f0a; border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 500; white-space: nowrap;
}
.menu-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Desktop: hoja centrada y ancho limitado */
@media (min-width: 600px) {
  .vs-sheet {
    left: 50%; right: auto;
    width: 480px;
    transform: translateX(-50%) translateY(100%);
    border-radius: 20px 20px 0 0;
  }
  .vs-sheet.open { transform: translateX(-50%) translateY(0); }
}
