/* ======================================================================
   MULTIGIRO ATACADÃO — Estilo do site (redesign)
   Identidade: dourado/âmbar (marca) + grafite escuro (estrutura)
   Verde = ações de compra (adicionar/finalizar) · Vermelho = esgotado
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*{ box-sizing: border-box; }

:root{
  /* Marca */
  --brand:        #f59e0b;
  --brand-strong: #d97706;
  --brand-soft:   #fff4dc;

  /* Estrutura escura */
  --ink:        #15171d;
  --ink-2:      #20242d;
  --ink-soft:   #3a4150;

  /* Superfícies / fundo */
  --paper:  #ffffff;
  --bg-1:   #fbf9f4;
  --bg-2:   #efe9dd;

  /* Ações */
  --add:        #16a34a;
  --add-strong: #15803d;
  --danger:     #ef4444;
  --danger-strong: #dc2626;

  /* Texto */
  --text:   #1b1f27;
  --muted:  #7a8190;

  /* Linhas e sombras */
  --line:     rgba(21,23,29,0.08);
  --shadow-sm: 0 6px 16px rgba(16,18,29,0.08);
  --shadow-md: 0 16px 36px rgba(16,18,29,0.12);
  --shadow-lg: 0 26px 60px rgba(16,18,29,0.20);

  /* Raios */
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
}

