@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ==================================================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ================================================================== */
:root { 
    --vermelho: #E30613; 
    --vermelho-escuro: #B71C1C;
    --fundo-nav: #D32F2F;
    --amarelo: #FFC107; 
    --amarelo-hover: #FFB300;
    --texto: #2D2D2D; 
    --bg-body: #FDFBF7; 
    --branco: #ffffff;
    --verde-zap: #00a884; 
    
    --shadow-suave: 0 8px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 25px rgba(227, 6, 19, 0.15);
    --radius-card: 20px;
    --radius-btn: 12px;
}

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

body { 
    font-family: 'Open Sans', sans-serif; 
    background-color: var(--bg-body); 
    color: var(--texto); 
    /* REMOVIDO: padding-bottom daqui para evitar a faixa branca */
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

h1, h2, h3, .logo-cardapio, .chip { font-family: 'Montserrat', sans-serif; }
h3, .section-title { font-family: 'Anton', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; }

/* Utilitários */
.material-icons { vertical-align: middle; }
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ==================================================================
   2. NAVBAR E RODAPÉ
   ================================================================== */

/* Navbar */
.navbar { 
    background: var(--fundo-nav); 
    padding: 10px 0; 
    position: sticky; top: 0; z-index: 500; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
}
.nav-container { 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.link-voltar { 
    color: white; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; 
    font-weight: 700; text-decoration: none; background: rgba(0,0,0,0.2);
    padding: 8px 15px; border-radius: 30px; transition: 0.2s; text-transform: uppercase;
}
.link-voltar:hover { background: rgba(0,0,0,0.3); transform: translateX(-2px); }

.logo-img-small {
    height: 50px; width: 50px; object-fit: cover;
    border-radius: 50%; border: 2px solid white;
    background: #fff;
}

/* Footer (Rodapé) - CORRIGIDO */
footer { 
    background: #1c1c1c; 
    color: #999; 
    /* Padding inferior aumentado para compensar o carrinho flutuante */
    padding: 60px 20px 180px; 
    text-align: center;
    border-top: 6px solid var(--vermelho);
    position: relative; z-index: 10;
}

.footer-container { 
    max-width: 1000px; margin: 0 auto; 
    display: flex; flex-direction: column; align-items: center; gap: 30px;
}

.footer-logo-img {
    height: 80px; width: 80px; 
    object-fit: cover; border-radius: 50%; 
    border: 3px solid #333; 
    background: #fff; padding: 2px;
}

.footer-links { 
    display: flex; gap: 25px; flex-wrap: wrap; justify-content: center;
}
.footer-links a { 
    color: #ddd; text-decoration: none; font-weight: 700; 
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px;
    transition: 0.2s;
}
.footer-links a:hover { color: var(--amarelo); }

.social-icons { display: flex; gap: 20px; margin-top: 10px; justify-content: center; }
.social-svg { 
    width: 28px; height: 28px; 
    fill: #777; 
    transition: 0.3s; cursor: pointer;
}
.social-svg:hover { fill: white; transform: translateY(-3px); }

.copyright-text { margin-top: 40px; font-size: 0.75rem; color: #555; border-top: 1px solid #333; padding-top: 20px; width: 100%; }


/* ==================================================================
   3. ESTILOS ESPECÍFICOS DO CARDÁPIO
   ================================================================== */

/* Categorias */
.categorias-bar { 
    background: white; padding: 12px 0; 
    position: sticky; top: 70px; 
    z-index: 490; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.categorias-bar::-webkit-scrollbar { display: none; }

.cat-container { 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
    display: flex; gap: 10px; min-width: max-content;
}

.chip { 
    display: inline-block; padding: 10px 20px; border-radius: 50px; 
    background: #f2f2f2; color: #666; font-size: 0.85rem; font-weight: 800; 
    cursor: pointer; text-decoration: none; transition: all 0.3s ease;
    border: 1px solid transparent; text-transform: uppercase;
}
.chip:hover { background: #e0e0e0; }
.chip.ativo { 
    background: var(--vermelho); color: white; 
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
    transform: scale(1.05);
}

/* Layout Cards */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.page-header { text-align: center; padding: 30px 20px 10px 20px; }
.page-header h2 { 
    font-size: 2rem; color: var(--vermelho); font-weight: 400; margin-bottom: 5px; 
    font-family: 'Anton', sans-serif; letter-spacing: 1px;
}
.page-header p { color: #777; font-size: 0.95rem; font-weight: 600; }

.section-title { 
    margin: 40px 0 20px 0; font-size: 1.8rem; color: var(--texto);
    display: flex; align-items: center; gap: 10px;
}
.section-title::before {
    content: ''; display: block; width: 6px; height: 30px; 
    background: var(--amarelo); border-radius: 4px;
}

.grid-produtos { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }

/* Card Produto */
.card { 
    background: white; border-radius: var(--radius-card); 
    box-shadow: var(--shadow-suave); border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s; 
    display: flex; flex-direction: column; overflow: hidden; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--amarelo); }

.badge-oferta, .badge-top { 
    position: absolute; top: 15px; 
    font-size: 0.7rem; font-weight: 800; padding: 5px 12px; 
    border-radius: 30px; z-index: 10; letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); text-transform: uppercase;
}
.badge-oferta { right: 15px; background: var(--vermelho); color: white; }
.badge-top { left: 15px; background: var(--amarelo); color: var(--vermelho-escuro); }

.card-img { 
    height: 180px; overflow: hidden; position: relative; background: #fafafa;
    display: flex; align-items: center; justify-content: center;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.08); }

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { 
    font-size: 1.3rem; margin-bottom: 5px; color: var(--texto); line-height: 1.1; 
    font-family: 'Anton', sans-serif; letter-spacing: 0.5px;
}
.card-desc { font-size: 0.85rem; color: #777; margin-bottom: 15px; flex: 1; line-height: 1.5; }

.select-wrapper { margin-bottom: 15px; position: relative; }
.select-rf { 
    width: 100%; padding: 12px; border: 2px solid #eee; 
    border-radius: var(--radius-btn); cursor: pointer; background: #fff; 
    font-size: 0.9rem; font-weight: 700; color: #555; outline: none; appearance: none;
    transition: 0.2s;
}
.select-rf:focus { border-color: var(--amarelo); }

.btn-add { 
    width: 100%; background: var(--vermelho); color: white; 
    border: none; padding: 14px; border-radius: var(--radius-btn); 
    cursor: pointer; transition: 0.2s; font-size: 1rem; font-weight: 800; 
    text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; justify-content: center; align-items: center; gap: 8px;
    box-shadow: 0 4px 0 var(--vermelho-escuro); margin-bottom: 4px;
}
.btn-add:active { transform: translateY(4px); box-shadow: 0 0 0 var(--vermelho-escuro); margin-bottom: 0; margin-top: 4px; }
.btn-add:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; transform: none; margin: 0; }

.card-esgotado { opacity: 0.7; filter: grayscale(1); pointer-events: none; }

/* Carrinho Flutuante */
.carrinho-bar { 
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(150%); 
    width: 95%; max-width: 500px; 
    background: #222; color: white; 
    padding: 15px 25px; border-radius: 50px; 
    display: flex; justify-content: space-between; align-items: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); z-index: 1000; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid rgba(255,255,255,0.1);
}
.carrinho-bar.visivel { transform: translateX(-50%) translateY(0); }

.info-total span { font-size: 0.75rem; opacity: 0.8; text-transform: uppercase; font-weight: 700; }
.info-total strong { font-size: 1.3rem; color: var(--amarelo); font-family: 'Anton', sans-serif; letter-spacing: 1px; }

.btn-fechar { 
    background: var(--amarelo); color: var(--vermelho); border: none; 
    padding: 10px 25px; border-radius: 30px; font-weight: 800; 
    cursor: pointer; display: flex; align-items: center; gap: 8px; 
    font-size: 0.9rem; box-shadow: 0 4px 0 #C79100; transition: 0.1s;
}
.btn-fechar:active { transform: translateY(4px); box-shadow: none; }

/* Modal Checkout */
.modal-overlay { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.6); z-index: 3000; 
    justify-content: center; align-items: flex-end; backdrop-filter: blur(5px);
}
.modal-overlay.ativo { display: flex; }

.modal-box { 
    background: white; width: 100%; max-width: 500px; 
    border-radius: 25px 25px 0 0; padding: 30px 25px; 
    max-height: 90vh; overflow-y: auto; 
    animation: slideUp 0.3s ease-out; 
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}
@media(min-width: 768px) { .modal-overlay { align-items: center; } .modal-box { border-radius: 25px; } }
@keyframes slideUp { from {transform: translateY(100%);} to {transform: translateY(0);} }

/* Formulários do Modal */
.search-container { position: relative; margin: 15px 0 25px 0; }
.search-input { 
    width: 100%; padding: 16px 20px 16px 50px; 
    border: 2px solid transparent; background: white; border-radius: 50px; 
    font-size: 1rem; outline: none; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s;
}
.search-input:focus { border-color: var(--vermelho); box-shadow: 0 5px 25px rgba(227, 6, 19, 0.15); }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--vermelho); }

