@charset "UTF-8";

/* ==========================================================================
   1. VARIÁVEIS E RESET GLOBAL
   ========================================================================== */
:root {
  --cor-marrom: #E6E1C7;
  --cor-marrom-forte: #1C1C1C;
  --cor-vermelha: #D90404;
  --bg-card: #f4f1d9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--cor-marrom-forte);
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilitários de Texto */
#rua, #bairro, #rua-desk, #bairro-desk {
    text-transform: capitalize;
}

/* ==========================================================================
   2. HEADER (CABEÇALHO)
   ========================================================================== */
header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  background: var(--cor-marrom);
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

header img {
  height: 80px;
  object-fit: contain;
  transition: scale 0.2s;
}

header img:hover {
  cursor: pointer;
  scale: 1.05;
}

header ul {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
}

header ul li {
  color: var(--cor-vermelha);
  font-weight: bold;
}

header ul > li > i {
  padding-right: 10px;
}

.btn-horarios {
  cursor: pointer;
}

/* =========================================
   STATUS DA LOJA (ABERTO/FECHADO)
   ========================================= */
.status-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

/* Loja Aberta */
.status-aberto i {
    color: #2ecc70cb; /* Verde vibrante */
    animation: pulse 2s infinite;
}
.status-aberto span {
    color: #2ecc70cb;
}

/* Loja Fechada */
.status-fechado i {
    color: #e74c3c; /* Vermelho */
}
.status-fechado span {
    color: #e74c3c;
}

/* Animação da bolinha verde pulsando */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Estilo para Botão Desativado (Loja Fechada) */
.btn-disabled {
    background-color: #999 !important; /* Cinza */
    color: #ccc !important;
    cursor: not-allowed !important;
    pointer-events: none; /* Impede o clique */
    box-shadow: none !important;
}

/* Área de Busca */
.InputBusca {
  position: relative;
  flex: 1;
  max-width: 520px;
}

.InputBusca input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.InputBusca i {
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--cor-vermelha);
  cursor: pointer;
}

/* Autocomplete (Sugestões de busca) */
.autocomplete-box {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  max-height: 220px;
  overflow: auto;
  z-index: 50;
}

.item-auto {
  padding: 8px 12px;
  cursor: pointer;
}

.item-auto:hover {
  background: #eee;
}

/* Elementos do Header Mobile (Escondidos no Desktop) */
.header-search-cart > i { display: none; }
.btn-cart-mobile { display: none; }


/* ==========================================================================
   3. FILTROS (BOTÕES DE CATEGORIA)
   ========================================================================== */
.filtros {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.tipos {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--cor-marrom);
  cursor: pointer;
  border: 1px solid #aaa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.tipos:hover {
  background-color:#e2d68f;
}

.tipos img {
  height: 26px;
}

