body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}

/* --- HEADER STYLES --- */
.header {
    background-color: #1E3A8A; /* CAMBIO CLAVE: Nuevo fondo azul oscuro */
    color: white; /* Color de texto blanco para contraste */
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* REGLA PARA EL LOGO */
.header-logo {
    max-width: 150px; 
    height: auto;
    margin-bottom: 15px; 
    border-radius: 50%; 
    border: 0px solid #1E3A8A; /* Borde naranja festivo para destacar sobre azul */
}
/* FIN REGLA PARA EL LOGO */

.header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.header p {
    margin: 5px 0 0;
}

.desde {
    font-size: 0.9em;
    font-style: italic;
    font-weight: bold;
}

/* --- PROMO CARDS --- */
.section-promos {
    text-align: center;
    padding: 30px 0;
}

.promo-card {
    background-color: #fff;
    border: 2px solid #FF5722; /* Naranja festivo */
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.promo-card h3 {
    color: #FF5722;
    margin-top: 0;
}

.promo-card .price {
    font-size: 1.8em;
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}

.promo-card ul {
    text-align: left;
    list-style-type: none;
    padding-left: 0;
}

.promo-card li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.dates {
    font-size: 1.1em;
    font-weight: bold;
    color: #CC0000; /* Rojo navideño */
    margin-top: 30px;
}

/* --- FORMULARIO DE PEDIDO (INTERACTIVO) --- */
.section-menu h2 {
    text-align: center;
    color: #4CAF50;
    margin-top: 30px;
}

.product-group {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.group-title {
    color: #CC0000;
    margin-bottom: 15px;
    text-align: left;
    padding: 10px 0 5px;
    border-bottom: 2px solid #CC0000;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.product-item:last-child {
    border-bottom: none;
}

.product-item label {
    flex-grow: 1;
    margin-right: 20px;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.total-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #e8f5e9; /* Fondo suave para destacar el total */
    border-radius: 10px;
    border: 2px solid #4CAF50;
}

#totalPrice {
    color: #4CAF50;
    font-size: 1.8em;
    font-weight: bold;
}

.nota {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-top: 15px;
}


/* --- WHATSAPP BUTTONS --- */
.whatsapp-btn, .whatsapp-btn-footer {
    display: inline-block;
    background-color: #25D366; /* Verde de WhatsApp */
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn-footer {
    font-size: 1.2em;
}

.whatsapp-btn:hover, .whatsapp-btn-footer:hover {
    background-color: #128C7E;
}

.whatsapp-btn i, .whatsapp-btn-footer i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* --- FOOTER --- */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
}