body{
  margin: 0;
  padding: 16px 14px 0;
  min-height: 100vh;
  background:
    radial-gradient(1100px 480px at 50% -160px, rgba(245,158,11,0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  font-family: 'Inter', system-ui, Arial, sans-serif;
  text-align: center;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

#page-transition{ display: none; }

::selection{ background: var(--brand); color: #fff; }


/* ======================================================
   TOPO (home): hero escuro com logo + mascote
   ====================================================== */
.topo{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 920px;
  margin: 8px auto 22px;
  padding: 30px 28px;
  border-radius: 28px;
  background:
    radial-gradient(420px 220px at 18% 0%, rgba(245,158,11,0.28), transparent 70%),
    linear-gradient(160deg, #1d2029 0%, #14161c 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.topo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 120% 130%, rgba(245,158,11,0.16), transparent 60%);
  pointer-events: none;
}

.logoescrita img{
  width: 280px;
  max-width: 46vw;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.logo img{
  width: 150px;
  max-width: 30vw;
  height: auto;
  animation: flutuar 3.4s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.4));
}

@keyframes flutuar{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-9px); }
}


/* ======================================================
   TÍTULOS
   ====================================================== */
.subnome{ margin: 18px auto 6px; }

.subnome h3{
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}

h1{
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin: 10px auto 4px;
}

h3{
  font-weight: 700;
  color: var(--muted);
  font-size: 15px;
  margin: 6px auto 16px;
}

h2{
  display: inline-block;
  background: var(--paper);
  padding: 13px 24px;
  border-radius: var(--r-md);
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin: 18px auto 22px;
}

#total{ color: var(--add-strong); }


/* ======================================================
   BARRA DE PESQUISA
   ====================================================== */
.barra-pesquisa{
  max-width: 560px;
  margin: 16px auto 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.barra-pesquisa:focus-within{
  border-color: rgba(245,158,11,0.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.16), var(--shadow-sm);
}

.icone-pesquisa{ font-size: 18px; opacity: .7; }

.barra-pesquisa input{
  flex: 1;
  border: none;
  outline: none;
  height: 48px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
}

.barra-pesquisa input::placeholder{ font-weight: 500; color: #9aa1ad; }

/* input de busca do index (sem wrapper de ícone) */
#pesquisa-index{
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
#pesquisa-index::placeholder{ color: #9aa1ad; font-weight: 500; }
#pesquisa-index:focus{
  border-color: rgba(245,158,11,0.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.16), var(--shadow-sm);
}
.barra-pesquisa:has(#pesquisa-index){
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}


/* ======================================================
   RESULTADOS DA BUSCA (index)
   ====================================================== */
.resultados-menu{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.resultado-lista{
  width: min(560px, 94%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resultado-item{
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.resultado-item:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.resultado-img{
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #f6f3ec;
  padding: 5px;
}

.resultado-info{ display: flex; flex-direction: column; width: 100%; text-align: left; }
.resultado-nome{ font-weight: 800; font-size: 14.5px; color: var(--ink); line-height: 1.2; }
.resultado-meta{ display: flex; justify-content: space-between; gap: 10px; margin-top: 5px; font-size: 12px; }
.resultado-cat{ color: var(--muted); font-weight: 600; }
.resultado-preco{ color: var(--add-strong); font-weight: 800; }


/* ======================================================
   MENU DE CATEGORIAS (home e submenu de destilados)
   ====================================================== */
.menu{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 22px auto 28px;
}

.menu a{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.menu a::before{
  content: attr(data-icon);
  font-size: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.25);
}

.menu a span{ flex: 1; text-align: left; }

.menu a::after{
  content: "›";
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
}

.menu a:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,158,11,0.45);
}

/* item do carrinho = ação de finalizar (verde, destaque) */
.menu a[href*="carrinho"]{
  background: linear-gradient(135deg, var(--add), var(--add-strong));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(22,163,74,0.30);
}
.menu a[href*="carrinho"]::before{
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.menu a[href*="carrinho"]::after{ color: #fff; }

/* submenu de destilados não tem data-icon → usa só o emoji do texto */
.menu a:not([data-icon])::before{ content: none; }


/* ======================================================
   BARRA FIXA (páginas de categoria): casa | título | carrinho
   ====================================================== */
.atalhos-bar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(180deg, #1d2029, #14161c);
  border-bottom: 2px solid var(--brand);
  box-shadow: 0 10px 30px rgba(16,18,29,0.28);
}

.atalhos-inner,
.atalhos-topo{
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.atalho-btn{
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  transition: background .16s ease, transform .16s ease;
}
.atalho-btn:hover{ background: rgba(245,158,11,0.22); transform: translateY(-1px); }
.atalho-btn img{ width: 22px; height: 22px; filter: invert(1) brightness(1.7); }

.atalhos-titulo{ display: flex; align-items: center; gap: 10px; min-width: 0; }
.atalhos-boneco{ width: 44px; height: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }
.atalhos-h1{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* espaço para a barra fixa só nas páginas que a possuem */
body:has(.atalhos-bar){ padding-top: 90px; }


/* ======================================================
   PRODUTOS
   ====================================================== */
#produtos{ padding-bottom: 10px; }

.produto{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  max-width: 520px;
  margin: 14px auto;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.produto:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.produto-img{
  width: 76px; height: 76px;
  flex: 0 0 76px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f5ee, #efe9dd);
  padding: 8px;
  border: 1px solid var(--line);
}

.produto-info{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.produto-nome{
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
  overflow-wrap: break-word;
}

.produto-preco{
  font-size: 16px;
  font-weight: 900;
  color: var(--add-strong);
  margin-top: 6px;
}

.produto-acoes{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* seletor de sabor (gerado dinamicamente em produtos-v15.js) */
.sabor-control{ margin: 0; }
.sabor-select{
  max-width: 150px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

/* botão Adicionar padrão (antes do stepper assumir) */
.btn-adicionar{
  padding: 11px 18px;
  border: none;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--add), var(--add-strong));
  box-shadow: 0 10px 22px rgba(22,163,74,0.26);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}
.btn-adicionar:hover{ transform: translateY(-2px); filter: brightness(1.03); }
.btn-adicionar:active{ transform: scale(.98); }


/* ======================================================
   PRODUTO INDISPONÍVEL  (mantido — destaque que você curtiu)
   ====================================================== */
.produto.produto-indisponivel{
  opacity: 0.72;
  filter: saturate(0.6);
  background: linear-gradient(180deg, #f5f4f1, #ecebe6);
}
.produto.produto-indisponivel .produto-img{ filter: grayscale(1); }

.produto.produto-indisponivel::before{
  content: "Esgotado";
  position: absolute;
  top: 12px; left: 12px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(239,68,68,0.35);
  z-index: 2;
}

.produto-esgotado{ color: var(--danger) !important; font-weight: 800; }

.btn-esgotado,
.btn-adicionar.btn-esgotado{
  background: #e6e3dc !important;
  color: #8a8f99 !important;
  box-shadow: none !important;
  cursor: not-allowed;
}
.btn-esgotado:hover{ transform: none !important; box-shadow: none !important; filter: none !important; }

/* separador "Indisponíveis no momento" */
.grupo-indisponivel{
  max-width: 520px;
  margin: 30px auto 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9aa1ad;
}
.grupo-indisponivel::before,
.grupo-indisponivel::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,161,173,0.6), transparent);
}
.grupo-indisponivel span{
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}


/* ======================================================
   BOTÕES GERAIS
   ====================================================== */
.btn-ver{
  display: inline-block;
  max-width: 360px;
  width: calc(100% - 28px);
  margin: 10px auto 36px;
  padding: 13px 18px;
  background: var(--paper);
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 800;
  border-radius: 13px;
  border: 1px solid rgba(245,158,11,0.4);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.btn-ver:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.carrinho-acoes{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 10px auto 34px;
}

.carrinho-acoes button{
  width: 100%;
  padding: 15px 18px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--add), var(--add-strong));
  box-shadow: 0 12px 26px rgba(22,163,74,0.26);
  transition: transform .14s ease, box-shadow .14s ease;
}
.carrinho-acoes button:hover{ transform: translateY(-2px); }

/* secundário (continuar comprando): neutro escuro */
.btn-continuar{
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm) !important;
}

/* limpar: vermelho */
.btn-limpar{
  background: linear-gradient(135deg, var(--danger), var(--danger-strong)) !important;
  box-shadow: 0 12px 26px rgba(239,68,68,0.26) !important;
}


/* ======================================================
   CARRINHO (lista de itens)
   ====================================================== */
#lista{
  list-style: none;
  padding: 0;
  margin: 22px auto;
  max-width: 540px;
}

#lista:empty::after{
  content: "Seu carrinho está vazio 🛒";
  display: block;
  color: var(--muted);
  font-weight: 700;
  padding: 26px 12px;
}

#lista li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
}
#lista li .nome{ text-align: left; flex: 1; min-width: 0; color: var(--ink); font-weight: 700; }
#lista li .sabor{ color: var(--muted); font-weight: 600; }
#lista li .preco{ color: var(--add-strong); font-weight: 800; white-space: nowrap; }

.btn-remover-item{
  border: none;
  background: #f6e7e7;
  color: var(--danger-strong);
  width: 32px; height: 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  flex: 0 0 32px;
}
.btn-remover-item:hover{ background: #f6dada; }

/* controle de quantidade no carrinho */
.qtd-control-carrinho{ display: inline-flex; align-items: center; gap: 6px; }
.qtd-btn-carrinho{
  width: 30px; height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #f4f1ea;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.qtd-btn-carrinho:hover{ background: var(--brand-soft); }
.qtd-input-carrinho{
  width: 46px; height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}
.qtd-input-carrinho::-webkit-outer-spin-button,
.qtd-input-carrinho::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.qtd-input-carrinho{ appearance: textfield; }


/* ======================================================
   STEPPER LEGADO (.qtd-control) — fica oculto pelo mg-stepper,
   mas mantido para segurança
   ====================================================== */
.qtd-control{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 8px;
}
.qtd-btn{
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #f2f0ea;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}
.qtd-input{
  width: 34px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  appearance: textfield;
}
.qtd-input::-webkit-outer-spin-button,
.qtd-input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }


/* ======================================================
   MODAL DE CONFIRMAÇÃO
   ====================================================== */
#modal-confirmacao{
  position: fixed;
  inset: 0;
  background: rgba(16,18,29,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
}

.modal-box{
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  width: 94%;
  max-width: 460px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand);
  animation: slideUp .28s ease;
}
@keyframes slideUp{
  from{ transform: translateY(26px); opacity: 0; }
  to  { transform: translateY(0); opacity: 1; }
}

.modal-box h2{
  display: block;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0 0 8px;
  text-align: left;
  font-size: 20px;
}
.modal-box p{ text-align: left; color: var(--ink-soft); font-size: 14px; }

.modal-box label{
  display: block;
  text-align: left;
  margin: 12px 0 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}

.modal-box input,
.modal-box select{
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #dcd7cc;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.modal-box input:focus,
.modal-box select:focus{
  border-color: rgba(245,158,11,0.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.14);
}

.modal-box select{
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

#campoTroco{
  margin-top: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed #e0dccf;
  background: #faf8f3;
}

#form-confirmação{
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

#resumo-pedido{
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  background: #faf8f3;
  border: 1px solid #ece7da;
  max-height: 30vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
}
#resumo-pedido p{ margin: 4px 0; color: var(--text); }

.modal-acoes{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  position: sticky;
  bottom: 0;
  background: var(--paper);
}
.modal-acoes button{
  flex: 1;
  padding: 13px;
  border: none;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--add), var(--add-strong));
  box-shadow: 0 10px 22px rgba(22,163,74,0.24);
}
/* primeiro botão = cancelar (neutro) */
.modal-acoes button[type="button"]{
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}


/* ======================================================
   TOAST  (estava sem CSS → ficava sempre visível: corrigido)
   ====================================================== */
#toast{
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(28px);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity .22s ease, transform .22s ease;
}
#toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ======================================================
   SEM RESULTADO
   ====================================================== */
.sem-resultado{
  width: min(560px, 92%);
  margin: 26px auto;
  padding: 26px 20px;
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sem-resultado span{ font-size: 13px; font-weight: 500; color: var(--muted); }


/* ======================================================
   RODAPÉ
   ====================================================== */
.footer{
  background: var(--ink);
  color: #e7e9ee;
  padding: 34px 20px;
  margin-top: 44px;
  border-top: 3px solid var(--brand);
}
.footer-container{
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.footer-col{ flex: 1; min-width: 220px; }
.footer h4{
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--brand);
  border-left: 3px solid var(--brand);
  padding-left: 10px;
}
.footer p{ font-size: 13.5px; margin: 4px 0; color: #c7cbd4; }


/* ======================================================
   RESPONSIVO
   ====================================================== */
@media (max-width: 600px){
  body{ padding-left: 10px; padding-right: 10px; }
  body:has(.atalhos-bar){ padding-top: 78px; }

  .topo{
    gap: 14px;
    padding: 20px 14px;
    margin-top: 4px;
  }
  .logoescrita img{ width: 100%; max-width: 210px; }
  .logo img{ width: 116px; }

  .atalhos-h1{ font-size: 16px; }
  .atalhos-boneco{ width: 34px; }
  .atalho-btn{ width: 42px; height: 42px; flex-basis: 42px; }

  h1{ font-size: 22px; }

  .produto{ padding: 14px; gap: 13px; flex-wrap: wrap; }
  .produto-img{ width: 70px; height: 70px; flex-basis: 70px; }
  .produto-info{ flex: 1 1 calc(100% - 84px); }
  .produto-acoes{
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
  }
  .produto.produto-indisponivel::before{ top: 10px; left: 10px; }

  .menu{ max-width: 100%; }
}

/* iOS: evita zoom ao focar inputs (fonte >= 16px) */
@media (max-width: 600px){
  .barra-pesquisa input,
  #pesquisa-index,
  .modal-box input,
  .modal-box select,
  .produto input[type="number"]{ font-size: 16px !important; }
}
