@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* ── Paleta moderna iFood/Rappi ── */
  --primary:       #E85D25;
  --primary-dark:  #c44d1a;
  --primary-light: rgba(232,93,37,0.10);
  --primary-glow:  rgba(232,93,37,0.22);

  --bg:        #F5F5F5;
  --surface:   #FFFFFF;
  --surface2:  #F8F8F8;
  --surface3:  #FFF8F4;

  --border:    #E5E7EB;
  --border2:   #D1D5DB;

  --green:        #22C55E;
  --green-light:  rgba(34,197,94,0.10);
  --amber:        #F59E0B;
  --red:          #EF4444;

  --text:   #222222;
  --text2:  #6B7280;
  --text3:  #9CA3AF;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-2xl: 24px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-primary: 0 4px 16px rgba(232,93,37,0.28);
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
button, [onclick] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   LOADING
═══════════════════════════════════════ */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--surface);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; z-index: 9999;
}
.loading-logo {
  font-size: 56px;
  animation: pulse 1.5s ease-in-out infinite;
}
.loading-txt {
  font-size: 14px;
  color: var(--text2);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: .7; }
}

/* ═══════════════════════════════════════
   HEADER — branco, moderno
═══════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  height: 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.header-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  align-items: center;
}
.header-nome {
  font-size: 17px; font-weight: 800;
  color: var(--text);
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.3px;
}
.header-status {
  font-size: 11px; margin-top: 2px;
  font-weight: 700; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 5px;
}
.header-status.aberta  { color: var(--green); }
.header-status.fechada { color: var(--red); }
.header-status.aberta::before,
.header-status.fechada::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.header-status.aberta::before  {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.header-status.fechada::before { background: var(--red); }

/* Botão carrinho no header — apenas ícone, discreto */
.carrinho-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--primary);
  color: #fff; border: none;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: all .15s; flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  box-shadow: var(--shadow-primary);
}
.carrinho-btn:active { transform: scale(.95); }
.carrinho-total { font-size: 12px; opacity: .9; }

/* Menu placeholder (esquerda) */
.header-menu-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  font-size: 18px;
  color: var(--text2);
  transition: background .15s;
}
.header-menu-btn:active { background: var(--border); }

/* ═══════════════════════════════════════
   BANNER / CARROSSEL
═══════════════════════════════════════ */
.banner-carousel {
  padding: 12px 16px 8px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.banner-track {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 2px;
}
.banner-track::-webkit-scrollbar { display: none; }
.banner-slide {
  min-width: calc(100% - 24px);
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  padding: 18px 20px;
  display: flex; flex-direction: column;
  gap: 4px; position: relative;
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #c44d1a 100%);
  box-shadow: var(--shadow-primary);
}
.banner-slide::after {
  content: "";
  position: absolute; right: -20px; top: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.banner-badge {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: .07em;
  display: flex; align-items: center; gap: 5px;
}
.banner-title {
  font-size: 17px; font-weight: 800;
  color: #fff; line-height: 1.25;
  letter-spacing: -0.3px;
}
.banner-price {
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
}
.banner-dots {
  display: flex; justify-content: center;
  gap: 5px; margin-top: 8px;
}
.banner-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border2);
  transition: all .2s;
}
.banner-dot.active {
  width: 18px;
  border-radius: 3px;
  background: var(--primary);
}

/* ═══════════════════════════════════════
   CONTENT
═══════════════════════════════════════ */
#content { padding: 0 0 100px; }

/* ═══════════════════════════════════════
   CATEGORIAS — círculos com scroll horizontal
═══════════════════════════════════════ */
.cats-wrap {
  overflow-x: auto;
  padding: 14px 16px 12px;
  display: flex; gap: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 60px; z-index: 90;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cats-wrap::-webkit-scrollbar { display: none; }

.cat-pill {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform .15s;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
}
.cat-pill:active { transform: scale(.92); }

.cat-pill-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: all .18s;
  box-shadow: var(--shadow-sm);
}
.cat-pill-label {
  font-size: 11px; font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  transition: color .18s;
}
.cat-pill.active .cat-pill-circle {
  background: var(--primary-light);
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(232,93,37,0.20);
}
.cat-pill.active .cat-pill-label {
  color: var(--primary);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   SEÇÃO "MAIS PEDIDOS"
═══════════════════════════════════════ */
.mais-pedidos-section {
  padding: 18px 16px 6px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.section-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 16px; font-weight: 800;
  color: var(--text);
  letter-spacing: -0.2px;
}
.mais-pedidos-track {
  display: flex; gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.mais-pedidos-track::-webkit-scrollbar { display: none; }
.mais-pedido-card {
  min-width: 148px; max-width: 148px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 12px;
  display: flex; flex-direction: column;
  gap: 6px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s, transform .15s;
  cursor: pointer;
  position: relative;
}
.mais-pedido-card:active {
  transform: scale(.97);
  box-shadow: var(--shadow-md);
}
.mp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(232,93,37,0.10);
  color: var(--primary);
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .03em; width: fit-content;
}
.mp-nome {
  font-size: 13px; font-weight: 700;
  color: var(--text); line-height: 1.3;
}
.mp-rating {
  font-size: 11px; color: var(--amber);
  font-weight: 600; display: flex; align-items: center; gap: 3px;
}
.mp-rating-num { color: var(--text2); font-weight: 500; }
.mp-preco {
  font-size: 14px; font-weight: 800;
  color: var(--primary);
}
.mp-add-btn {
  position: absolute; bottom: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  border: none; color: #fff;
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-primary);
  transition: transform .12s;
}
.mp-add-btn:active { transform: scale(.88); }

