body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #1a1a1a;
      color: #ffffff;
    }

    header {
      background-color: #c2a818;
      color: white;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .banner-topo {
      width: 100%;
      max-width: 1600px;
      /* Largura máxima */
      height: auto;
      /* Altura ajustável para manter proporção */
      max-height: 500px;
      /* Altura máxima */
      object-fit: cover;
      display: block;
      margin: 0 auto;
      border-bottom: 3px solid #c2a818;
    }

    @media (max-width: 768px) {
      .banner-topo {
        max-height: 300px;
        /* Altura menor para mobile */
      }
    }


    .logo-container {
      text-align: center;
      margin-top: -50px;
      margin-bottom: 15px;
    }

    .logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .promo-bar {
      background: linear-gradient(90deg, #c2a818, #967f00);
      color: white;
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }

    .horario-funcionamento {
      background: #333;
      color: #fff;
      padding: 8px;
      text-align: center;
      font-size: 0.9em;
    }

    /* Estilo para o fundo sobreposto */
    .overlay {
      display: none;
      /* Inicialmente escondido */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }



    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Header do modal */
    #modal-header {
      font-size: 1.6em;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 10px;
    }






    button {
      background-color: #c2a818;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #c2a818;
    }

    /* Botão de voltar aos produtos */
    #voltar-aos-produtos {
      background-color: #2c2c2c;
      color: white;
      margin-top: 15px;
    }



    #carrinho {
      background-color: #2c2c2c;
      padding: 20px;
      margin: 20px auto;
      width: 90%;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    #lista-carrinho {
      list-style: none;
      padding: 0;
      max-height: 400px;
      /* Altura máxima antes de aparecer a barra de rolagem */
      overflow-y: auto;
      /* Barra de rolagem vertical quando necessário */
      margin-bottom: 15px;
      border: 1px solid #444;
      border-radius: 5px;
    }

    #lista-carrinho li {
      padding: 15px;
      border-bottom: 1px solid #444;
      position: relative;
      word-wrap: break-word;
      /* Quebra palavras longas */
      overflow-wrap: break-word;
      /* Permite quebra em qualquer lugar */
    }

    #lista-carrinho li:last-child {
      border-bottom: none;
    }

    #lista-carrinho li button.remover {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: #ff4444 !important;
      border: none;
      color: #fff;
      border-radius: 4px;
      padding: 5px 10px;
      cursor: pointer;
      font-weight: 700;
      font-size: 0.85em;
      transition: background-color 0.3s ease;
    }

    #lista-carrinho li button.remover:hover {
      background: #cc0000 !important;
    }

    .observacao-texto {
      display: block;
      margin-top: 5px;
      font-size: 0.9em;
      color: #ccc;
      background: #333;
      padding: 5px;
      border-radius: 3px;
      white-space: pre-wrap;
      /* Mantém quebras de linha e espaços */
    }

    #total-carrinho {
      font-weight: bold;
      font-size: 1.25em;
      display: block;
      margin-bottom: 15px;
      text-align: center;
      color: #fff;
    }

    #produtos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 20px;
      transition: opacity 0.5s ease;
    }

    .produto {
      background-color: #2c2c2c;
      border: 1px solid #444;
      border-radius: 10px;
      margin: 10px;
      padding: 20px;
      width: 200px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .produto:hover {
      transform: scale(1.05);
    }

    .observacao-produto {
      margin-top: 10px;
      padding: 8px;
      width: 100%;
      border-radius: 5px;
      border: none;
      background-color: #444;
      color: white;
      font-size: 14px;
      box-sizing: border-box;
    }

    .detalhes-produto {
      font-size: 0.9em;
      color: #aaa;
    }

    .preco-produto {
      font-weight: bold;
      color: #e2df2b;
      margin-top: 5px;
      display: inline-block;
    }

    #lista-carrinho::-webkit-scrollbar {
      width: 8px;
    }

    #lista-carrinho::-webkit-scrollbar-track {
      background: #2c2c2c;
      border-radius: 10px;
    }

    #lista-carrinho::-webkit-scrollbar-thumb {
      background: #d1bc00;
      border-radius: 10px;
    }

    #lista-carrinho::-webkit-scrollbar-thumb:hover {
      background: #d1bc00;
    }


    #dados-usuario {
      display: none;
      margin-top: 20px;
      animation: fadeIn 0.5s ease-in-out;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    #dados-usuario input,
    #dados-usuario select {
      width: 100%;
      max-width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: none;
      border-radius: 8px;
      background-color: #444;
      color: white;
      font-size: 1em;
      box-sizing: border-box;
    }

    #dados-usuario input::placeholder {
      color: #ccc;
    }

    #pagar,
    #finalizar-compra {
      background-color: #c2a818;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 1.1em;
    }

    #finalizar-compra:hover,
    #pagar:hover {
      background-color: #c2a818;
    }

    #filtros {
      text-align: center;
      margin: 20px 0;
    }

    #filtros button {
      background-color: #c2a818;
      color: white;
      border: none;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
    }

    #filtros button:hover {
      background-color: #c2a818;
    }


    #confirmar-compra,
    #copiar-codigo {
      background-color: #02be41;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 1em;
      width: 100%;
    }

    /* Modal geral (container externo) */
    #modal-qrcode {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 8px;
      /* padding menor pra modal externo */
      border-radius: 12px;
      text-align: center;
      z-index: 1000;
      width: 90vw;
      max-width: 320px;
      /* largura menor */
      background-color: transparent;
      /* sem fundo no modal externo */
      box-shadow: 0 0 15px rgba(255, 195, 0, 0.6);
      /* sombra amarela */
      animation: fadeIn 0.5s ease-in-out;
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Container interno com a faixa cinza */
    #modal-content {
      background-color: #121212;
      /* faixa cinza escuro */
      border-radius: 12px;
      padding: 12px 16px;
      /* espaço interno */
      box-sizing: border-box;
      max-width: 280px;
      /* faixa menor que o modal externo */
      margin: 0 auto;
      /* centralizar faixa */
    }

    /* Modal geral */
    #modal-qrcode {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 16px 20px 20px 20px;
      /* padding maior para os botões */
      border-radius: 12px;
      text-align: center;
      z-index: 1000;
      width: 90vw;
      max-width: 320px;
      background-color: #121212;
      /* fundo geral escuro */
      box-shadow: 0 0 15px rgba(255, 195, 0, 0.6);
      animation: fadeIn 0.5s ease-in-out;
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      box-sizing: border-box;
    }

    /* Container faixa cinza (só conteúdo QR + texto + código) */
    #modal-content {
      background-color: #1e1e1e;
      /* cinza escuro */
      border-radius: 12px;
      padding: 16px 16px 12px 16px;
      box-sizing: border-box;
      max-width: 280px;
      margin: 0 auto 20px auto;
      /* margem embaixo para separar dos botões */
    }

    /* Header */
    #modal-header {
      font-size: 1.4em;
      font-weight: 700;
      color: #ffd700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    /* QR Code */
    #qrcode-img {
      width: 100%;
      max-width: 220px;
      height: auto;
      border-radius: 12px;
      border: 3px solid #ffd700;
      padding: 8px;
      background-color: #222;
      margin: 0 auto 12px;
      display: block;
    }

    /* Valor */
    #valor-pagamento {
      font-size: 1.15em;
      font-weight: 700;
      margin: 8px 0;
      color: #ffd700;
    }

    /* Código container */
    #codigo-container {
      padding: 10px;
      background-color: #121212;
      /* um pouco mais escuro */
      border-radius: 12px;
      color: #ccc;
      font-size: 1em;
      word-break: break-word;
      margin-bottom: 8px;
      box-shadow: inset 0 0 8px rgba(255, 215, 0, 0.2);
    }

    /* Texto "copiar e colar" */
    #codigo-copia-cola {
      color: #bbb;
      margin-bottom: 8px;
      display: block;
    }

    /* Botões fora da faixa cinza, dentro do modal */
    #copiar-codigo,
    #confirmar-compra,
    #voltar-aos-produtos {
      width: 100%;
      box-sizing: border-box;
      margin: 8px 0 0 0;
      padding: 12px 0;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.05em;
      cursor: pointer;
      display: block;
      border: none;
      background-color: #ffd700;
      color: #121212;
      box-shadow: 0 0 6px #ffd700aa;
      /* neon mais suave */
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    #copiar-codigo:hover,
    #confirmar-compra:hover,
    #voltar-aos-produtos:hover {
      background-color: #e6c200;
      box-shadow: 0 0 12px #e6c200cc;
    }

    /* Botão voltar diferente */
    #voltar-aos-produtos {
      background-color: #222;
      color: #ffd700;
      border: 2px solid #ffd700;
      box-shadow: 0 0 6px #ffd70088;
      transition: background-color 0.3s, color 0.3s, box-shadow 0.3s ease;
    }

    #voltar-aos-produtos:hover {
      background-color: #ffd700;
      color: #121212;
      box-shadow: 0 0 12px #ffd700cc;
    }

    /* Animação fadeIn */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Responsividade */
    @media screen and (min-width: 480px) {
      #modal-qrcode {
        max-width: 320px;
        padding: 20px 24px 24px 24px;
      }

      #modal-content {
        max-width: 280px;
        margin-bottom: 24px;
      }
    }


    /* Animação fadeIn */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Responsividade */
    @media screen and (min-width: 480px) {
      #modal-qrcode {
        max-width: 320px;
      }

      #modal-content {
        max-width: 280px;
      }
    }


    /* Modal sabores - reutiliza overlay */
    #modal-sabores {
      display: none;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
    }

    #modal-sabores>div {
      background-color: #2c2c2c;
      padding: 20px;
      border-radius: 12px;
      width: 320px;
      color: white;
    }

    #modal-sabores h2 {
      margin-top: 0;
      margin-bottom: 15px;
      text-align: center;
    }

    #modal-sabores label {
      font-weight: bold;
    }

    #modal-sabores select,
    #modal-sabores textarea {
      margin-bottom: 10px;
      border-radius: 5px;
      border: none;
      background-color: #444;
      color: white;
      padding: 8px;
      width: 100%;
      box-sizing: border-box;
    }

    #modal-sabores input[type="checkbox"] {
      margin-right: 6px;
    }

    #modal-sabores button {
      margin-top: 10px;
    }

    /* Modal de Confirmação de Pedido */
    #modal-confirmacao {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(135deg, #000000, #dfc903);
      color: white;
      padding: 25px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      z-index: 9999;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      animation: fadeIn 0.5s ease-in-out;
      text-align: center;
    }

    #modal-confirmacao h2 {
      margin-top: 0;
      color: #fff;
      font-size: 1.8em;
    }

    #detalhes-pedido {
      background-color: rgba(0, 0, 0, 0.3);
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      text-align: left;
      max-height: 300px;
      overflow-y: auto;
    }

    #detalhes-pedido p {
      margin: 8px 0;
    }

    #fechar-confirmacao {
      background-color: #02be41;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.1em;
      transition: all 0.3s;
      margin-top: 10px;
    }

    #fechar-confirmacao:hover {
      background-color: #1f8a29;
      transform: scale(1.05);
    }

    /* Estilos para o modal Meus Pedidos */
    .pedido-item {
      background-color: #333;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      border-left: 4px solid #00ffea;
    }

    .pedido-status {
      display: inline-block;
      background-color: #d4f5d0;
      /* cor do fundo */
      color: #048815;
      /* cor do texto */
      padding: 4px 8px;
      /* espaço interno */
      border-radius: 6px;
      /* cantos arredondados */
      font-weight: bold;
      font-size: 0.9em;
    }


    .pedido-item p {
      margin: 5px 0;
      color: #ddd;
    }

    #modal-personalizar select {
      margin-bottom: 10px;
      border-radius: 5px;
      border: none;
      background-color: #444;
      color: white;
      padding: 8px;
      width: 100%;
      box-sizing: border-box;
    }

    .pedido-produto {
      padding: 8px;
      background-color: #444;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .pedido-status {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 0.8em;
    }

    .status-pendente {
      background-color: #ff9800;
      color: #000;
    }

    .status-entregue {
      background-color: #4caf50;
      color: #fff;
    }

    /* BOTÃO PRINCIPAL */

    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      color: white;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      /* Tamanho do ícone */
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      animation: float 3s ease-in-out infinite, pulse 2s infinite;
    }

    /* Garante que o ícone fique centralizado */
    .whatsapp-btn i {
      margin-top: 2px;
      /* Ajuste fino pra ficar perfeito */
    }

    /* EFEITO QUANDO PASSA O MOUSE */
    .whatsapp-btn:hover {
      transform: scale(1.1) rotate(10deg);
      background-color: #128C7E;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    }



    .whatsapp-btn:hover .tooltip {
      opacity: 1;
      right: 90px;
    }

    /* ANIMAÇÕES */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* EFEITO DE CLIQUE (OPCIONAL) */
    .whatsapp-btn:active {
      transform: scale(0.9);
    }

    .status-cancelado {
      background-color: #f44336;
      color: #fff;
    }

    /* RODAPÉ PROFISSIONAL */
    /* RODAPÉ COM IMAGENS */
    .footer {
      background: #333;
      color: #ffffff;
      padding: 4rem 2rem 2rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    /* Estilos gerais (títulos, links...) */
    .footer h3 {
      color: white;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .footer h4 {
      color: white;
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }

    .footer-links ul,
    .footer-contact ul {
      list-style: none;
      padding: 0;
    }

    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #f97316;
    }

    /* Ícones de contato */
    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.8rem;
    }

    /* Redes Sociais (IMAGENS) */
    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      width: 32px;
      height: 32px;
      transition: transform 0.3s, opacity 0.3s;
      filter: brightness(0.8);
    }

    .social-icon:hover {
      transform: scale(1.1);
      filter: brightness(1);
    }

    /* Botão flutuante estilo WhatsApp, mas no canto oposto */
    #btn-meus-pedidos-flutuante {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background-color: #ffe600;
      /* Roxo */
      color: white;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      animation: float 3s ease-in-out infinite, pulse 2s infinite;
    }

    /* Ícone centralizado */
    .pedido-icon {
      width: 36px;
      height: 36px;
    }

    /* Efeito hover */
    #btn-meus-pedidos-flutuante:hover {
      transform: scale(1.1) rotate(-10deg);
      background-color: #ebd300;
      box-shadow: 0 10px 25px rgb(209, 188, 1);
    }

    /* Animação de flutuar */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    /* Efeito pulsar */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 251, 0, 0.7);
      }

      70% {
        box-shadow: 0 0 0 20px rgba(138, 43, 226, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
      }
    }

    /* Copyright */
    .footer-copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #1e293b;
      font-size: 0.9rem;
    }

    /* === ERRO DE VALIDAÇÃO === */
    .input-error {
      border: 2px solid #ff4d4d !important;
      background-color: rgba(255, 77, 77, 0.12) !important;
      box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.25);
      outline: none !important;
    }

    /* Só pra dar um feedback na hora que der erro */
    @keyframes shake {

      10%,
      90% {
        transform: translateX(-2px);
      }

      20%,
      80% {
        transform: translateX(3px);
      }

      30%,
      50%,
      70% {
        transform: translateX(-4px);
      }

      40%,
      60% {
        transform: translateX(4px);
      }
    }

    .shake {
      animation: shake 0.35s linear;
    }

    /* === Inputs (text, email, etc) === */
    input.input-error {
      border: 2px solid #ff4d4d !important;
      background-color: rgba(255, 77, 77, 0.12) !important;
      box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.25);
      outline: none !important;
    }

    /* === Selects === */
    select.input-error {
      border: 2px solid #ff4d4d !important;
      background-color: #2b2b2b !important;
      /* mantém seu fundo escuro */
      box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.25);
      outline: none !important;
      color: #fff;
      /* texto claro */
    }
    body {
  padding-bottom: 90px;
}

