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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #152847;
  line-height: 1.6;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  min-height: 100vh;
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 12px;
}

/* === HEADER CON LOGO === */
header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
}

.logo {
  width: 220px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 8px;
}

.tagline {
  font-size: 0.95rem;
  color: #152847;
  font-style: italic;
  margin-top: 6px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* === SELECTOR DE IDIOMA: BOTONES DE ANCHO COMPLETO === */
.lang-selector {
  text-align: center;
  margin: 30px 0;
}

.lang-selector h2 {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.flags {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  background: #f0f4f8;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
  width: 100%;
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.flag {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
  border: 1px solid #ddd;
}

.lang-btn span {
  font-size: 1.05rem;
  font-weight: bold;
  color: #152847;
}

/* === BOTONES DE CATEGORÍAS (en inicio.html y home.html) === */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.btn {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
  background: #D2A12A;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(210, 161, 42, 0.3);
}

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

/* === HORARIO DE COCINA === */
.horario {
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background: #152847;
  color: white;
  border-radius: 12px;
  font-size: 0.95rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.horario strong {
  font-weight: bold;
}

/* === BOTÓN DE VOLVER AL INICIO === */
.back-btn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 16px;
  background: #D2A12A;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #b88f26;
}

/* === MENÚS: PLATO + PRECIO EN LÍNEA === */
.menu ul {
  list-style: none;
  padding: 0;
}

.menu ul li {
  margin: 20px 0;
  color: #152847;
}

.plato-precio {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.plato {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #152847;
  flex: 1;
}

.precio {
  font-size: 1.2rem;
  font-weight: bold;
  color: #D2A12A;
  white-space: nowrap;
}

/* === INGREDIENTES === */
.ingredientes {
  font-size: 0.95rem;
  color: #152847;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* === ICONOS DE ALÉRGENOS === */
.allergens {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.allergens img {
  height: 16px;
  opacity: 0.9;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.1));
  vertical-align: middle;
}

/* === FOOTER === */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  padding: 15px 0;
  border-top: 1px dashed #ddd;
}