.form-input { 
    width: 100%; padding: 15px; border: 2px solid #eee; 
    border-radius: 12px; margin-bottom: 15px; font-size: 1rem; 
    outline: none; transition: 0.3s;
}
.form-input:focus { border-color: var(--vermelho); background: #fffbfb; }

.btn-confirmar { 
    width: 100%; background: var(--verde-zap); color: white; 
    border: none; padding: 18px; font-weight: 800; border-radius: 15px; 
    font-size: 1.1rem; cursor: pointer; text-transform: uppercase;
    box-shadow: 0 6px 0 #005c4b; display: flex; justify-content: center; gap: 10px; margin-bottom: 5px;
}
.btn-confirmar:active { transform: translateY(6px); box-shadow: none; margin-bottom: 0; margin-top: 5px; }

.item-escondido, .secao-escondida { display: none !important; }

#toast { 
    visibility: hidden; min-width: 300px; background-color: #222; color: #fff; 
    text-align: center; border-radius: 50px; padding: 16px; 
    position: fixed; z-index: 2000; left: 50%; bottom: 100px; transform: translateX(-50%); 
    opacity: 0; transition: opacity 0.3s, bottom 0.3s; font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); border: 1px solid #444;
}
#toast.show { visibility: visible; opacity: 1; bottom: 110px; }