#pagina-home {
  display: block;
}

#pagina-carrinho {
  display: none;
  padding: 20px 0 10px;
}

.bottom-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f4f4f4;
  border-top: 1px solid #d8d8d8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 99999;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
}

.action-btn {
  background: transparent !important;
  color: #555 !important;
  border: none;
  border-radius: 0;
  padding: 10px 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 65px;
  font-size: 12px;
  font-weight: 600;
}

.action-btn.active {
  color: #111 !important;
}

.action-icon {
  font-size: 20px;
  line-height: 1;
}

.action-label {
  font-size: 11px;
  line-height: 1.2;
}.cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: -10px;
  right: -14px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff2b2b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}#pagina-pedidos {
  display: none;
  padding: 20px 14px 110px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 196, 0, 0.10), transparent 30%),
    linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
}

.pedidos-page-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.pedidos-header-card {
  background: linear-gradient(145deg, #232323, #171717);
  border: 1px solid rgba(255, 196, 0, 0.15);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
}

.pedidos-header-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.pedidos-mini-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #ffc400;
  margin-bottom: 8px;
}

.pedidos-header-topo h2 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.pedidos-header-topo p {
  margin: 8px 0 0;
  color: #bdbdbd;
  font-size: 0.95rem;
}

.pedidos-header-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: linear-gradient(135deg, #ffc400, #ff9f0a);
  box-shadow: 0 12px 26px rgba(255, 196, 0, 0.28);
}

