﻿.menu-dia-page { padding: 2rem 1.5rem 4rem; background: var(--t-bg); }
.menu-dia-page-inner { max-width: 760px; margin: 0 auto; }

.menu-hoy-header { margin-bottom: 2rem; }
/* 2026-08-21: cabecera con precio en insignia circular, mockup validado
   (Gemini) comparado y aplicado -- antes el precio vivía en una banda
   azul aparte, separada del título. */
.menu-hoy-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; text-align: left; }
.menu-hoy-precio-badge {
  flex: none; width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(135deg, #e8935a, #c9683a);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 6px 18px -6px rgba(201,104,58,.55);
}
.menu-hoy-precio-badge .precio-v { font-size: 1.35rem; font-weight: 900; line-height: 1; }
.menu-hoy-precio-badge .precio-l { font-size: .56rem; line-height: 1.2; margin-top: .15rem; padding: 0 .3rem; opacity: .92; }
@media (max-width: 600px) {
  .menu-hoy-precio-badge { width: 74px; height: 74px; }
  .menu-hoy-precio-badge .precio-v { font-size: 1.05rem; }
  .menu-hoy-precio-badge .precio-l { font-size: .5rem; }
}

/* 2026-08-21: los 4 botones con texto (Compartir/Imprimir/Ver carta/
   Editar) se minimizan a iconos junto al precio -- "bien colocados" en
   la propia cabecera en vez de una barra aparte debajo de las columnas. */
.menu-hoy-header-derecha { display: flex; flex-direction: column; align-items: center; gap: .6rem; flex: none; }
.menu-hoy-iconos { display: flex; gap: .4rem; }
.menu-hoy-icono-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--t-line);
  background: var(--t-panel); color: var(--t-muted); cursor: pointer; font-size: .95rem;
  text-decoration: none; transition: border-color .15s, color .15s, background .15s;
}
.menu-hoy-icono-btn:hover { border-color: var(--t-accent); color: var(--t-accent); }
.menu-hoy-icono-btn--wa { background: #25d366; border-color: #25d366; color: #fff; }
.menu-hoy-icono-btn--wa:hover { background: #1fb956; border-color: #1fb956; color: #fff; }
.menu-hoy-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--t-accent);
  margin-bottom: .5rem;
}
.menu-hoy-titulo {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin: .2rem 0 .4rem;
  color: var(--t-text);
}
.menu-hoy-fecha {
  color: var(--t-muted);
  font-size: .95rem;
  text-transform: capitalize;
}

/* Main card */
.menu-hoy-card {
  background: var(--t-panel);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  overflow: hidden;
}

.menu-hoy-precio-wrap {
  /* 2026-08-26 (Claude, mismo patrón de bug ya encontrado en base.css
     .nsb-head -- azul marino fijo de Aliquindoi, ignoraba el tema real
     en los otros 6 negocios. Derivado de var(--t-navy) igual que allí. */
  background: linear-gradient(135deg, color-mix(in srgb, var(--t-accent, #0057A8) 55%, #060a0c) 0%, var(--t-accent, #0057A8) 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
}
.menu-hoy-precio {
  display: block;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #f5c87a;
  letter-spacing: -.02em;
}
.menu-hoy-incluye { font-size: .85rem; opacity: .75; margin-top: .4rem; display: block; }

/* Columnas con cabecera de color (2026-08-21, mockup validado: 3
   columnas -- 1er plato / 2º plato / postre+bebida juntos -- en vez de
   4 tarjetas sueltas). */
.menu-hoy-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--t-line);
  border: 1px solid var(--t-line);
}
.menu-col { background: var(--t-panel); display: flex; flex-direction: column; }
.menu-col-head {
  background: var(--t-accent); color: #fff; text-align: center;
  font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: .5rem .4rem;
}
.menu-col-foto { height: 120px; overflow: hidden; background: var(--t-bg); }
.menu-col-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-col-foto--vacia { display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--t-muted); opacity: .5; }
.menu-col-nombre { padding: .7rem .6rem; text-align: center; font-size: .88rem; font-weight: 700; color: var(--t-text); flex: 1; }

