body {
  background: transparent;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  color: #fff !important;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px;
  position: relative;
  line-height: 1.2;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #8C0A0C;
  border-radius: 1px;
}

p {
  color: #666;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
  padding: 0 20px;
}

/* Centrar el texto en desktop */
@media (min-width: 768px) {
  p {
    text-align: center;
    margin-left: 0;
  }
}

/* Nuevo layout con familias desplegables */
.menu-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: transparent;
  padding-bottom: 250px; /* Espacio extra para evitar superposición con contacto */
  margin-bottom: 150px; /* Margen adicional para asegurar espacio */
}

/* Contenedor unificado para todas las categorías */
#familias-container-unificado {
  margin-bottom: 0;
  min-height: 0;
  padding-bottom: 0;
  overflow: visible !important;
}

/* Cuando el contenedor unificado tiene contenido, agregar espacio */
#familias-container-unificado:not(:empty) {
  margin-bottom: 400px !important; /* Espacio extra para evitar superposición con contacto */
  padding-bottom: 150px !important; /* Padding adicional */
}

/* Barras de navegación principales */
.carta-header {
  background: #8C0A0C;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 12px; /* Espacio reducido entre botones principales */
}

.carta-header:hover {
  background: #A01214;
}

.carta-header.active {
  background: #A01214;
  box-shadow: 0 4px 8px rgba(140, 10, 12, 0.3);
}

.carta-header span {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Estilos para promociones */
.promocion-item {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  position: relative;
  overflow: visible;
  min-width: 280px;
  max-width: 400px;
  flex-shrink: 0;
}

.promocion-item:hover {
  transform: translateY(-4px);
}

.promocion-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

.promocion-item h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

.promocion-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

.promocion-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #A01214;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Estilos para el botón de promociones */
#promociones-btn-frontend:hover {
  background: #8C0A0C;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(160, 18, 20, 0.4);
}

/* Scroll horizontal para promociones */
#promociones-container::-webkit-scrollbar {
  height: 8px;
}

#promociones-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#promociones-container::-webkit-scrollbar-thumb {
  background: #A01214;
  border-radius: 4px;
}

#promociones-container::-webkit-scrollbar-thumb:hover {
  background: #8C0A0C;
}

/* Responsive para promociones */
@media (max-width: 768px) {
  .promocion-item {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .promocion-item h4 {
    font-size: 16px;
  }
  
  .promocion-item p {
    font-size: 12px;
  }
  
  #promociones-modal-frontend > div {
    width: 95%;
    margin: 5% auto;
    padding: 15px;
  }
  
  #promociones-container {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .promocion-item {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .promocion-item h4 {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .promocion-item p {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .promocion-badge {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 10px;
  }
  
  #promociones-modal-frontend > div {
    width: 98%;
    margin: 2% auto;
    padding: 10px;
  }
  
  #promociones-container {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
}

.familia-item {
  border-bottom: 1px solid #8C0A0C;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: visible !important; /* Permitir que todo el contenido se muestre */
  min-height: auto !important;
}

.familia-item.expanded {
  overflow: visible !important; /* Asegurar que cuando está expandido no corte nada */
}

.familia-item:last-child {
  margin-bottom: 20px; /* Espacio reducido después de la última familia */
  padding-bottom: 15px; /* Padding reducido */
}

/* Espacio para la última familia en el contenedor unificado */
#familias-container-unificado .familia-item:last-child {
  margin-bottom: 100px !important;
  padding-bottom: 50px !important;
}

.familia-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 8px;
}

.familia-header:hover {
  background: #f8f9fa;
}

.familia-nombre {
  color: #8C0A0C;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  background: #8C0A0C;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.dropdown-icon::after {
  content: '▼';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.familia-item.expanded .dropdown-icon {
  transform: rotate(180deg);
}

.productos-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  width: 100%;
}

.familia-item.expanded .productos-container {
  max-height: 10000px !important; /* Valor muy alto para mostrar todos los productos */
  overflow: visible !important;
  padding-bottom: 40px; /* Espacio extra al final del contenedor de productos */
  margin-bottom: 30px; /* Margen adicional */
  display: block !important; /* Asegurar que se muestre */
}

/* Espacio extra para el contenedor de productos expandido */
#familias-container-unificado .familia-item.expanded .productos-container {
  max-height: 15000px !important; /* Valor muy alto para mostrar todos los productos */
  overflow: visible !important;
  padding-bottom: 80px !important; /* Espacio adicional */
  margin-bottom: 60px !important; /* Margen adicional */
  display: block !important; /* Asegurar que se muestre */
}

.producto-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  min-height: auto;
  overflow: visible !important; /* Asegurar que no se corte ningún producto */
  position: relative;
  z-index: 1;
}

.producto-item:last-child {
  border-bottom: none;
  margin-bottom: 30px; /* Espacio extra después del último producto */
  padding-bottom: 20px; /* Padding adicional */
}