.pedidos-busca-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pedidos-busca-box label {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.pedidos-busca-box input {
  width: 100%;
  border: 1px solid #3b3b3b;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 1rem;
  outline: none;
  transition: 0.25s ease;
}

.pedidos-busca-box input:focus {
  border-color: #ffc400;
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.pedidos-busca-box button {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffc400, #e0aa00);
  color: #111;
  cursor: pointer;
  transition: 0.25s ease;
}

.pedidos-busca-box button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.pedidos-status-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.pedidos-status-item {
  background: #1d1d1d;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  padding: 12px 14px;
  color: #eaeaea;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.aguardando {
  background: #ffc400;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.status-dot.rota {
  background: #4da3ff;
  box-shadow: 0 0 10px rgba(77, 163, 255, 0.5);
}

.status-dot.ok {
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.lista-pedidos-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pedidos-vazio {
  background: linear-gradient(145deg, #1c1c1c, #131313);
  border: 1px dashed #3c3c3c;
  border-radius: 22px;
  padding: 36px 20px;
  text-align: center;
}

.pedidos-vazio-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.pedidos-vazio h3 {
  color: #fff;
  margin: 0 0 8px;
}

.pedidos-vazio p {
  color: #aaa;
  margin: 0;
}

.pedido-card {
  background: linear-gradient(145deg, #232323, #161616);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
}

.pedido-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ffc400, #ff7b00);
}

.pedido-card-topo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.pedido-card-topo h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.pedido-card-topo p {
  margin: 6px 0 0;
  color: #aaa;
  font-size: 0.88rem;
}

.pedido-status-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.pedido-status-badge.pendente,
.pedido-status-badge.em-preparo {
  background: rgba(255, 196, 0, 0.14);
  color: #ffd54a;
}

.pedido-status-badge.saiu-para-entrega {
  background: rgba(77, 163, 255, 0.14);
  color: #7ab8ff;
}

.pedido-status-badge.entregue {
  background: rgba(34, 197, 94, 0.14);
  color: #65e08f;
}

.pedido-status-badge.recusado,
.pedido-status-badge.cancelado {
  background: rgba(239, 68, 68, 0.14);
  color: #ff7b7b;
}

.pedido-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.pedido-info-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px;
}

.pedido-info-item span {
  display: block;
  font-size: 0.75rem;
  color: #989898;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.pedido-info-item strong {
  color: #fff;
  font-size: 0.94rem;
}

.pedido-itens {
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}

.pedido-item-linha {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.pedido-item-linha strong {
  color: #fff;
}

.pedido-item-linha p {
  margin: 6px 0 0;
  color: #cfcfcf;
  font-size: 0.9rem;
}

.pedido-total-box {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(255,196,0,0.14), rgba(255,123,0,0.10));
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-align: right;
}

@media (max-width: 768px) {
  .pedidos-header-topo {
    align-items: flex-start;
  }

  .pedidos-header-topo h2 {
    font-size: 1.6rem;
  }

  .pedidos-status-bar,
  .pedido-info-grid {
    grid-template-columns: 1fr;
  }

  .pedido-card-topo {
    flex-direction: column;
    align-items: flex-start;
  }

  .pedido-status-badge {
    align-self: flex-start;
  }
}

/* ===== AJUSTES NOVOS WEBNIX ===== */
.loja-top-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin: 0 auto 6px;
  max-width: 1100px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(194, 168, 24, 0.22);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.loja-top-status-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loja-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 177, 76, 0.15);
  color: #84ffad;
  font-weight: 800;
  border: 1px solid rgba(27, 177, 76, 0.26);
}

.loja-status-pill.fechado {
  background: rgba(255, 77, 77, 0.14);
  color: #ff8d8d;
  border-color: rgba(255, 77, 77, 0.28);
}

.loja-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.loja-status-resumo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.loja-status-resumo strong {
  color: #fff;
  font-size: 0.98rem;
}

.loja-status-resumo span {
  color: #d3d3d3;
  font-size: 0.9rem;
}

.btn-horarios-topo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #c2a818, #e3c928);
  color: #121212;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(194, 168, 24, 0.22);
}

