/* =============================================
   HAMBURGUERIA DO ZÉ - ESTILO PRINCIPAL
   ============================================= */

:root {
    --ze-primary: #E85D04;
    --ze-primary-light: #F07B2E;
    --ze-secondary: #DC2F02;
    --ze-dark: #370617;
    --ze-dark-medium: #6A040F;
    --ze-accent: #FAA307;
    --ze-accent-light: #FFBA08;
    --ze-white: #FFFFFF;
    --ze-off-white: #FFF8F0;
    --ze-gray-50: #F8F9FA;
    --ze-gray-100: #F1F5F9;
    --ze-gray-200: #E2E8F0;
    --ze-gray-400: #94A3B8;
    --ze-gray-500: #64748B;
    --ze-gray-700: #334155;
    --ze-gray-900: #0F172A;
    --ze-success: #10B981;
    --ze-danger: #EF4444;
    --ze-warning: #F59E0B;
    --ze-info: #3B82F6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6; color: var(--ze-gray-900);
    background-color: var(--ze-off-white); overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--ze-dark) 0%, var(--ze-dark-medium) 50%, var(--ze-secondary) 100%);
    color: var(--ze-white); padding: 12px 0;
    box-shadow: 0 4px 20px rgba(220, 47, 2, 0.3);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--ze-accent);
}
.header .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px;
}

.btn-imprimir-pedido {
    background: #3B82F6;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: .8rem;
    font-family: inherit;
    transition: .3s;
}
.btn-imprimir-pedido:hover {
    background: #2563EB;
    transform: translateY(-1px);
}


/* Imagem do produto no card */
.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.1);
}