/* ==================================================================
   4. NOVOS ESTILOS: ETIQUETA PULSANTE, SKELETON E BTN TOPO
   ================================================================== */

/* Etiqueta de Status (Pill) */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.status-pill.fechado { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.status-pill.aberto { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

/* Bolinha Pulsando */
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; position: relative; }
.status-pill.fechado .dot-pulse { background-color: #c62828; }
.status-pill.aberto .dot-pulse { background-color: #2e7d32; }
.dot-pulse::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; background-color: inherit; z-index: -1;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }

/* Skeleton Loading */
.skeleton-card {
    background: white; border-radius: 12px; padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 10px; height: 280px;
}
.skeleton {
    background: #eee; background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 4px; background-size: 200% 100%; animation: shine 1.5s linear infinite;
}
.skeleton-img { width: 100%; height: 140px; border-radius: 8px; }
.skeleton-title { width: 80%; height: 20px; margin: 5px auto 0; }
.skeleton-desc { width: 100%; height: 12px; }
.skeleton-price { width: 40%; height: 25px; margin: 10px auto 0; }
@keyframes shine { to { background-position-x: -200%; } }

/* Botão Voltar ao Topo */
#btn-topo {
    position: fixed; bottom: 90px; right: 20px; width: 45px; height: 45px;
    background-color: rgba(255, 255, 255, 0.9); color: var(--vermelho);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); cursor: pointer; z-index: 900;
    transition: opacity 0.3s, transform 0.3s; opacity: 0; pointer-events: none; border: 1px solid #eee;
}
#btn-topo.visivel { opacity: 1; pointer-events: auto; }
#btn-topo:hover { transform: translateY(-3px); background-color: white; }
/* ==================================================================
   5. NOVO SISTEMA DE AGENDAMENTO (VISUAL LIMPO FINAL)
   ================================================================== */

.agendamento-container {
    margin-bottom: 20px;
    padding: 5px;
    /* Sem bordas, sem fundo, para integrar ao modal */
}

/* 1. Toggle (Agora vs Agendar) */
.toggle-wrapper {
    background: #f5f5f5;
    padding: 4px;
    border-radius: 12px;
    display: flex;
    position: relative;
    margin-bottom: 25px;
}