.btn-horarios-topo:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.btn-horarios-icone {
  font-size: 18px;
}

.horarios-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.horarios-modal-card {
  width: min(100%, 520px);
  background: #f4f4f4;
  color: #222;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.38);
  overflow: hidden;
  position: relative;
}

.horarios-modal-fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 0;
  font-size: 24px;
  background: #111;
  color: #fff;
  line-height: 1;
}

.horarios-modal-topo {
  padding: 28px 24px 18px;
  background: linear-gradient(135deg, #ffffff, #ececec);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.horarios-modal-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #8d7a07;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.horarios-modal-topo h2 {
  color: #252525;
  margin: 0 0 6px;
}

.horarios-modal-topo p {
  margin: 0;
  color: #676767;
}

.horarios-status-chip {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(27, 177, 76, 0.15);
  color: #198c44;
}

.horarios-status-chip.fechado {
  background: rgba(255, 77, 77, 0.14);
  color: #d53333;
}

.horarios-lista {
  padding: 8px 0 12px;
}

.horario-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: #444;
}

.horario-linha strong {
  color: #252525;
  font-size: 1.02rem;
}

.action-btn-link {
  text-decoration: none;
}

.action-icon-image {
  width: 28px;
  height: 28px;
}

.action-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#btn-meus-pedidos-flutuante,
.whatsapp-btn,
#btn-meus-pedidos {
  display: none !important;
}