/* ═══════════════════════════════════════
   LISTA DE CATEGORIAS (cards grandes)
═══════════════════════════════════════ */
.cat-cards-section {
  padding: 8px 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  transition: all .15s;
  box-shadow: var(--shadow-sm);
}
.cat-card:active {
  background: var(--surface3);
  box-shadow: var(--shadow-md);
  transform: scale(.99);
}
.cat-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  border: 1.5px solid rgba(232,93,37,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.cat-card-info { flex: 1; min-width: 0; }
.cat-card-nome {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.cat-card-sub {
  font-size: 12px; color: var(--text2);
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.cat-card-arrow {
  color: var(--text3); font-size: 20px;
  font-weight: 700; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SEÇÃO DE CATEGORIA (produtos)
═══════════════════════════════════════ */
.cat-section { padding: 16px 16px 0; }
.cat-title {
  font-size: 16px; font-weight: 800;
  color: var(--text); letter-spacing: -0.2px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cat-title::after {
  content: ""; flex: 1; height: 2px;
  background: linear-gradient(to right, var(--border), transparent);
  border-radius: 1px;
}

/* ═══════════════════════════════════════
   CARDS DE PRODUTO — moderno, sem tabela
═══════════════════════════════════════ */
.prod-list {
  display: flex; flex-direction: column; gap: 10px;
}
.prod-card {
  display: flex; align-items: center;
  gap: 14px; padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all .15s;
  box-shadow: var(--shadow-sm);
  -webkit-user-select: none;
}
.prod-card:active {
  background: var(--surface3);
  box-shadow: var(--shadow-md);
  transform: scale(.99);
}
/* Remove bordas individuais do topo/baixo que existiam antes */
.prod-card:first-child,
.prod-card:last-child,
.prod-card.only {
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
}
.prod-info { flex: 1; min-width: 0; }
.prod-nome {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
  line-height: 1.3;
}
.prod-desc {
  font-size: 12px; color: var(--text2);
  margin-bottom: 6px; line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-preco {
  font-size: 15px; font-weight: 800;
  color: var(--primary);
}
.prod-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  border: none; color: #fff;
  font-size: 22px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .1s;
  box-shadow: var(--shadow-primary);
}
.prod-add:active { transform: scale(.88); }
.prod-indisponivel { opacity: .45; cursor: not-allowed; }

/* ═══════════════════════════════════════
   AÇAÍ SECTION
═══════════════════════════════════════ */
.acai-section { padding: 16px; }

/* ═══════════════════════════════════════
   OVERLAY & DRAWER
═══════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  z-index: 201; max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,.72,0,1);
}
.drawer.open { transform: translateY(0); }
.modal-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  z-index: 201; max-height: 90vh;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,.72,0,1);
}
.modal-bottom.open { transform: translateY(0); }

/* Alça visual do drawer */
.drawer::before,
.modal-bottom::before {
  content: "";
  display: block;
  width: 36px; height: 4px;
  border-radius: 2px;
  background: var(--border2);
  margin: 10px auto 0;
  flex-shrink: 0;
}

.drawer-header {
  padding: 10px 16px 14px;
  display: flex; align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-title {
  font-size: 16px; font-weight: 800;
  color: var(--text);
}
.drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  color: var(--text2); font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.drawer-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.drawer-body {
  flex: 1; overflow-y: auto;
  padding: 14px 16px;
  -webkit-overflow-scrolling: touch;
}
.drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0; background: var(--surface);
}

/* ═══════════════════════════════════════
   CARRINHO — itens no drawer
═══════════════════════════════════════ */
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-nome {
  font-size: 13px; font-weight: 700;
  color: var(--text);
}
.cart-item-sub {
  font-size: 11px; color: var(--text2);
  margin-top: 2px; line-height: 1.4;
}
.cart-item-preco {
  font-size: 13px; font-weight: 800;
  color: var(--primary); white-space: nowrap;
  margin-top: 3px;
}
.qty-ctrl {
  display: flex; align-items: center;
  gap: 8px; flex-shrink: 0;
}
.qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  background: var(--surface2); color: var(--text);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.qty-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.qty-num {
  font-size: 14px; font-weight: 800;
  color: var(--text); min-width: 18px; text-align: center;
}
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text2); }
.cart-empty-icon { font-size: 44px; margin-bottom: 12px; }

/* ═══════════════════════════════════════
   CARRINHO FLUTUANTE (barra inferior)
═══════════════════════════════════════ */
.carrinho-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 150;
  background: var(--text);
  border-radius: var(--r-2xl);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  animation: slideUp .3s cubic-bezier(.32,.72,0,1);
}
.carrinho-bar:active {
  transform: scale(.98);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.carrinho-bar-icon {
  font-size: 20px;
  background: rgba(255,255,255,0.12);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.carrinho-bar-info { flex: 1; min-width: 0; }
.carrinho-bar-count {
  font-size: 12px; color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.carrinho-bar-label {
  font-size: 14px; font-weight: 800;
  color: #fff;
}
.carrinho-bar-btn {
  background: var(--primary);
  color: #fff; border: none;
  padding: 10px 16px;
  border-radius: var(--r-lg);
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

/* ═══════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════ */
.checkout-section { margin-bottom: 18px; }
.checkout-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text3); margin-bottom: 8px;
}
.tipo-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tipo-btn {
  padding: 14px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border2);
  background: var(--surface2); color: var(--text2);
  font-size: 13px; font-weight: 700;
  cursor: pointer; text-align: center;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.tipo-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.inp {
  width: 100%; padding: 12px 14px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text); font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 10px;
}
.inp:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: var(--surface);
}
.inp::placeholder { color: var(--text3); }

/* ═══════════════════════════════════════
   BOTÕES
═══════════════════════════════════════ */
.btn-primary {
  width: 100%; padding: 15px;
  background: var(--primary); border: none;
  border-radius: var(--r-lg); color: #fff;
  font-size: 15px; font-weight: 800;
  cursor: pointer; transition: all .15s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.01em;
}
.btn-primary:active { transform: scale(.98); opacity: .9; }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.btn-secondary {
  width: 100%; padding: 13px;
  background: var(--surface2);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-lg); color: var(--text2);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .15s;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:active { background: var(--border); }

/* ═══════════════════════════════════════
   AÇAÍ MODAL
═══════════════════════════════════════ */
.acai-step { margin-bottom: 20px; }
.acai-step-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text3); margin-bottom: 10px;
}
.acai-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.acai-op {
  padding: 14px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  background: var(--surface2);
  cursor: pointer; text-align: center;
  transition: all .15s;
  box-shadow: var(--shadow-sm);
}
.acai-op:active { transform: scale(.96); }
.acai-op.sel {
  border-color: var(--primary);
  background: var(--primary-light);
}
.acai-op .op-nome {
  font-size: 13px; font-weight: 700;
  color: var(--text);
}
.acai-op .op-preco {
  font-size: 11px; color: var(--text2); margin-top: 3px;
}
.acai-op.sel .op-nome { color: var(--primary); }