/* 3ª columna: postre + bebida apiladas dentro del mismo hueco */
.menu-col-sub { display: flex; flex-direction: column; flex: 1; }
.menu-col-subitem { flex: 1; display: flex; flex-direction: column; border-bottom: 1px solid var(--t-line); }
.menu-col-subitem:last-child { border-bottom: none; }
.menu-col-foto--sm { height: 68px; }
.menu-col-nombre--sm { padding: .45rem .5rem; font-size: .78rem; }

@media (max-width: 700px) {
  .menu-hoy-columnas { grid-template-columns: 1fr; }
  .menu-col-foto { height: 140px; }
}

.menu-hoy-nota {
  margin: 1rem 1.75rem;
  padding: .75rem 1rem;
  background: #fff9f0;
  border-left: 3px solid var(--t-accent);
  border-radius: 0 8px 8px 0;
  font-size: .88rem;
  color: var(--t-muted);
}

.menu-hoy-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--t-line);
}

/* Empty state */
.menu-hoy-vacio {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--t-panel);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.menu-hoy-vacio-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.menu-hoy-vacio h2 { font-size: 1.4rem; color: var(--t-text); margin: 0 0 .5rem; }
.menu-hoy-vacio p { color: var(--t-muted); margin-bottom: 1.5rem; }

/* Recent menus */
.menu-recientes { margin-top: 3rem; }
.menu-recientes-titulo { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--t-text); }
.menu-recientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.menu-reciente-card {
  background: var(--t-panel);
  border: 1px solid var(--t-line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  position: relative;
}
.menu-reciente-header {
  display: flex; align-items: baseline; gap: .5rem;
  margin-bottom: .6rem; border-bottom: 1px solid var(--t-line); padding-bottom: .5rem;
}
.menu-reciente-fecha {
  font-size: .88rem; font-weight: 700;
  text-transform: capitalize; color: var(--t-text);
}
.menu-reciente-day {
  font-size: .75rem; color: var(--t-muted);
}
.menu-reciente-lista {
  list-style: none;
  margin: 0 0 .75rem;
  padding: 0;
  font-size: .83rem;
  color: var(--t-text);
  line-height: 1.9;
  display: flex; flex-direction: column; gap: .1rem;
}
.menu-reciente-lista li { display: flex; align-items: center; gap: .4rem; }
.mri {
  font-size: .68rem; font-weight: 800; color: var(--t-accent);
  background: rgba(0,87,168,.1); border-radius: 3px;
  padding: .05rem .3rem; min-width: 1.6rem; text-align: center;
}
.menu-reciente-precio {
  font-size: .82rem; font-weight: 700; color: var(--t-accent);
}

/* Print button */
.btn-print-menu {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--t-panel); color: var(--t-text);
  border: 1.5px solid var(--t-line); padding: .7rem 1.4rem;
  border-radius: 8px; font-size: .92rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: border-color .15s;
}
.btn-print-menu:hover { border-color: var(--t-accent); color: var(--t-accent); }

/* Print styles */
@media print {
  .no-print, nav, header.dash-hero, .whatsapp-widget, footer { display: none !important; }
  .menu-hoy-card { box-shadow: none; border: 1px solid #ddd; }
  .menu-hoy-precio-wrap { background: #0d1b2e !important; -webkit-print-color-adjust: exact; }
  /* 2026-08-26 (Claude, mismo bug real ya encontrado y arreglado en
     carta.css/carta_papel.css -- ver AUDITORIA.md iteración 44: esta
     hoja nunca reseteaba `body`, así que Nocturna imprimía esta página
     con fondo casi negro y Cómic con amarillo brillante, igual que
     pasaba en /carta/. Este archivo no tiene el problema de
     `.carta-papel` (no existe aquí), así que con `body` basta. */
  body, .menu-dia-page { background: #fff !important; color: #000 !important; }
}

@media (max-width: 600px) {
  .menu-plato-item { padding: 1rem 1.2rem; }
  .menu-hoy-precio-wrap { padding: 1.5rem 1rem 1rem; }
  .menu-hoy-cta { padding: 1.2rem; }
}