body {
  padding-bottom: 92px;
}

.bottom-actions {
  background: linear-gradient(180deg, #d6b919, #b79d11);
  border-top: none;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
}

.action-btn {
  color: rgba(18,18,18,0.72) !important;
  min-height: 72px;
  padding: 10px 4px 12px;
}

.action-btn.active {
  color: #111 !important;
  background: rgba(255,255,255,0.12) !important;
}

.action-btn:hover {
  background: rgba(255,255,255,0.08) !important;
}

.action-icon {
  font-size: 22px;
}

.action-label {
  font-size: 11px;
  font-weight: 800;
}

.cart-badge {
  background: #111;
}

@media (max-width: 768px) {
  .loja-top-status {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-horarios-topo {
    justify-content: center;
    width: 100%;
  }

  .horario-linha {
    padding: 16px 18px;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 20px;
    padding-left: 108px;
  }

  .bottom-actions {
    top: 50%;
    bottom: auto;
    left: 16px;
    transform: translateY(-50%);
    width: 86px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(76px, auto));
    padding: 10px 0;
    box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  }

  .action-btn {
    min-height: 78px;
    padding: 12px 6px;
    gap: 8px;
    border-radius: 18px;
    margin: 4px 8px;
  }

  .action-icon {
    font-size: 24px;
  }

  .action-label {
    font-size: 12px;
  }

  #pagina-home,
  #pagina-carrinho,
  #pagina-pedidos {
    min-height: 100vh;
  }

  .pedidos-page-wrap,
  #carrinho,
  .loja-top-status {
    max-width: 980px;
  }
}


