/* --- ESTILOS GENERALES Y NUEVA PALETA DE COLORES --- */
:root {
    --primary-color: #D97706;
    --dark-color: #262626;
    --light-color: #F7F4F0;
    --text-color: #404040;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

html, body { overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-color); background-color: #fff; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); text-transform: uppercase; }

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

/* --- HEADER Y NAVEGACIÓN --- */
header {
    background: var(--dark-color);
    color: var(--light-color);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 85px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { font-weight: bold; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-color); }
.btn-nav {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.btn-nav:hover { background-color: #B45309; }

/* --- HERO SECTION (CARRUSEL) --- */
#inicio { width: 100%; height: 75vh; overflow: hidden; position: relative; background-image: url('images/fondo.png'); background-size: cover; background-position: center; }
.slider-container { width: 100%; height: 100%; }
.slides { display: flex; width: 100%; height: 100%; transition: transform 0.6s ease-in-out; }
.slide { flex-shrink: 0; width: 100%; height: 100%; background-size: cover; background-position: center; position: relative; display: flex; justify-content: center; align-items: center; color: #fff; text-align: center; }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4); }
.slide-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.slide-content h1 { font-size: 3.5rem; margin-bottom: 10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.slide-content p { font-size: 1.2rem; margin-bottom: 25px; }
.slide-btn { background: var(--primary-color); color: #fff; padding: 12px 35px; border-radius: 50px; font-weight: bold; text-transform: uppercase; transition: all 0.3s; font-family: var(--font-body); }
.slide-btn:hover { background: #B45309; transform: scale(1.05); }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255,255,255,0.5); cursor: pointer; transition: background-color 0.3s; }
.dot.active { background-color: #fff; }

/* --- SECCIÓN MENÚ --- */
#menu { padding: 80px 0; }
#menu-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; }
.filter-btn { font-family: var(--font-body); font-weight: bold; font-size: 1rem; padding: 10px 25px; border: 2px solid #ddd; border-radius: 50px; background-color: #fff; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover { background-color: #eee; border-color: #ccc; }
.filter-btn.active { background-color: var(--dark-color); color: #fff; border-color: var(--dark-color); }
#menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.menu-card { background: var(--light-color); border-radius: 12px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.menu-card img { width: 100%; height: 220px; object-fit: cover; }
.menu-card-content { padding: 20px; }
.menu-card-content h4 { font-size: 1.5rem; margin-bottom: 10px; color: var(--dark-color); }
.description { font-size: 0.9rem; margin-bottom: 15px; min-height: 40px; }
.price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary-color); margin-bottom: 15px; }
.add-to-cart-btn { background: var(--primary-color); color: #fff; border: none; padding: 10px 25px; border-radius: 50px; cursor: pointer; font-weight: bold; text-transform: uppercase; transition: background 0.3s; }
.add-to-cart-btn:hover { background: #B45309; }

/* --- OTRAS SECCIONES --- */
#caracteristicas { background: var(--dark-color); color: var(--light-color); padding: 80px 0; }
#caracteristicas .section-title { color: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.feature-card { background: #fff; color: var(--text-color); padding: 30px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.25); }
.feature-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--dark-color); }
.feature-card p { font-size: 1rem; line-height: 1.7; }

#testimonios { background: #fff; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-card { background: var(--light-color); padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary-color); }

/* --- FOOTER --- */
#footer { background: #171717; color: #a3a3a3; padding: 40px 0 80px 0; text-align: center; }
.social-links { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.social-links svg { width: 24px; height: 24px; fill: #a3a3a3; transition: fill 0.3s; }
.social-links a:hover svg { fill: var(--primary-color); }

/* --- CARRITO FLOTANTE Y MODAL EXISTENTE --- */
#cart-button { position: fixed; bottom: 25px; right: 25px; background-color: var(--primary-color); color: white; width: 60px; height: 60px; border-radius: 50%; border: none; font-size: 1.5rem; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1001; display: flex; justify-content: center; align-items: center; }
#cart-count { font-size: 0.8rem; background: var(--dark-color); border-radius: 50%; padding: 2px 6px; position: absolute; top: 5px; right: 5px; }
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #fff; margin: 15% auto; padding: 30px; border-radius: 8px; max-width: 500px; position: relative; box-shadow: 0 5px 25px rgba(0,0,0,0.3); }
.close-button { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.modal-content h3 { text-align: center; font-size: 1.8rem; margin-bottom: 20px; }
#modal-cart-items { max-height: 300px; overflow-y: auto; margin-bottom: 20px; }
.cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.modal-footer { border-top: 1px solid #eee; padding-top: 20px; }
.order-total { display: flex; justify-content: space-between; font-weight: bold; font-size: 1.3rem; margin-bottom: 20px; }
.btn-full { width: 100%; padding: 12px; border-radius: 50px; font-size: 1rem; }
#checkout-btn:disabled { background-color: #ccc; cursor: not-allowed; }

/* --- BARRA DE NAVEGACIÓN FLOTANTE --- */
#floating-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(110%);
    z-index: 1002;
    background: rgba(26, 17, 7, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    display: flex;
    gap: 4px;
    align-items: center;
    box-shadow: 0 -4px 28px rgba(0,0,0,0.4);
    transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
    border-top: 2px solid rgba(217, 119, 6, 0.5);
}
#floating-nav.show { transform: translateX(-50%) translateY(0); }
.fn-link {
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: bold;
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.fn-link:hover, .fn-link.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    #floating-nav { width: 100%; border-radius: 14px 14px 0 0; justify-content: space-around; padding: 8px 2px; gap: 0; }
    .fn-link { font-size: 0.62rem; padding: 5px 6px; display: flex; flex-direction: column; align-items: center; gap: 2px; border-radius: 8px; }
}

/* --- SECCIÓN CONTACTO WHATSAPP --- */
#contacto-whatsapp { background: var(--light-color); padding: 60px 0; border-top: 1px solid #ddd; }
.whatsapp-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.whatsapp-icon svg { width: 80px; height: 80px; fill: #25D366; }
.whatsapp-text { flex-grow: 1; }
.whatsapp-text .section-title { text-align: left; margin-bottom: 10px; font-size: 2.2rem; }
.whatsapp-text p { font-size: 1.1rem; color: var(--text-color); line-height: 1.6; }
.btn-whatsapp { background-color: #25D366; color: #fff; padding: 15px 30px; border-radius: 50px; font-weight: bold; font-size: 1rem; text-transform: uppercase; transition: background-color 0.3s, transform 0.3s; display: inline-block; white-space: nowrap; }
.btn-whatsapp:hover { background-color: #1DAA51; transform: scale(1.05); }

/* --- MENÚ HAMBURGUESA --- */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #fff; transition: all 0.3s ease-in-out; }


/* ============================================
   MODAL DE PEDIDO RÁPIDO
   ============================================ */
.order-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px;
    align-items: flex-start;
    justify-content: center;
}
.order-modal-overlay.active { display: flex; }
.order-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    margin: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.order-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: rgba(0,0,0,0.08); border: none; border-radius: 50%;
    width: 34px; height: 34px; font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: background 0.2s; color: #555;
}
.order-modal-close:hover { background: rgba(0,0,0,0.15); }

/* Cabecera con producto */
.order-modal-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #3a2a1a 100%);
    padding: 24px 24px 20px;
}
.order-product-preview { display: flex; gap: 16px; align-items: center; }
.order-product-preview img { width: 90px; height: 90px; object-fit: cover; border-radius: 12px; border: 3px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.order-product-info { flex: 1; color: #fff; }
.order-added-badge { display: inline-block; background: #22c55e; color: #fff; font-size: 0.72rem; font-weight: bold; padding: 3px 10px; border-radius: 20px; margin-bottom: 6px; font-family: var(--font-body); letter-spacing: 0.5px; }
.order-product-info h3 { font-size: 1.4rem; margin-bottom: 4px; color: #fff; font-family: var(--font-heading); }
.order-product-info p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.omp-price { font-family: var(--font-heading) !important; font-size: 1.3rem !important; color: var(--primary-color) !important; }

/* Cuerpo del modal */
.order-modal-body { padding: 0 24px 10px; max-height: 60vh; overflow-y: auto; }
.order-modal-body::-webkit-scrollbar { width: 5px; }
.order-modal-body::-webkit-scrollbar-track { background: #f1f1f1; }
.order-modal-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

/* Secciones del formulario */
.order-section { padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.order-section:last-child { border-bottom: none; }
.order-section-title { font-family: var(--font-body); font-size: 0.82rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 12px; }

/* Campos */
.order-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-field label { display: block; font-size: 0.82rem; font-weight: bold; color: var(--text-color); margin-bottom: 5px; }
.order-field input[type="text"], .order-field input[type="tel"] { width: 100%; padding: 10px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body); color: var(--text-color); transition: border-color 0.2s; background: #fafafa; }
.order-field input:focus { outline: none; border-color: var(--primary-color); background: #fff; }

/* Entrega */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.delivery-option { cursor: pointer; display: block; }
.delivery-option input[type="radio"] { display: none; }
.delivery-option-content { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid #e5e7eb; border-radius: 10px; transition: all 0.2s; background: #fafafa; }
.delivery-option input:checked + .delivery-option-content { border-color: var(--primary-color); background: #fff8f0; }
.delivery-option-content .delivery-icon { font-size: 1.5rem; flex-shrink: 0; }
.delivery-option-content strong { display: block; font-size: 0.9rem; color: var(--dark-color); }
.delivery-option-content small { font-size: 0.75rem; color: #888; }

/* Mapa */
#address-section .order-field input { margin-bottom: 10px; }
.map-actions-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.map-hint-text { font-size: 0.78rem; color: #999; font-style: italic; }
.gmap-container { border-radius: 10px; overflow: hidden; height: 200px; border: 2px solid #e5e7eb; background: #f0f0f0; position: relative; }
.map-placeholder { height: 100%; background: linear-gradient(135deg, #f8f8f8, #efefef); display: flex; align-items: center; justify-content: center; }
.map-placeholder-inner { text-align: center; color: #aaa; }
.map-placeholder-inner svg { width: 36px; height: 36px; stroke: #ccc; margin-bottom: 8px; }
.map-placeholder-inner p { font-size: 0.9rem; font-weight: bold; color: #bbb; margin-bottom: 2px; }
.map-placeholder-inner small { font-size: 0.75rem; color: #ccc; }
.location-status { margin-top: 8px; padding: 8px 12px; border-radius: 8px; font-size: 0.82rem; }
.location-status.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.location-status.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* Botón GPS */
.btn-locate {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dark-color); color: #fff;
    border: none; border-radius: 50px; padding: 9px 16px;
    font-family: var(--font-body); font-weight: bold; font-size: 0.85rem;
    cursor: pointer; transition: background 0.2s;
}
.btn-locate svg { width: 16px; height: 16px; }
.btn-locate:hover { background: #3a3a3a; }
.btn-locate:disabled { opacity: 0.6; cursor: not-allowed; }

/* Pago */
.payment-options { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-option { cursor: pointer; }
.payment-option input[type="radio"] { display: none; }
.payment-option-content { display: flex; align-items: center; gap: 6px; padding: 9px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.88rem; font-weight: bold; color: var(--text-color); transition: all 0.2s; background: #fafafa; white-space: nowrap; }
.payment-option input:checked + .payment-option-content { border-color: var(--primary-color); background: #fff8f0; color: var(--primary-color); }

/* Resumen */
.order-summary-items { background: #fafafa; border-radius: 8px; padding: 12px; margin-bottom: 10px; }
.order-summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; padding: 7px 0; border-bottom: 1px dashed #eee; color: var(--text-color); gap: 8px; }
.order-summary-row:last-child { border-bottom: none; }
.summary-item-name { flex: 1; font-weight: bold; font-size: 0.85rem; color: var(--dark-color); }
.summary-item-price { font-family: var(--font-heading); font-size: 0.95rem; color: var(--primary-color); min-width: 70px; text-align: right; }
.summary-qty-controls { display: flex; align-items: center; gap: 0; background: #fff; border: 2px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.qty-btn { background: none; border: none; width: 30px; height: 30px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; color: var(--dark-color); font-weight: bold; }
.qty-btn:hover { background: #f0f0f0; }
.qty-btn.qty-minus:hover { background: #fee2e2; color: #dc2626; }
.qty-btn.qty-plus:hover { background: #dcfce7; color: #16a34a; }
.qty-value { min-width: 28px; text-align: center; font-weight: bold; font-size: 0.95rem; color: var(--dark-color); border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; padding: 0 4px; line-height: 30px; }

/* QR */
.qr-section { margin-top: 14px; background: #f8f8f8; border-radius: 10px; padding: 16px; text-align: center; border: 2px dashed #e5e7eb; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.qr-instructions { font-size: 0.88rem; font-weight: bold; color: var(--dark-color); margin-bottom: 12px; }
.qr-image-wrapper { display: inline-block; background: #fff; padding: 10px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 10px; }
.qr-image { width: 160px; height: 160px; object-fit: contain; display: block; }
.qr-hint { font-size: 0.78rem; color: #888; line-height: 1.5; }

.order-summary-total { display: flex; justify-content: space-between; font-weight: bold; font-size: 1.1rem; padding: 10px 12px; background: var(--light-color); border-radius: 8px; color: var(--dark-color); }
.order-summary-total span:last-child { color: var(--primary-color); font-family: var(--font-heading); font-size: 1.2rem; }

/* Footer modal */
.order-modal-footer { padding: 16px 24px 20px; display: flex; gap: 12px; border-top: 1px solid #f0f0f0; background: #fff; }
.btn-continue-shopping { flex: 1; padding: 13px; border: 2px solid #e5e7eb; background: #fff; color: var(--text-color); border-radius: 50px; font-family: var(--font-body); font-weight: bold; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.btn-continue-shopping:hover { border-color: #ccc; background: #f9f9f9; }
.btn-send-order { flex: 2; padding: 13px 20px; background: #25D366; color: #fff; border: none; border-radius: 50px; font-family: var(--font-body); font-weight: bold; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-send-order:hover { background: #1DAA51; transform: scale(1.02); }

/* --- RESPONSIVIDAD --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: absolute; left: 0; top: 80px; background: var(--dark-color); width: 100%; flex-direction: column; align-items: center; padding: 20px 0; transform: translateY(-120%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
    .nav-links.nav-active { transform: translateY(0); opacity: 1; }
    .nav-links li { padding: 15px 0; width: 100%; text-align: center; }
    .nav-links li a:not(.btn-nav) { font-size: 1.2rem; }
    .hamburger.toggle .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .bar:nth-child(2) { opacity: 0; }
    .hamburger.toggle .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    .section-title { font-size: 2.2rem; }
    .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 20px; }
    .feature-card img { height: 150px; }
    .feature-card h3 { font-size: 1.5rem; }
    .modal-content { width: 90%; margin: 25% auto; }
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1rem; }
    #inicio { height: 60vh; }
    .whatsapp-container { flex-direction: column; text-align: center; gap: 20px; }
    .whatsapp-text .section-title { text-align: center; font-size: 1.8rem; }
    .order-modal-overlay { padding: 10px; align-items: flex-start; }
    .order-modal-content { border-radius: 12px; margin: 10px auto; }
    .order-form-grid { grid-template-columns: 1fr; }
    .delivery-options { grid-template-columns: 1fr; }
    .order-product-preview img { width: 70px; height: 70px; }
    .order-modal-footer { flex-direction: column; }
    .btn-send-order, .btn-continue-shopping { flex: none; width: 100%; }
    .order-modal-body { max-height: 55vh; }
    .payment-options { flex-direction: column; }
    .payment-option-content { width: 100%; }
}

/* --- CELULAR CON CÓDIGO BOLIVIA --- */
.phone-input-wrapper { display: flex; align-items: center; border: 2px solid #e5e7eb; border-radius: 8px; overflow: hidden; background: #fafafa; transition: border-color 0.2s; }
.phone-input-wrapper:focus-within { border-color: var(--primary-color); background: #fff; }
.phone-prefix { background: #f0f0f0; padding: 10px 10px; font-size: 0.88rem; font-weight: bold; color: var(--dark-color); border-right: 2px solid #e5e7eb; white-space: nowrap; flex-shrink: 0; }
.phone-input-wrapper input[type="tel"] { border: none !important; border-radius: 0 !important; background: transparent !important; flex: 1; padding: 10px 12px; font-size: 0.95rem; font-family: var(--font-body); color: var(--text-color); outline: none !important; }

/* --- AVISO TARIFA DELIVERY --- */
.delivery-fee-notice { display: flex; align-items: flex-start; gap: 10px; background: #fff8ec; border: 1.5px solid #fcd34d; border-radius: 10px; padding: 12px 14px; margin-top: 12px; font-size: 0.85rem; color: #92400e; line-height: 1.5; }
.delivery-fee-notice span:first-child { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.delivery-fee-notice strong { color: #78350f; }
.delivery-fee-notice small { color: #b45309; font-size: 0.78rem; }

/* --- INDICACIONES DE DIRECCIÓN --- */
.delivery-notes-input { width: 100%; padding: 10px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.9rem; font-family: var(--font-body); color: var(--text-color); background: #fafafa; resize: vertical; min-height: 72px; max-height: 130px; transition: border-color 0.2s; line-height: 1.5; }
.delivery-notes-input:focus { outline: none; border-color: var(--primary-color); background: #fff; }

/* --- BOTÓN DESCARGAR QR --- */
.btn-download-qr { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--dark-color); color: #fff; padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: bold; font-family: var(--font-body); text-decoration: none; margin: 8px auto 10px; transition: background 0.2s, transform 0.2s; cursor: pointer; width: fit-content; }
.btn-download-qr:hover { background: var(--primary-color); transform: scale(1.04); }


/* ============================================
   UPSELL - SECCIÓN DEBAJO DEL MENÚ
   ============================================ */
.menu-upsell-section {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #1a0f03 0%, #2d1a06 100%);
    border-radius: 16px;
    border: 1px solid rgba(217,119,6,0.3);
}
.menu-upsell-section.upsell-animate {
    animation: upsellFadeIn 0.4s ease;
}
@keyframes upsellFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.upsell-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.upsell-fire { font-size: 2rem; flex-shrink: 0; }
.upsell-title { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 4px; text-transform: uppercase; }
.upsell-subtitle { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-family: var(--font-body); }
.upsell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.upsell-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; transition: transform 0.25s, border-color 0.25s; display: flex; flex-direction: column; }
.upsell-card:hover { transform: translateY(-4px); border-color: var(--primary-color); }
.upsell-card img { width: 100%; height: 140px; object-fit: cover; }
.upsell-info { padding: 12px 14px 6px; flex: 1; }
.upsell-name { font-family: var(--font-heading); font-size: 1rem; color: #fff; margin-bottom: 4px; text-transform: uppercase; }
.upsell-price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary-color); margin: 0; }
.upsell-add-btn { margin: 10px 14px 14px; padding: 9px 0; background: var(--primary-color); color: #fff; border: none; border-radius: 50px; font-family: var(--font-body); font-weight: bold; font-size: 0.88rem; cursor: pointer; transition: background 0.2s, transform 0.15s; width: calc(100% - 28px); }
.upsell-add-btn:hover { background: #B45309; transform: scale(1.03); }

/* ============================================
   UPSELL - DENTRO DEL MODAL
   ============================================ */
.modal-upsell-section {
    background: linear-gradient(135deg, #1a0f03 0%, #2d1a06 100%);
    padding: 16px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    animation: upsellFadeIn 0.35s ease;
}
.modal-upsell-header { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: bold; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--primary-color); margin-bottom: 14px; }
.modal-upsell-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.modal-upsell-grid::-webkit-scrollbar { display: none; }
.modal-upsell-card { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 8px 10px; min-width: 200px; flex-shrink: 0; transition: border-color 0.2s; }
.modal-upsell-card:hover { border-color: var(--primary-color); }
.modal-upsell-card img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.modal-upsell-info { flex: 1; min-width: 0; }
.modal-upsell-name { font-family: var(--font-heading); font-size: 0.82rem; color: #fff; margin: 0 0 2px 0; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.modal-upsell-price { font-family: var(--font-heading); font-size: 0.9rem; color: var(--primary-color); margin: 0; }
.modal-upsell-btn { background: var(--primary-color); color: #fff; border: none; border-radius: 50px; padding: 6px 12px; font-size: 0.78rem; font-family: var(--font-body); font-weight: bold; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.modal-upsell-btn:hover { background: #B45309; }

@media (max-width: 768px) {
    .upsell-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .upsell-card img { height: 110px; }
    .modal-upsell-card { min-width: 170px; }
}