/* ==============================================================================
   MENÚ DIGITAL - MOBILE FIRST LUXURY GASTRONOMY DESIGN SYSTEM
   ============================================================================== */

:root {
    --bg-main: #0c0e12;
    --bg-surface: #14171f;
    --bg-card: #1b202a;
    --bg-card-hover: #222936;
    --bg-glass: rgba(20, 23, 31, 0.85);
    
    --primary: #ff5722;
    --primary-gradient: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
    --primary-glow: rgba(255, 87, 34, 0.35);
    
    --accent-green: #10b981;
    --accent-gold: #f59e0b;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 87, 34, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-floating: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px var(--primary-glow);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 90px; /* Espacio para el carrito flotante */
}

/* Contenedor Mobile First */
.app-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--bg-main);
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1024px) {
    .app-container {
        max-width: 680px;
    }
}

/* Hero & Header del Restaurante */
.hero-header {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: transform 0.8s ease;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 14, 18, 0.3) 0%, rgba(12, 14, 18, 0.95) 100%);
}

.hero-content {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.restaurant-logo-wrap {
    position: relative;
    flex-shrink: 0;
}

.restaurant-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    border: 3px solid rgba(255, 255, 255, 0.15);
    object-fit: cover;
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-card);
}

.restaurant-info {
    flex: 1;
}

.restaurant-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.restaurant-slogan {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-badge.open {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.closed {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.takeout-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(255, 87, 34, 0.18);
    color: var(--primary);
    border: 1px solid var(--border-highlight);
    letter-spacing: 0.2px;
}

/* Barra de Búsqueda */
.search-container {
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: var(--bg-main);
    backdrop-filter: blur(12px);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.search-input {
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 12px 40px 12px 40px;
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.search-input:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.search-clear {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    cursor: pointer;
    display: none;
}

/* Categorías Horizontales Sticky con Botones de Scroll */
.categories-nav-wrap {
    position: sticky;
    top: 65px;
    z-index: 30;
    background-color: var(--bg-main);
    padding: 6px 12px 10px 12px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.cat-nav-btn:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.categories-scroll {
    flex: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 87, 34, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.categories-scroll.active-drag {
    cursor: grabbing;
    scroll-behavior: auto;
}

.categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.category-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    white-space: nowrap;
}

.category-chip i {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.category-chip:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-chip.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    font-weight: 600;
}

.category-chip.active i {
    color: #ffffff;
}

/* Secciones de Menú */
.menu-content {
    padding: 20px;
}

.category-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-section-title i {
    color: var(--primary);
    font-size: 1rem;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

/* Tarjeta de Platillo (Mobile First Card) */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.product-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.product-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--bg-surface);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}

.badge-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.badge-tag.chef {
    background-color: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-tag.bestseller, .badge-tag.popular {
    background-color: rgba(255, 87, 34, 0.18);
    color: #ff7043;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.badge-tag.vegan {
    background-color: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-tag.spicy {
    background-color: rgba(239, 68, 68, 0.18);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.btn-add-quick {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: var(--transition);
}

.btn-add-quick:hover {
    transform: scale(1.1);
}

.sold-out-chip {
    font-size: 0.72rem;
    font-weight: 600;
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.15);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

/* Modal Detalle de Platillo */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

@media (min-width: 600px) {
    .modal-overlay {
        align-items: center;
        padding: 20px;
    }
}

.modal-sheet {
    background-color: var(--bg-surface);
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-subtle);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@media (min-width: 600px) {
    .modal-sheet {
        border-radius: var(--radius-lg);
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.modal-img-wrap {
    width: 100%;
    height: 240px;
    position: relative;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 20px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-notes-field {
    margin-bottom: 20px;
}

.modal-notes-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.modal-notes-textarea {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.85rem;
    padding: 10px;
    outline: none;
    resize: none;
    height: 65px;
}

.modal-notes-textarea:focus {
    border-color: var(--primary);
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quantity-stepper {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 4px;
}

.stepper-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stepper-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.stepper-value {
    width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.btn-add-modal {
    flex: 1;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--primary-glow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-modal:hover {
    opacity: 0.95;
    transform: scale(1.01);
}

/* Botón Flotante de Carrito */
.floating-cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 500px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 14px 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
    z-index: 80;
    cursor: pointer;
    transition: var(--transition);
    animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    from { opacity: 0; transform: translate(-50%, 30px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.floating-cart-bar:hover {
    transform: translate(-50%, -2px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.55);
}

.cart-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-badge-count {
    background-color: #ffffff;
    color: #065f46;
    font-weight: 800;
    font-size: 0.85rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-bar-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-bar-total {
    font-weight: 800;
    font-size: 1.05rem;
}

/* Offcanvas / Drawer del Carrito */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 120;
    display: none;
    justify-content: flex-end;
}

.cart-drawer {
    background-color: var(--bg-surface);
    width: 100%;
    max-width: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideLeft 0.3s ease-out;
}

@keyframes slideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header-title {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-header-title i {
    color: var(--accent-green);
}

.btn-close-drawer {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
}

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

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.cart-item-row {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    gap: 12px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-item-note {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

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

.btn-cart-remove {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-cart-remove:hover {
    color: var(--accent-red);
}

.cart-item-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-surface);
    border-radius: var(--radius-sm);
    padding: 2px 4px;
}

.cart-item-stepper button {
    background: none;
    border: none;
    color: var(--text-main);
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* Formulario de Entrega a Domicilio */
.order-options-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.order-option-title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.order-option-title i {
    color: var(--primary);
}

.field-wrap {
    margin-bottom: 12px;
}

.field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.field-label i {
    color: var(--text-dim);
    margin-right: 4px;
}

.order-input {
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.88rem;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.order-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.order-textarea {
    resize: none;
    min-height: 58px;
}

/* Botón e Indicador de Ubicación GPS */
.btn-gps-action {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.15), rgba(255, 138, 80, 0.08));
    border: 1px dashed var(--primary);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.btn-gps-action:hover {
    background: rgba(255, 87, 34, 0.25);
    border-style: solid;
    transform: translateY(-1px);
}

.btn-gps-action i {
    font-size: 1.1rem;
    color: var(--primary);
}

.gps-status-box {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.gps-status-box.pending {
    background-color: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.gps-status-box.loading {
    background-color: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #60a5fa;
}

.gps-status-box.captured {
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-weight: 600;
}

/* Footer del Carrito */
.cart-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 16px;
}

.btn-whatsapp-order {
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-whatsapp-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Estado Vacío */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.empty-state h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 0.85rem;
}

/* Footer Bottom Bar */
.bottom-nav-footer {
    text-align: center;
    padding: 24px 20px;
    font-size: 0.78rem;
    color: var(--text-dim);
    border-top: 1px solid var(--border-subtle);
}

.admin-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 8px;
    transition: var(--transition);
}

.admin-link-btn:hover {
    color: var(--primary);
}