/* === AJUSTES V2 ACTION BAR / BUSCA / HORÁRIOS === */
.loja-top-status.loja-top-status-compacta {
  margin: 12px auto 4px;
  max-width: 940px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.loja-top-status-info.compacto {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loja-status-resumo {
  display: none !important;
}

.btn-horarios-topo.discreto {
  min-width: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(194, 168, 24, 0.18);
}

.btn-horarios-topo.discreto span:last-child {
  display: none;
}

.busca-ativa-bar {
  width: min(92%, 960px);
  margin: 0 auto 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.btn-limpar-busca,
.btn-limpar-busca-inline,
.btn-secundario-modal {
  background: #2f2f2f !important;
  color: #fff !important;
}

.btn-limpar-busca:hover,
.btn-limpar-busca-inline:hover,
.btn-secundario-modal:hover {
  filter: brightness(1.08);
}

.sem-resultado-busca {
  width: min(92%, 560px);
  margin: 10px auto 0;
  background: linear-gradient(145deg, #232323, #161616);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
}

.sem-resultado-icone {
  font-size: 36px;
  margin-bottom: 10px;
}

.busca-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.busca-modal-card {
  position: relative;
  width: min(100%, 460px);
  background: linear-gradient(180deg, #202020 0%, #131313 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.busca-modal-fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  background: #2b2b2b;
}

.busca-modal-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffc400;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.busca-modal-card h2 {
  margin: 0 0 6px;
  font-size: 1.65rem;
}

.busca-modal-card p {
  margin: 0 0 16px;
  color: #bfbfbf;
}

.busca-modal-input-wrap input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #3b3b3b;
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 1rem;
  outline: none;
}

.busca-modal-input-wrap input:focus {
  border-color: #ffc400;
  box-shadow: 0 0 0 4px rgba(255,196,0,0.12);
}

.busca-modal-acoes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.bottom-actions {
  background: linear-gradient(180deg, #d6b919, #b79d11);
  border-top: none;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
}

.action-btn {
  color: rgba(18,18,18,0.78) !important;
  min-height: 74px;
  padding: 10px 4px 12px;
  position: relative;
}

.action-btn.active {
  color: #111 !important;
  background: rgba(255,255,255,0.16) !important;
}

.action-btn:hover {
  background: rgba(255,255,255,0.10) !important;
}

.action-icon-image {
  width: 28px;
  height: 28px;
}

.whatsapp-action-icon {
  width: 30px;
  height: 30px;
}

.action-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-badge {
  background: #ff2b2b !important;
  color: #fff;
}

#filtros button.active {
  background: #fff;
  color: #111;
}

#btn-meus-pedidos-flutuante,
.whatsapp-btn,
#btn-meus-pedidos {
  display: none !important;
}

@media (max-width: 768px) {
  .loja-top-status.loja-top-status-compacta {
    justify-content: center;
    padding: 0 14px;
  }

  .busca-ativa-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .busca-modal-acoes {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 20px;
    padding-left: 112px;
  }

  .bottom-actions {
    top: 50%;
    bottom: auto;
    left: 16px;
    transform: translateY(-50%);
    width: 88px;
    border-radius: 26px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(78px, auto));
    padding: 10px 0;
    box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  }

  .action-btn {
    min-height: 82px;
    padding: 12px 6px;
    gap: 8px;
    border-radius: 18px;
    margin: 4px 8px;
  }
}.pedido-card {
  position: relative;
  overflow: hidden;
}

.pedido-card::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #ffc400, #e0aa00);
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.35);
}