.btn-toggle {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

.btn-toggle.ativo { color: var(--vermelho); }

.toggle-bg {
    position: absolute;
    top: 4px; left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: white;
    border-radius: 9px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
[data-mode="agendar"] .toggle-bg { transform: translateX(100%); }


/* 2. Botões de Dia */
.dias-grid {
    display: flex; 
    gap: 10px;
    margin-bottom: 25px;
}

.btn-dia {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; /* Para o input cobrir tudo */
    overflow: hidden;
}
.btn-dia:hover { background: #fafafa; border-color: #ccc; }

.btn-dia.selecionado {
    border-color: var(--vermelho);
    background: #fff5f5; /* Um vermelho muito clarinho */
    color: var(--vermelho);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.1);
}

.btn-dia span { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; opacity: 0.7; margin-bottom: 5px;}
.btn-dia strong { font-size: 1.1rem; line-height: 1; }
.btn-dia .material-icons { font-size: 1.4rem; margin-bottom: 2px; }

/* Input Invisível que cobre o botão "Outro" inteiro */
.input-data-hidden { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    opacity: 0; 
    cursor: pointer; 
    z-index: 10;
}


/* 3. Seletor de Horário (Stepper Limpo) */
.label-horarios {
    font-size: 0.9rem; font-weight: 700; color: #444; 
    margin-bottom: 15px; display: block; text-align: center;
}

.time-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px; /* Bem redondo */
    padding: 5px;
    max-width: 260px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-step {
    width: 45px; height: 45px;
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.btn-step:active { background: #ddd; transform: scale(0.9); }
.btn-step:disabled { color: #ccc; cursor: not-allowed; background: #f9f9f9; }

.time-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vermelho);
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}
/* Botões de Tipo de Entrega */
.btn-tipo-entrega {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 10px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.2s;
}
.btn-tipo-entrega.ativo {
    background: #fff0f0;
    border-color: var(--vermelho);
    color: var(--vermelho);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.15);
}
.btn-tipo-entrega:hover { background: #fafafa; }
/* Botões de Tipo de Entrega (Retirada/Delivery) */
.btn-tipo-entrega {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 10px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.2s;
    font-size: 0.95rem;
}
.btn-tipo-entrega.ativo {
    background: #fff0f0;
    border-color: var(--vermelho);
    color: var(--vermelho);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.15);
}
.btn-tipo-entrega:hover { background: #fafafa; }
/* --- CARTÃO FIDELIDADE (CASHBACK) --- */
.card-fidelidade {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #5d4037;
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    border: 1px solid #ffe082;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

/* Brilho no fundo */
.card-fidelidade::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 100px; height: 100px; background: rgba(255,255,255,0.2);
    border-radius: 50%; z-index: 0;
}

.fid-header { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; margin-bottom: 10px; }
.fid-titulo { font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.fid-badge { background: #fff; color: #E65100; font-weight: 800; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

.fid-nivel { font-size: 1.4rem; font-weight: 900; font-family: 'Anton', sans-serif; color: #3e2723; margin-bottom: 5px; position: relative; z-index: 1; text-transform: uppercase; line-height: 1; }

.fid-saldo-box { background: rgba(255,255,255,0.9); padding: 10px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; margin-top: 10px; position: relative; z-index: 1; }
.fid-saldo-valor { font-weight: 800; color: #2E7D32; font-size: 1.1rem; }
.fid-check { display: flex; align-items: center; gap: 5px; font-size: 0.9rem; font-weight: 600; cursor: pointer; }
.fid-check input { width: 18px; height: 18px; accent-color: #2E7D32; }
/* --- SELETOR FRITO / CONGELADO --- */
.switch-preparo {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin: 10px 0; background: #f5f5f5;
    padding: 8px; border-radius: 8px; font-size: 0.85rem; font-weight: bold;
}
.switch-preparo label { margin: 0; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.switch-preparo input[type="radio"] { accent-color: var(--primary); transform: scale(1.2); }
/* --- INDICADOR DE STATUS (BOLINHA) --- */
.status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    background: #f0f0f0; color: #666;
    transition: 0.3s;
}

.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; }

/* 🟢 ABERTO (Tudo Normal) */
.status-pill.aberto { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.status-pill.aberto .status-dot { background: #2E7D32; box-shadow: 0 0 5px #2E7D32; }

/* 🟡 SÓ RETIRADA (Aberto mas sem delivery) */
.status-pill.alerta { background: #FFF3E0; color: #E65100; border: 1px solid #FFE0B2; }
.status-pill.alerta .status-dot { background: #FF9800; box-shadow: 0 0 5px #FF9800; }

/* 🟠 ACEITA ENCOMENDAS (Fora do horário, mas pode pedir) */
.status-pill.encomenda { background: #FFF8E1; color: #F57C00; border: 1px solid #FFE0B2; }
.status-pill.encomenda .status-dot { background: #F57C00; box-shadow: 0 0 5px #F57C00; }

/* 🔴 FECHADO (Admin fechou ou fora de hora sem encomenda) */
.status-pill.fechado { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.status-pill.fechado .status-dot { background: #C62828; }