.adicional-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.adicional-item:last-child { border-bottom: none; }
.adicional-nome {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.adicional-preco { font-size: 12px; color: var(--text2); margin-top: 2px; }
.adicional-check {
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 2px solid var(--border2);
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
  flex-shrink: 0; font-size: 13px; font-weight: 700;
}
.adicional-check.on {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════
   CONFIRMAÇÃO
═══════════════════════════════════════ */
.confirm-screen {
  padding: 40px 20px;
  text-align: center;
}
.confirm-icon { font-size: 64px; margin-bottom: 16px; }
.confirm-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.confirm-sub {
  font-size: 14px; color: var(--text2);
  margin-bottom: 24px; line-height: 1.6;
}
.confirm-num {
  display: inline-block;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--r-lg);
  padding: 8px 28px;
  font-size: 22px; font-weight: 800;
  color: var(--primary); margin-bottom: 24px;
  font-family: 'DM Mono', monospace;
}

/* ═══════════════════════════════════════
   FECHADO
═══════════════════════════════════════ */
.fechado-screen { padding: 60px 20px; text-align: center; }
.fechado-icon { font-size: 56px; margin-bottom: 16px; }
.fechado-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.fechado-sub { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 11px 22px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; z-index: 999;
  animation: toastUp .22s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  font-family: 'DM Sans', sans-serif;
}
@keyframes toastUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

/* ═══════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════ */
@media (min-width: 480px) {
  .banner-slide { min-width: 360px; }
  .mais-pedido-card { min-width: 160px; max-width: 160px; }
}
@media (min-width: 768px) {
  .prod-list { display: grid; grid-template-columns: repeat(2,1fr); }
  .cat-cards-section { display: grid; grid-template-columns: repeat(2,1fr); }
  #content { max-width: 700px; margin: 0 auto; }
  .header { max-width: 700px; margin: 0 auto; }
  .cats-wrap { max-width: 700px; margin: 0 auto; }
}