/* Espacio extra para el último producto en el contenedor unificado */
#familias-container-unificado .producto-item:last-child {
  margin-bottom: 50px !important;
  padding-bottom: 30px !important;
}

.producto-info {
  flex: 1;
  margin-right: 15px;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.producto-nombre {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.producto-descripcion {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.producto-precio {
  color: #8C0A0C;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 15px;
}

.subfamilia-section {
  margin-bottom: 20px;
}

.subfamilia-section h4 {
  color: #8C0A0C;
  font-size: 16px;
  margin: 15px 20px 10px 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Estilos para títulos de subfamilias */
.subfamilia-titulo {
  color: #8C0A0C;
  font-size: 18px;
  margin: 15px 0 10px 0;
  padding-left: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ocultar el grid de categorías original */
.category-grid {
  display: none;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .menu-container {
    padding: 15px;
    padding-bottom: 300px; /* Más espacio en móviles para evitar superposición */
    margin-bottom: 200px; /* Margen adicional en móviles */
  }

  /* Contenedor unificado de familias en móviles */
  #familias-container-unificado:not(:empty) {
    margin-bottom: 500px !important; /* Espacio en móviles */
    padding-bottom: 200px !important; /* Padding adicional en móviles */
  }

  /* Espacio reducido entre botones en móviles */
  .carta-header {
    font-size: 16px;
    padding: 12px 15px;
    margin-bottom: 10px; /* Espacio aún más reducido en móviles */
  }

  .familia-header {
    padding: 15px;
  }

  .familia-nombre {
    font-size: 16px;
  }

  .producto-item {
    padding: 12px 15px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .producto-info {
    min-width: 0;
    flex: 1;
  }

  .producto-nombre {
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .producto-descripcion {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .producto-precio {
    font-size: 15px;
    flex-shrink: 0;
  }
}

.products {
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
  color: #fff;
  padding: clamp(20px, 5vw, 30px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8C0A0C, #A01214, #8C0A0C);
  border-radius: 20px 20px 0 0;
}

.product-item {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.product-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.name-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: clamp(1rem, 3.5vw, 1.25em);
  font-weight: bold;
  gap: clamp(8px, 2vw, 10px);
}

.price-section {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-name {
  color: #fff;
  flex: 1 1 0;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
  line-height: 1.3;
}

.product-price {
  color: #fff;
  font-size: clamp(0.9em, 3vw, 1em);
  white-space: nowrap;
  margin-left: clamp(8px, 2vw, 10px);
  flex-shrink: 0;
  text-align: right;
  line-height: 1.3;
}

.product-desc {
  margin-top: clamp(4px, 1.5vw, 6px);
  color: #e0e0e0;
  font-size: clamp(0.85em, 2.5vw, 0.95em);
  font-weight: normal;
  text-align: left;
  word-break: break-word;
  line-height: 1.4;
}

/* Estilos para las barras de características de cócteles */
.cocktail-characteristics {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 60px;
}

.characteristic-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6em;
  color: #ccc;
}

.characteristic-label {
  min-width: 35px;
  text-align: left;
  font-weight: 400;
}

.bar-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8C0A0C, #A01214);
  border-radius: 3px;
  transition: width 0.3s ease;
}

#cerrar-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}

.cerrar-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 600px) {
  .product-item .name-line {
    flex-direction: row;
    align-items: flex-start;
  }

  .product-item .product-info {
    flex: 1;
    margin-right: 10px;
    max-width: calc(100% - 70px);
  }

  .product-item .name-line span {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .products {
    max-width: 95vw;
    width: 95vw;
    left: 50%;
    right: 0;
    margin-left: -47.5vw;
    border-radius: 12px;
    padding: 16px 12px;
  }

  .promo-container {
    max-width: 95vw;
    padding: 20px 15px;
  }

  .name-line {
    font-size: 0.95em;
    flex-direction: row;
    gap: 8px;
  }

  .product-name, .product-price {
    font-size: 0.95em;
    word-break: break-word;
  }

  .promo-day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .promo-day-name {
    font-size: 1.8rem;
  }

  .promo-subtitle {
    font-size: 1.1rem;
  }

  .promo-item-name, .promo-item-price {
    font-size: 0.9rem;
  }

  .cerrar-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
  }
}

/* Pantallas muy pequeñas (iPhone SE, etc.) */
@media (max-width: 375px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .products {
    padding: 12px 10px;
  }

  .name-line {
    font-size: 0.9em;
  }

  .product-name, .product-price {
    font-size: 0.9em;
  }

  .product-desc {
    font-size: 0.8em;
  }

  .promo-container {
    padding: 15px 12px;
  }

  .promo-title h2 {
    font-size: 1.6rem;
  }

  .promo-day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .promo-day-name {
    font-size: 1.5rem;
  }

  .promo-subtitle {
    font-size: 1rem;
  }

  .promo-item-name, .promo-item-price {
    font-size: 0.85rem;
  }

  /* Responsive para barras de características */
  .cocktail-characteristics {
    min-width: 50px;
  }

  .characteristic-bar {
    font-size: 0.55em;
  }

  .characteristic-label {
    min-width: 30px;
  }

  .bar-container {
    height: 5px;
  }
}

.cepas {
  color: #8C0A0C;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 0.85em;
  text-align: left;
  font-style: italic;
  letter-spacing: 0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Estilos especiales para Promos del Día - Diseño como imagen */
.promo-container {
  background: #1a1a1a;
  border-radius: 20px;
  padding: clamp(20px, 5vw, 30px);
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.promo-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.promo-title h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.promo-title .bar-text {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  color: #cccccc;
  margin-top: 5px;
  letter-spacing: 2px;
  position: relative;
  line-height: 1.3;
}

.promo-title .bar-text::before,
.promo-title .bar-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #cccccc;
}

.promo-title .bar-text::before {
  left: -40px;
}

.promo-title .bar-text::after {
  right: -40px;
}

.promo-day {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  position: relative;
}

.promo-day:last-child {
  border-bottom: none;
}

.promo-day-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.promo-day-name {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
  flex: 1;
}

.promo-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.3;
}

.promo-subtitle.lunes { color: #00ff88; }
.promo-subtitle.martes { color: #ff6b35; }
.promo-subtitle.miercoles { color: #ffd700; }
.promo-subtitle.jueves { color: #ff8c00; }
.promo-subtitle.viernes { color: #00ff88; }
.promo-subtitle.sabado { color: #ff6b35; }
.promo-subtitle.domingo { color: #8C0A0C; }

.promo-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.promo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.promo-item:last-child {
  border-bottom: none;
}

.promo-item-name {
  color: #ffffff;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
  font-weight: 400;
  text-align: left;
  flex: 1;
  line-height: 1.3;
}

.promo-item-price {
  color: #ffffff;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: bold;
  text-align: right;
  min-width: clamp(60px, 15vw, 80px);
  line-height: 1.3;
}

.promo-time {
  text-align: left;
  color: #000;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  margin-top: 20px;
  font-style: italic;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  line-height: 1.4;
  padding-left: 2%;
  padding-bottom: 4%;
  font-weight: 700;
}

/* ========== ESTILOS PARA MENÚ DEL DÍA ========== */

#menu-dia-modal-frontend {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#menu-dia-modal-frontend #menu-dia-content {
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
  border-radius: 12px;
  position: relative;
}

/* Forzar estilos del menú del día con !important */
#menu-dia-modal-frontend #menu-dia-content h1 {
  color: #1a1a1a !important;
  text-align: center !important;
  font-size: 40px !important;
  font-weight: bold !important;
}

#menu-dia-modal-frontend #menu-dia-content h2 {
  text-align: center !important;
}

#menu-dia-modal-frontend #menu-dia-content h3 {
  text-align: center !important;
  background: #f5f5f5 !important;
  display: inline-block !important;
}

#menu-dia-modal-frontend #menu-dia-content p {
  text-align: center !important;
}

#menu-dia-modal-frontend #menu-dia-content > div > div {
  text-align: center !important;
}

#menu-dia-modal-frontend #menu-dia-content > div {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#menu-dia-modal-frontend #cerrar-menu-dia-frontend {
  transition: all 0.3s ease;
}

#menu-dia-modal-frontend #cerrar-menu-dia-frontend:hover {
  background: rgba(0,0,0,0.7) !important;
  transform: scale(1.1);
}

/* Responsive para Menú del Día */
@media (max-width: 768px) {
  #menu-dia-modal-frontend > div {
    width: 95% !important;
    margin: 5% auto !important;
    max-height: 85vh !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content {
    padding: 30px 20px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h1 {
    font-size: 32px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h2 {
    font-size: 20px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h3 {
    font-size: 16px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content p {
    font-size: 14px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content p:last-child {
    font-size: 28px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h1 {
    font-size: 28px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h2 {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  #menu-dia-modal-frontend > div {
    width: 98% !important;
    margin: 2% auto !important;
    border-radius: 8px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content {
    padding: 25px 15px !important;
    min-height: 300px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h1 {
    font-size: 28px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h2 {
    font-size: 18px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content h3 {
    font-size: 14px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content p {
    font-size: 13px !important;
  }
  
  #menu-dia-modal-frontend #menu-dia-content p:last-child {
    font-size: 24px !important;
  }
  
  #menu-dia-modal-frontend #cerrar-menu-dia-frontend {
    top: 10px !important;
    right: 10px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }
}

/* Responsive para botones de Promociones y Menú del Día */
@media (max-width: 768px) {
  #botones-menu-section {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  #botones-menu-section button,
  #promociones-section button {
    width: 100% !important;
    max-width: 300px !important;
    padding: 12px 25px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  #botones-menu-section button,
  #promociones-section button {
    padding: 10px 20px !important;
    font-size: 13px !important;
  }
}