.btn-usuario {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #E85D04;
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-usuario:hover {
    background: #E85D04;
    transform: translateY(-2px);
}
.btn-usuario-logado {
    border-color: #10B981;
}
.btn-usuario-logado:hover {
    background: #10B981;
}

/* Forçar SweetAlert2 a ficar na frente de tudo */
.swal2-container {
    z-index: 9999 !important;
}


.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { font-size: 2.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.logo-text h1 { font-size: 1.6rem; font-weight: 800; color: var(--ze-white); line-height: 1.2; }
.logo-text h1 span { color: var(--ze-accent); }
.logo-text p { font-size: 0.8rem; color: var(--ze-accent-light); font-style: italic; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Botões do Header */
.btn-carrinho, .btn-meus-pedidos, .btn-acompanhar {
    padding: 10px 16px; border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; transition: var(--transition);
    font-weight: 600; font-size: 0.9rem;
    backdrop-filter: blur(5px); white-space: nowrap;
    border: 2px solid transparent; color: var(--ze-white);
}
.btn-carrinho { background: rgba(255,255,255,0.1); border-color: var(--ze-accent); }
.btn-carrinho:hover { background: var(--ze-primary); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,93,4,0.4); }

.btn-meus-pedidos { background: rgba(59,130,246,0.2); border-color: #3B82F6; }
.btn-meus-pedidos:hover { background: #3B82F6; border-color: #60A5FA; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.4); }

.btn-acompanhar { background: rgba(16,185,129,0.2); border-color: var(--ze-success); }
.btn-acompanhar:hover { background: var(--ze-success); border-color: #059669; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16,185,129,0.4); }
.btn-acompanhar i { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

.carrinho-badge {
    background: var(--ze-accent); color: var(--ze-dark);
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem;
}
.carrinho-total { font-weight: 600; }

.btn-share {
    background: rgba(255,255,255,0.1); border: 2px solid var(--ze-accent);
    color: var(--ze-white); width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; transition: var(--transition); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.btn-share:hover { background: var(--ze-primary); transform: rotate(15deg); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(55,6,23,0.92),rgba(220,47,2,0.88)),url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=1200&q=80') center/cover;
    padding: 80px 0; text-align: center; color: var(--ze-white);
}
.hero-content { position: relative; z-index: 2; }
.hero h2 { font-size: 3.5rem; font-weight: 800; color: var(--ze-accent); margin-bottom: 15px; text-shadow: 3px 3px 6px rgba(0,0,0,0.5); animation: fadeInUp 0.8s ease; }
.hero p { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.95; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-info { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-badge { background: rgba(0,0,0,0.5); padding: 12px 24px; border-radius: var(--radius-full); border: 2px solid var(--ze-accent); display: flex; align-items: center; gap: 8px; font-weight: 600; backdrop-filter: blur(10px); }
.hero-badge i { color: var(--ze-accent); }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ===== FILTROS ===== */
.filtros { display: flex; justify-content: center; gap: 10px; margin: 40px 0 30px; flex-wrap: wrap; }
.filtro-btn {
    background: var(--ze-white); border: 2px solid var(--ze-gray-200);
    padding: 10px 20px; border-radius: var(--radius-full);
    font-weight: 600; color: var(--ze-gray-700); cursor: pointer;
    transition: var(--transition); font-size: 0.9rem;
    display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.filtro-btn:hover { border-color: var(--ze-primary); color: var(--ze-primary); transform: translateY(-2px); }
.filtro-btn.active { background: var(--ze-primary); border-color: var(--ze-primary); color: var(--ze-white); box-shadow: 0 4px 15px rgba(232,93,4,0.3); }

/* ===== CARDÁPIO ===== */
.cardapio { padding: 20px 0 60px; }
.cardapio-titulo { text-align: center; font-size: 2.2rem; font-weight: 800; color: var(--ze-dark); margin-bottom: 40px; position: relative; padding-bottom: 15px; }
.cardapio-titulo::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:100px; height:4px; background:linear-gradient(90deg,var(--ze-accent),var(--ze-primary)); border-radius:2px; }

.produtos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }

.produto-card {
    background: var(--ze-white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); border: 2px solid transparent; position: relative;
}
.produto-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--ze-primary); }
.produto-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--ze-accent),var(--ze-primary),var(--ze-secondary)); transform:scaleX(0); transition:transform 0.4s ease; }
.produto-card:hover::before { transform:scaleX(1); }

.produto-imagem { height: 200px; background: linear-gradient(135deg,var(--ze-dark) 0%,var(--ze-primary-light) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.produto-imagem i { font-size: 5rem; color: var(--ze-accent); text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.produto-badge-destaque { position:absolute; top:10px; right:10px; background:var(--ze-accent); color:var(--ze-dark); padding:4px 12px; border-radius:var(--radius-full); font-size:0.75rem; font-weight:700; }

.produto-info { padding: 20px; }
.produto-categoria { font-size:0.75rem; color:var(--ze-primary); text-transform:uppercase; font-weight:700; letter-spacing:1px; margin-bottom:5px; }
.produto-nome { font-size:1.2rem; font-weight:700; color:var(--ze-dark); margin-bottom:8px; }
.produto-descricao { color:var(--ze-gray-500); font-size:0.9rem; line-height:1.5; margin-bottom:15px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.produto-footer { display:flex; justify-content:space-between; align-items:center; }
.produto-preco { font-size:1.5rem; font-weight:800; color:var(--ze-primary); }

.btn-adicionar { background:var(--ze-primary); color:var(--ze-white); border:none; padding:10px 20px; border-radius:var(--radius-full); cursor:pointer; font-weight:600; display:flex; align-items:center; gap:6px; transition:var(--transition); font-size:0.9rem; border:2px solid transparent; }
.btn-adicionar:hover { background:var(--ze-secondary); transform:scale(1.05); box-shadow:0 5px 15px rgba(232,93,4,0.3); border-color:var(--ze-accent); }

/* ===== MODAIS ===== */
.modal-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:2000; align-items:center; justify-content:center; padding:15px; backdrop-filter:blur(4px); }
.modal-overlay.active { display:flex; }

.modal-content { background:var(--ze-white); border-radius:var(--radius-xl); width:95%; max-width:550px; max-height:85vh; display:flex; flex-direction:column; box-shadow:var(--shadow-xl); border:3px solid var(--ze-primary); animation:modalSlideIn 0.3s ease; }
@keyframes modalSlideIn { from{opacity:0;transform:translateY(20px) scale(0.95)} to{opacity:1;transform:translateY(0) scale(1)} }

.modal-header { padding:20px 25px; border-bottom:2px solid var(--ze-accent); display:flex; justify-content:space-between; align-items:center; background:linear-gradient(135deg,var(--ze-dark),var(--ze-primary)); color:var(--ze-white); border-radius:calc(var(--radius-xl) - 3px) calc(var(--radius-xl) - 3px) 0 0; }
.modal-header h3 { display:flex; align-items:center; gap:10px; font-size:1.2rem; }
.modal-header i { color:var(--ze-accent); }
.modal-close { background:none; border:none; font-size:1.8rem; cursor:pointer; color:var(--ze-accent); transition:var(--transition); line-height:1; }
.modal-close:hover { color:var(--ze-white); transform:rotate(90deg); }
.modal-body { padding:20px 25px; overflow-y:auto; flex:1; }
.modal-footer { padding:20px 25px; border-top:2px solid var(--ze-gray-100); display:flex; gap:12px; background:var(--ze-gray-50); border-radius:0 0 calc(var(--radius-xl) - 3px) calc(var(--radius-xl) - 3px); }

/* ===== CARRINHO ===== */
.carrinho-item { display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid var(--ze-gray-100); }
.carrinho-item:last-child { border-bottom:none; }
.carrinho-item-info { flex:1; }
.carrinho-item-info h4 { font-size:0.95rem; color:var(--ze-gray-900); margin-bottom:2px; }
.carrinho-item-info p { font-size:0.8rem; color:var(--ze-gray-500); }
.carrinho-item-quantidade { display:flex; align-items:center; gap:8px; }
.btn-qtd { width:30px; height:30px; border:2px solid var(--ze-primary); background:var(--ze-white); color:var(--ze-primary); border-radius:50%; cursor:pointer; font-weight:700; transition:var(--transition); display:flex; align-items:center; justify-content:center; font-size:1rem; }
.btn-qtd:hover { background:var(--ze-primary); color:var(--ze-white); }
.qtd-numero { font-weight:700; min-width:20px; text-align:center; }
.carrinho-item-preco { font-weight:700; color:var(--ze-primary); min-width:70px; text-align:right; }
.btn-remover { background:none; border:none; color:var(--ze-danger); cursor:pointer; font-size:1rem; transition:var(--transition); }
.btn-remover:hover { color:#dc2626; transform:scale(1.2); }
.carrinho-vazio { text-align:center; padding:40px 20px; color:var(--ze-gray-400); }
.carrinho-vazio i { font-size:4rem; margin-bottom:15px; opacity:0.5; }

.carrinho-resumo { background:var(--ze-gray-50); padding:15px; border-radius:var(--radius); margin-top:15px; border:2px solid var(--ze-accent); }
.resumo-linha { display:flex; justify-content:space-between; margin-bottom:8px; font-size:0.9rem; }
.resumo-linha.total { font-size:1.2rem; font-weight:800; color:var(--ze-primary); border-top:2px solid var(--ze-primary); padding-top:8px; margin-top:8px; }

/* ===== FORMULÁRIO ===== */
.form-group { margin-bottom:16px; }
.form-group label { display:block; margin-bottom:6px; font-weight:600; color:var(--ze-gray-700); font-size:0.9rem; display:flex; align-items:center; gap:6px; }
.form-group label i { color:var(--ze-primary); width:16px; text-align:center; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:12px 15px; border:2px solid var(--ze-gray-200); border-radius:var(--radius); font-family:inherit; font-size:0.95rem; transition:var(--transition); background:var(--ze-white); }
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--ze-primary); box-shadow:0 0 0 3px rgba(232,93,4,0.1); }
.form-group small { display:block; margin-top:5px; font-size:0.8rem; color:var(--ze-gray-400); }

/* ===== PAGAMENTO ===== */
.payment-methods { display:flex; gap:10px; flex-wrap:wrap; }
.payment-option { flex:1; min-width:100px; padding:12px 15px; border:2px solid var(--ze-gray-200); border-radius:var(--radius); background:var(--ze-white); cursor:pointer; text-align:center; transition:var(--transition); font-weight:600; font-size:0.85rem; }
.payment-option i { font-size:1.5rem; display:block; margin-bottom:5px; }
.payment-option:hover { border-color:var(--ze-primary); }
.payment-option.active { border-color:var(--ze-primary); background:#FFF3E0; }
.payment-option.pix i { color:#32BBAD; }
.payment-option.cartao i { color:#009EE3; }
.payment-option.dinheiro i { color:#7BBA3C; }

/* ===== BOTÕES ===== */
.btn { padding:12px 24px; border-radius:var(--radius); font-weight:600; cursor:pointer; transition:var(--transition); border:none; font-size:0.95rem; display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:inherit; }
.btn-primary { background:var(--ze-primary); color:var(--ze-white); flex:1; }
.btn-primary:hover { background:var(--ze-secondary); transform:translateY(-2px); box-shadow:0 5px 15px rgba(232,93,4,0.3); }
.btn-outline { background:transparent; border:2px solid var(--ze-gray-200); color:var(--ze-gray-700); flex:1; }
.btn-outline:hover { background:var(--ze-gray-100); }
.btn-whatsapp { background:#25D366; color:white; flex:1; }
.btn-whatsapp:hover { background:#128C7E; transform:translateY(-2px); }
.btn-block { width:100%; }

/* ===== PIX ===== */
.pix-qr { margin:20px auto; padding:15px; background:var(--ze-white); border-radius:var(--radius); display:inline-block; border:2px solid var(--ze-gray-200); }
.pix-copia-cola { background:var(--ze-gray-50); padding:12px; border-radius:var(--radius); font-family:'Courier New',monospace; font-size:0.8rem; word-break:break-all; margin:15px 0; border:1px solid var(--ze-gray-200); }
.btn-copiar { background:var(--ze-info); color:var(--ze-white); border:none; padding:8px 16px; border-radius:var(--radius-full); cursor:pointer; font-weight:600; font-size:0.85rem; margin:5px; }
.btn-copiar:hover { background:#2563EB; }



/* ===== PWA BANNER ===== */
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Botão de atualização */
.toast-atualizacao {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1F2937;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 5000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    cursor: pointer;
    border: 2px solid #FAA307;
}

.toast-atualizacao.show {
    display: block;
    animation: slideUp 0.5s ease;
}


/* ===== COMPARTILHAR ===== */
.btn-share-option {
    padding: 12px 15px; border-radius: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;
    font-size: 0.85rem; display: flex; align-items: center;
    justify-content: center; gap: 8px; font-family: inherit; color: white;
}
.btn-share-option:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-share-option i { font-size: 1.2rem; }
.btn-share-option.whatsapp { background: #25D366; }
.btn-share-option.whatsapp:hover { background: #128C7E; }
.btn-share-option.facebook { background: #1877F2; }
.btn-share-option.facebook:hover { background: #0D5CB6; }
.btn-share-option.telegram { background: #0088cc; }
.btn-share-option.telegram:hover { background: #006699; }
.btn-share-option.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-share-option.instagram:hover { opacity: 0.9; }
.btn-share-option.nativo { background: #64748B; color: white; }
.btn-share-option.nativo:hover { background: #475569; }

.toast-copiado {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #10B981; color: white; padding: 20px 30px;
    border-radius: 16px; font-weight: 700; font-size: 1.1rem;
    z-index: 6000; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 10px;
}
.toast-copiado.show { animation: popIn 0.3s ease forwards; }
@keyframes popIn { 0%{transform:translate(-50%,-50%) scale(0);opacity:0} 80%{transform:translate(-50%,-50%) scale(1.1)} 100%{transform:translate(-50%,-50%) scale(1);opacity:1} }
@keyframes popOut { 0%{transform:translate(-50%,-50%) scale(1);opacity:1} 100%{transform:translate(-50%,-50%) scale(0);opacity:0} }

/* ===== MEUS PEDIDOS ===== */
.busca-tabs { display: flex; gap: 10px; margin-bottom: 15px; }
.busca-tab { flex: 1; padding: 12px; border: 2px solid var(--ze-gray-200); border-radius: 12px; background: var(--ze-white); cursor: pointer; text-align: center; font-weight: 600; transition: all 0.3s; font-size: 0.85rem; }
.busca-tab:hover { border-color: var(--ze-primary); }
.busca-tab.active { background: var(--ze-primary); color: var(--ze-white); border-color: var(--ze-primary); }
.busca-tab i { display: block; font-size: 1.2rem; margin-bottom: 3px; }

.pedidos-lista { display: flex; flex-direction: column; gap: 12px; max-height: 350px; overflow-y: auto; }
.pedido-mini-card { background: var(--ze-white); border-radius: 12px; padding: 15px; border: 2px solid var(--ze-gray-200); border-left: 4px solid var(--ze-primary); cursor: pointer; transition: all 0.3s; }
.pedido-mini-card:hover { border-color: var(--ze-primary); transform: translateX(3px); box-shadow: 0 5px 15px rgba(232,93,4,0.1); }
.pedido-mini-card.status-confirmado { border-left-color: #3B82F6; }
.pedido-mini-card.status-em_preparo { border-left-color: #8B5CF6; }
.pedido-mini-card.status-saiu_entrega { border-left-color: #EC4899; }
.pedido-mini-card.status-entregue { border-left-color: #10B981; }
.pedido-mini-card.status-cancelado { border-left-color: #EF4444; opacity: 0.6; }

.pedido-mini-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pedido-mini-numero { font-weight: 700; font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--ze-gray-900); }
.pedido-mini-data { font-size: 0.75rem; color: var(--ze-gray-500); }
.pedido-mini-body { display: flex; justify-content: space-between; align-items: center; }
.pedido-mini-valor { font-weight: 700; color: var(--ze-primary); font-size: 1rem; }

.badge { padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-info { background: #DBEAFE; color: #1E40AF; }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-purple { background: #EDE9FE; color: #5B21B6; }
.badge-pink { background: #FCE7F3; color: #9D174D; }
.badge-danger { background: #FEE2E2; color: #991B1B; }

.pedido-detalhe-expandido { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--ze-gray-200); }
.pedido-detalhe-expandido.active { display: block; }

.status-progress-mini { display: flex; align-items: center; justify-content: center; gap: 0; margin: 12px 0; }
.step-mini { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 0.6rem; }
.step-mini-icon { width: 32px; height: 32px; border-radius: 50%; background: #E2E8F0; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; border: 2px solid #E2E8F0; transition: all 0.3s; }
.step-mini.completed .step-mini-icon { background: #10B981; border-color: #059669; }
.step-mini.active .step-mini-icon { background: var(--ze-primary); border-color: var(--ze-accent); transform: scale(1.1); }
.step-mini-line { width: 20px; height: 2px; background: #E2E8F0; transition: all 0.3s; }
.step-mini-line.completed { background: #10B981; }
.itens-mini { font-size: 0.8rem; color: var(--ze-gray-700); margin-top: 8px; }
.itens-mini div { padding: 3px 0; display: flex; justify-content: space-between; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 20px; right: 20px; padding: 14px 24px; border-radius: var(--radius); color: var(--ze-white); font-weight: 600; z-index: 3000; box-shadow: var(--shadow-lg); max-width: 400px; }
.toast-success { background: var(--ze-success); }
.toast-error { background: var(--ze-danger); }
.toast-info { background: var(--ze-info); }
@keyframes toastIn { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes toastOut { from{transform:translateX(0);opacity:1} to{transform:translateX(100%);opacity:0} }

/* ===== LOADING ===== */
.loading-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.9); z-index: 4000; align-items: center; justify-content: center; flex-direction: column; gap: 15px; }
.loading-overlay.active { display: flex; }
.spinner { width: 50px; height: 50px; border: 4px solid var(--ze-gray-200); border-top-color: var(--ze-primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ===== TOAST PEDIDO ===== */
.toast-pedido { position: fixed; top: 20px; right: 20px; background: var(--ze-white); border-radius: 12px; padding: 15px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 5000; border-left: 4px solid var(--ze-success); animation: slideInRight 0.3s ease; max-width: 350px; display: none; }
.toast-pedido.show { display: block; }
.toast-pedido-titulo { font-weight: 700; color: var(--ze-gray-900); margin-bottom: 5px; }
.toast-pedido-numero { font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--ze-primary); }
.toast-pedido-btn { margin-top: 10px; padding: 8px 16px; background: var(--ze-primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.8rem; }
@keyframes slideInRight { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #1a1a1a 0%, var(--ze-dark) 100%); color: var(--ze-white); padding: 50px 0 0; border-top: 4px solid var(--ze-accent); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-section h3 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--ze-white); }
.footer-section h3 i { color: var(--ze-accent); }
.footer-section p { color: #ccc; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer-section p i { color: var(--ze-primary); width: 16px; text-align: center; }
.footer-bottom { background: rgba(0,0,0,0.8); padding: 20px 0; text-align: center; border-top: 1px solid #333; font-size: 0.85rem; color: #999; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .header .container { flex-direction: column; text-align: center; }
    .header-actions { flex-wrap: wrap; justify-content: center; }
    .btn-meus-pedidos-texto, .btn-acompanhar-texto { display: none; }
    .btn-meus-pedidos, .btn-acompanhar { padding: 10px; }
    .hero h2 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .produtos-grid { grid-template-columns: 1fr; gap: 15px; }
    .modal-footer { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-section h3, .footer-section p { justify-content: center; }
}
@media (max-width: 480px) {
    .hero { padding: 40px 0; }
    .hero h2 { font-size: 1.8rem; }
    .cardapio-titulo { font-size: 1.6rem; }
    .produto-preco { font-size: 1.2rem; }
}