:root {
    --primary-color: #d32f2f;
    --secondary-color: #ff9800;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;

    /* Alturas dinámicas */
    --header-height: 60px;
    --header-height-compact: 45px;
    --bottom-nav-height: 70px;
    --bottom-nav-height-compact: 55px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: var(--dark-color);
    padding-bottom: var(--bottom-nav-height);
    transition: padding-bottom 0.3s ease;
}

body.scroll-mode {
    padding-bottom: var(--bottom-nav-height-compact);
}

/* ========================================
   HEADER SUPERIOR - MODO LÍQUIDO
   ======================================== */

.top-header {
    background-color: white;
    padding: 10px 15px;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-header.compact {
    height: var(--header-height-compact);
    padding: 5px 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: font-size 0.3s ease;
}

.top-header.compact .logo {
    font-size: 1.1rem;
}

.logo i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.top-header.compact .logo i {
    font-size: 1rem;
}

/* Placeholder para buscador sticky */
.search-sticky-placeholder {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-sticky-placeholder.active {
    opacity: 1;
    pointer-events: all;
}

.points-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.top-header.compact .points-badge {
    padding: 3px 8px;
    font-size: 0.75rem;
}

.points-badge i {
    margin-right: 5px;
}

.points-text {
    transition: opacity 0.3s ease;
}

.top-header.compact .points-text {
    display: none;
}

/* ========================================
   BANNER PRINCIPAL
   ======================================== */

.banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 15px;
    text-align: center;
    transition: padding 0.3s ease;
}

.banner h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.banner p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.delivery-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

.delivery-info div {
    display: flex;
    align-items: center;
}

.delivery-info i {
    margin-right: 5px;
}

/* ========================================
   CARRUSEL "¿QUÉ SE TE ANTOJA HOY?"
   ======================================== */

.cravings-section {
    padding: 20px 15px;
    background-color: white;
    margin: 15px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title h2 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.cravings-carousel {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cravings-carousel::-webkit-scrollbar {
    display: none;
}

.craving-card {
    flex: 0 0 48%;
    min-height: 120px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.craving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.craving-card i {
    font-size: 2.5rem;
    color: white;
}

.craving-card span {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

/* Degradados por categoría */
.craving-alimentos {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.craving-alimentos i,
.craving-alimentos span {
    color: var(--dark-color);
}

.craving-bebidas-calientes {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a00 100%);
}

.craving-bebidas-frias {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.craving-postres {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.craving-vegetarianos {
    background: linear-gradient(135deg, #c1dfc4 0%, #deecdd 100%);
}

.craving-vegetarianos i,
.craving-vegetarianos span {
    color: #2d5016;
}

/* ========================================
   LÍNEA DIVISORIA
   ======================================== */

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 20px 0;
}

/* ========================================
   BUSCADOR - MODO STICKY
   ======================================== */

.search-container {
    padding: 15px;
    background-color: white;
    margin: 0 15px 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
}

.search-container.sticky-mode {
    position: fixed;
    top: var(--header-height-compact);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 400px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.search-box {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 30px;
    overflow: hidden;
    padding: 5px;
    transition: all 0.3s ease;
}

.search-container.sticky-mode .search-box {
    padding: 3px;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-container.sticky-mode .search-box input {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.search-container.sticky-mode .search-box button {
    width: 35px;
    height: 35px;
}

/* ========================================
   PROMOCIONES - SECCIÓN DINÁMICA
   ======================================== */

.promotions-section {
    padding: 20px 15px;
    background-color: white;
    margin: 15px 0;
    transition: all 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.promotions-section.collapsed {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0;
    display: none;
}

.promotions-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.promotions-carousel::-webkit-scrollbar {
    display: none;
}

.promotion-card {
    flex: 0 0 85%;
    min-height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 20px;
    color: white;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    transform: scale(1.02);
}

.promotion-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.promotion-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   GALERÍA DE FAVORITOS - AUTO-SCROLL
   ======================================== */

.favorites-section {
    padding: 20px 15px;
    background-color: white;
    margin: 15px 0;
}

.favorites-gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.favorites-gallery::-webkit-scrollbar {
    display: none;
}

.favorite-product {
    flex: 0 0 45%;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.favorite-product:hover {
    transform: translateY(-5px);
}

.favorite-product-image {
    flex: 1;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 3rem;
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

.favorite-product-info {
    padding: 12px;
    background: white;
}

.favorite-product-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.favorite-product-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.favorite-product-price span {
    font-size: 0.85rem;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-left: 5px;
}

/* ========================================
   PRODUCTOS - SCROLL INFINITO
   ======================================== */

.products-infinite-scroll {
    background-color: #f5f5f5;
}

.category-section {
    margin-bottom: 20px;
}

.category-banner {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-radius: 0;
}

.products-grid {
    background-color: white;
    border-radius: 10px;
    margin: 0 15px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.menu-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #fafafa;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.item-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.item-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.availability {
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.available {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.unavailable {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.add-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-btn:hover {
    background-color: #b71c1c;
}

.add-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* ========================================
   BARRA INFERIOR - MODO LÍQUIDO
   ======================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: var(--bottom-nav-height);
    padding: 10px 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.bottom-nav.compact {
    height: var(--bottom-nav-height-compact);
    padding: 5px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray-color);
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.bottom-nav.compact .nav-item {
    padding: 3px 8px;
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary-color);
    background-color: rgba(211, 47, 47, 0.05);
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: font-size 0.3s ease;
}

.bottom-nav.compact .nav-item i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
    transition: font-size 0.3s ease;
}

.bottom-nav.compact .nav-item span {
    font-size: 0.7rem;
}

/* Botón central de puntos */
.points-display {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 10px 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transform: scale(1);
    transition: all 0.3s ease;
}

.bottom-nav.compact .points-display {
    transform: scale(0.8);
    padding: 8px 12px;
}

.points-display i {
    margin-right: 5px;
    font-size: 1rem;
}

/* Badge del carrito */
#cart-badge {
    position: absolute;
    top: -2px;
    right: 5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.badge-pulse {
    animation: badgePulse 0.4s ease-out !important;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================================
   COMPONENTES UX PREMIUM
   ======================================== */

/* Toast de Confirmación */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.toast i {
    font-size: 1.5rem;
}

/* Notificación */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--success-color);
    max-width: 320px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left-color: var(--success-color);
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.warning {
    border-left-color: var(--warning-color);
}

.notification i {
    font-size: 1.5rem;
}

.notification.success i {
    color: var(--success-color);
}

.notification.error i {
    color: #dc3545;
}

.notification.warning i {
    color: var(--warning-color);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.notification-message {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Modal del Carrito/Orden */
.cart-modal-overlay,
.last-order-modal,
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 8888;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal-overlay.show,
.last-order-modal.show,
.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.cart-modal-overlay {
    align-items: flex-end;
    justify-content: center;
}

.last-order-modal,
.modal-overlay {
    align-items: center;
    justify-content: center;
}

.cart-modal-content,
.last-order-content,
.modal-content {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
}

.cart-modal-overlay.show .cart-modal-content {
    transform: translateY(0);
}

.last-order-modal.show .last-order-content,
.modal-overlay.show .modal-content {
    transform: scale(1);
}

.last-order-content,
.modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
}

.modal-content {
    overflow-y: auto;
    padding: 20px;
}

.cart-modal-header,
.modal-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h3,
.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-modal-header h3 i {
    color: var(--primary-color);
}

.cart-modal-close,
.modal-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.5rem;
    color: var(--gray-color);
}

.cart-modal-close:hover,
.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.cart-total-label {
    font-weight: bold;
    color: var(--dark-color);
}

.cart-total-amount {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cart-confirm-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-confirm-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.cart-confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-color);
}

.empty-cart-message i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.empty-cart-message h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.cart-item {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.cart-item-details {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Campo de Notas */
.order-notes-section {
    padding: 16px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.notes-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.notes-label i {
    color: var(--primary-color);
}

.order-notes-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
    background: white;
}

.order-notes-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.order-notes-input::placeholder {
    color: #999;
    font-style: italic;
}

.notes-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 4px;
}

.notes-counter span {
    font-weight: 600;
}

/* Efecto Glow */
.nav-item.glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(211, 47, 47, 0.3),
            0 0 10px rgba(211, 47, 47, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(211, 47, 47, 0.6),
            0 0 30px rgba(211, 47, 47, 0.4),
            0 0 40px rgba(211, 47, 47, 0.2);
    }
}

/* Modal de personalización */
.modal-product-image {
    height: 180px;
    background-color: #f8f8f8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 4rem;
    margin-bottom: 20px;
}

.customization-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.option-item:last-child {
    border-bottom: none;
}

.option-select {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.modal-price {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-add-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-add-btn:hover {
    background-color: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 1.5rem;
    }

    .craving-card {
        flex: 0 0 48%;
    }
}

@media (max-width: 480px) {
    .delivery-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .craving-card {
        flex: 0 0 48%;
        min-height: 100px;
    }

    .craving-card i {
        font-size: 2rem;
    }

    .craving-card span {
        font-size: 0.9rem;
    }
}