/* ── Kiosque — estilos globais ─────────────────────────────── */ body { display: flex; flex-direction: column; min-height: 100vh; background-color: #f8f9fa; } /* Navbar amarela com texto escuro */ .navbar-brand { letter-spacing: 0.5px; } /* Cards do cardápio */ .card { transition: transform 0.15s ease, box-shadow 0.15s ease; } .card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.12) !important; } /* Badge do carrinho */ #badge-carrinho { font-size: 0.65rem; } /* Tabelas responsivas no admin */ .table th { white-space: nowrap; } /* Alerta de estoque baixo na tabela */ .table-danger td { color: #842029; } /* Offcanvas carrinho */ #offcanvasCarrinho { width: 380px; } /* lista-carrinho precisa de min-height:0 para flex-grow+overflow-auto funcionar corretamente no iOS Safari */ #lista-carrinho { min-height: 0; } @media (max-width: 576px) { #offcanvasCarrinho { width: 100vw; } }