.tipos.ativo {
  transform: scale(1.03);
  background: #e2d68f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   4. LAYOUT PRINCIPAL E PRODUTOS
   ========================================================================== */
.container {
  display: flex;
  gap: 24px;
  padding: 20px;
  align-items: flex-start;
}

.lista-produtos {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card do Produto */
.produto {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 14px;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08);
  
}

.produto .thumb {
  width: 300px;
  height: 200px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.produto .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  &:hover{
    transform: scale(1.03);
    cursor: pointer;
  }
}

.produto .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.produto h3 {
  margin: 0;
  font-size: 1.1rem;
}

/* Preços */
.produto .preco {
  font-weight: bold;
  color: #222;
}

.preco-antigo {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    margin-right: 6px;
}

.preco-novo {
    color: var(--cor-vermelha);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Controles (Cortes, Quantidade, Botão Adicionar) */
.cortes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cortes label {
  background: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.95rem;
}

.btn-select-corte {
    display: none; /* Escondido no Desktop */
}

.qtd-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qtd-box button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.qtd-box input {
  width: 80px;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn-add-prod {
  background: var(--cor-vermelha);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  width: fit-content;
}

.btn-add-prod:hover {
  background: #b21818;
}


/* ==========================================================================
   5. SIDEBAR (CARRINHO DESKTOP)
   ========================================================================== */
.carrinho {
  width: 30%;
  background: var(--bg-card);
  padding: 16px;
  border-radius: 8px;
  position: sticky;
  top: 18px;
  align-self: flex-start;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

#lista-carrinho {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 50vh;
  overflow: auto;
  padding-bottom: 6px;
}

.cart-item {
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e5e5;
}

.cart-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  background: var(--cor-marrom);
  cursor: pointer;
}

.total {
  margin-top: 12px;
  font-weight: bold;
  font-size: 1.05rem;
}

#btn-finalizar {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: var(--cor-vermelha);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

aside > button > i {
  margin-left: 8px;
  font-size: 1.1rem;
  position: relative;
  top: 2px;
}

/* Campos de Endereço Desktop e Geral */

/* Estilo para o Seletor de Bairro */
.input-bairro {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

.input-bairro:focus {
    border-color: var(--cor-vermelha);
}

.endereco-box-desktop input, 
.endereco-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
}

.input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.input-group input {
  width: auto !important;
  min-width: 0;
  box-sizing: border-box;
  margin-bottom: 0 !important;
} 

.input-group input[id^="rua"] { flex: 3; }
.input-group input[id^="numero"] { flex: 1; }

/* Estilo do Dropdown de Pagamento */
.input-pagamento {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    margin-bottom: 10px;
}

/* Focar na cor da marca ao clicar */
.input-pagamento:focus {
    border-color: var(--cor-vermelha);
}

/* Estilo do Campo de Observações */
.input-obs {
    width: 100%;
    min-height: 80px; /* Altura inicial boa para escrever */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: Arial, sans-serif; /* Garante a mesma fonte do site */
    font-size: 0.95rem;
    resize: vertical; /* Permite o usuário aumentar a altura se quiser */
    outline: none;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.input-obs:focus {
    border-color: var(--cor-vermelha);
    background-color: #fffafa; /* Fundo levemente rosado para destacar o foco */
}


/* ==========================================================================
   6. SIDEBAR MOBILE (GAVETA DO CARRINHO)
   ========================================================================== */
.sidebar-cart {
  position: fixed;
  top: 0;
  right: -100%; /* Começa escondido */
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: -3px 0 10px rgba(0,0,0,0.3);
  padding: 16px;
  transition: right 0.3s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
}

.sidebar-cart.show {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close-sidebar {
  font-size: 26px;
  cursor: pointer;
}

.sidebar-finalizar {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background-color: var(--cor-vermelha);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.2s;
}

.sidebar-finalizar:hover {
  background-color: #128C7E; /* Verde WhatsApp */
  transform: scale(1.02);
}


/* ==========================================================================
   7. MODAIS (INFO, HORÁRIOS, CORTES) E TOAST
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    animation: aparecer 0.25s ease;
}

@keyframes aparecer {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
}

/* Botão Sobre no Header */
.btn-sobre {
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.btn-sobre:hover {
    color: #b21818; /* Um tom mais escuro de vermelho */
    text-decoration: underline;
}

/* Modal de Cortes Mobile (Lista interna) */
.cortes-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.cortes-mobile-list button {
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.cortes-mobile-list button:hover {
    background: var(--cor-marrom);
}

/* Modal Info Produto */
.modal-info {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.modal-info.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-info-content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#modalInfo-img {
  width: 100%;
  border-radius: 10px;
  margin: 12px 0;
}

#modalInfo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================
   TOAST (NOTIFICAÇÃO FLUTUANTE) - FINAL
   ========================================= */
.toast {
    /* Posicionamento Fixo na Tela */
    position: fixed;
    left: 50%;
    /* Começa invisível e um pouco pra baixo */
    transform: translateX(-50%) translateY(50px); 
    
    background: #D90404; /* Vermelho forte */
    color: white;
    padding: 12px 24px;
    border-radius: 50px; /* Borda bem redonda estilo App */
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4); /* Sombra forte para destacar */
    text-align: center;

    opacity: 0;
    pointer-events: none; /* Não atrapalha o clique quando invisível */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Efeito elástico */

    /* Z-INDEX MÁXIMO: Fica na frente da Sidebar (99999) e de tudo */
    z-index: 2147483647 !important; 
}

/* Posição Padrão (PC) */
.toast {
    bottom: 30px;
    min-width: 250px;
}

/* Quando a classe .show é adicionada pelo JS */
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Sobe para a posição correta */
    pointer-events: auto;
}

/* =========================================
   BOTÃO VOLTAR AO TOPO
   ========================================= */
.btn-topo {
    position: fixed;
    bottom: 30px;       /* Distância do fundo */
    right: 30px;        /* Distância da direita */
    width: 50px;
    height: 50px;
    background-color: var(--cor-vermelha);
    color: white;
    border: none;
    border-radius: 50%; /* Deixa redondinho */
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Sombra para destacar do fundo */
    z-index: 9990;      /* Fica acima dos produtos, mas abaixo do modal/toast */
    
    /* Efeito de aparecer/sumir suave */
    opacity: 0;
    pointer-events: none; /* Não atrapalha o clique quando invisível */
    transform: translateY(20px);
    transition: all 0.3s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-topo:hover {
    background-color: #b21818; /* Cor mais escura ao passar o mouse */
    transform: translateY(-3px); /* Leve pulinho */
}

/* Classe que o JS vai adicionar para mostrar o botão */
.btn-topo.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ==========================================================================
   8. FOOTER (RODAPÉ)
   ========================================================================== */
footer {
    background-color: #151515;
    color: var(--cor-marrom);
    padding-top: 40px;
    margin-top: 40px;
    border-top: 4px solid var(--cor-vermelha);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-section h3 {
    color: var(--cor-vermelha);
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #fff;
}


.social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--cor-vermelha);
    transform: translateY(-3px);
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: #ccc;
    margin-top: 10px;
}

.footer-bottom {
    background-color: #0f0f0f;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #222;
}

.footer-bottom strong {
    color: var(--cor-vermelha);
}

/* =========================================
   CARROSSEL (SLIDER) - DESKTOP
   ========================================= */
.banner-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 10px auto;
    padding: 0 20px;
    overflow: hidden;
    position: relative; /* <--- IMPORTANTE: Segura os botões dentro da área */
}

.banner-track {
    display: flex;
    overflow-x: auto; /* Permite rolar para o lado */
    scroll-snap-type: x mandatory; /* Obriga a parar certinho na foto */
    scroll-behavior: smooth;
    
    /* Esconde a barra de rolagem feia */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Esconde barra de rolagem no Chrome/Safari */
.banner-track::-webkit-scrollbar {
    display: none;
}

.banner-slide {
    /* Ocupa 100% da largura do pai */
    flex: 0 0 100%; 
    scroll-snap-align: center; /* Centraliza ao soltar */
    
    height: 300px; /* Altura do Banner PC */
    background-size: cover;
    background-position: center;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.banner-texto h2 {
    color: #E6E1C7;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
    margin-bottom: 5px;
}

.banner-texto p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* =========================================
   ESTILO DAS BOLINHAS (PAGINAÇÃO)
   ========================================= */
.banner-dots {
    position: absolute;
    bottom: 15px;      /* Fica na parte de baixo do banner */
    left: 50%;
    transform: translateX(-50%); /* Centraliza perfeitamente */
    display: flex;
    gap: 10px;         /* Espaço entre as bolinhas */
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5); /* Branco meio transparente */
    border-radius: 50%; /* Faz virar bolinha */
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent; /* Prepara para não pular tamanho */
}

/* Quando a bolinha estiver ativa ou passar o mouse */
.dot.active, .dot:hover {
    background-color: var(--cor-vermelha); /* Fica vermelho */
    transform: scale(1.2); /* Cresce um pouquinho */
    border: 2px solid #fff; /* Borda branca para destacar no fundo escuro */
}

/* =========================================
   TELA DE DETALHES DO PRODUTO (MODAL FULL)
   ========================================= */
.modal-produto-overlay {
    display: none; /* Começa escondido */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000; /* Fica na frente de tudo */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-produto-content {
    background: #fff;
    width: 100%;
    max-width: 500px; /* No PC não fica gigante */
    height: 90vh;     /* Ocupa quase toda altura */
    max-height: 800px;
    border-radius: 15px;
    overflow-y: auto; /* Permite rolar se o conteúdo for grande */
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

/* Foto Grande no Topo */
.modal-produto-header {
    width: 100%;
    height: 250px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-produto-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corpo do Conteúdo */
.modal-produto-body {
    padding: 20px;
    flex: 1; /* Empurra o rodapé para baixo */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-fechar-modal {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

#detalhe-nome { font-size: 1.5rem; color: var(--cor-marrom-forte); margin: 0; }
#detalhe-descricao { color: #666; font-size: 0.95rem; line-height: 1.5; }
.detalhe-preco-box { font-size: 1.4rem; color: var(--cor-vermelha); font-weight: bold; }

/* Opções de Corte (Botões Bonitos) */
.opcao-box h3 { font-size: 1rem; margin-bottom: 10px; color: #333; }
.cortes-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.radio-corte-label {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s;
    background: #fff;
}
/* Quando selecionado (o JS vai por essa classe) */
.radio-corte-label.selecionado {
    background-color: var(--cor-vermelha);
    color: #fff;
    border-color: var(--cor-vermelha);
}
.radio-corte-input { display: none; } /* Esconde a bolinha feia do radio */

/* Footer: Controles de Quantidade e Botão */
.modal-produto-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qtd-control-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.qtd-control-large button {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
#detalhe-qtd {
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    width: 80px;
    text-align: center;
}

.btn-zao-adicionar {
    width: 100%;
    padding: 15px;
    background: var(--cor-vermelha);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex; justify-content: space-between;
}
.btn-zao-adicionar:active { transform: scale(0.98); }
.hidden { display: none; }