/* Pendente */
.pedido-card.pendente::before {
  background: linear-gradient(180deg, #ffc400, #e0aa00);
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.35);
}

/* Em preparo */
.pedido-card.em-preparo::before {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

/* Saiu para entrega */
.pedido-card.saiu-para-entrega::before {
  background: linear-gradient(180deg, #ae00ff, #7e22ce);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.35);
}

/* Entregue */
.pedido-card.entregue::before {
  background: linear-gradient(180deg, #22c55e, #15803d);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}

/* Recusado / cancelado */
.pedido-card.recusado::before,
.pedido-card.cancelado::before {
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}
.pedido-card.entregue::before {
  background: linear-gradient(180deg, #22c55e, #15803d) !important;
}

.pedido-card.saiu-para-entrega::before {
  background: linear-gradient(180deg, #a855f7, #7e22ce) !important;
}.loja-status-pill {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.loja-status-pill:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.loja-status-pill:focus-visible {
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 3px;
}.loja-top-status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -6px;
  margin-bottom: 10px;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.loja-top-status-compacta {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.loja-top-status-info.compacto {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}.loja-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f5c36, #143d25);
  border: 1px solid rgba(90, 255, 160, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.loja-status-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.loja-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66ff99;
  box-shadow: 0 0 8px rgba(102, 255, 153, 0.7);
}

#loja-status-texto {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #8dffaf;
}.loja-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f5c36, #143d25);
  border: 1px solid rgba(90, 255, 160, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.loja-status-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.loja-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66ff99;
  box-shadow: 0 0 8px rgba(102, 255, 153, 0.7);
}

#loja-status-texto {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #8dffaf;
}.icon-img-carrinho {
  width: 22px;
  height: 22px;
  object-fit: contain;
}.icon-svg-carrinho {
  width: 22px;
  height: 22px;
  color: #000;
  display: block;
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}