:root {
    --primary: #1a7a2e; /* Cor principal — sobrescrita dinamicamente pelo JS */
    --bg: #F9F9F9;
    --dark: #333;
    --gray: #888;
    --border: #EEE;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:'Rubik', sans-serif; -webkit-tap-highlight-color:transparent; }
html { height: 100%; }
body {
  background: var(--bg);
  min-height: 100vh;
}
main.menu-container { flex: 1; }

/* Header */
/* ══════════════════════════════════════════════════════════════
   HEADER NOVO — logo + busca integrada
   ══════════════════════════════════════════════════════════════ */
.app-header {
  position: relative;
  background: #fff;
  padding: 12px 16px 10px;
  z-index: 80;
  box-shadow: 0 1px 0 #f0f0f0;
}

/* Linha 1: logo + status + idioma */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  forced-color-adjust: none;
  filter: none !important;
}
.store-details h1 { font-size: 1rem; color: var(--dark); font-weight: 700; }
.badge-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.badge-status.open   { color: #16a34a; background: #dcfce7; }
.badge-status.closed { color: #c0392b; background: #ffebee; }
.header-info p { font-size: 0.72rem; color: var(--gray); text-align: right; line-height: 1.5; }

/* ── Barra de busca ────────────────────────────────────────── */
.header-search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 0 12px;
  gap: 8px;
  height: 42px;
  transition: box-shadow 0.2s, background 0.2s;
}
.header-search-bar:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.header-search-icon {
  color: #aaa;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.header-search-bar:focus-within .header-search-icon {
  color: var(--primary);
}
.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  color: #333;
  outline: none;
  font-family: 'Rubik', sans-serif;
  min-width: 0;
}
.header-search-input::placeholder { color: #aaa; }
.header-search-clear {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Resultados de busca ──────────────────────────────────── */
#search-results-section {
  padding: 12px 12px 0;
  display: none;
}
#search-results-section.visible { display: block; }
.search-results-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding: 0 2px;
}
.search-no-results {
  text-align: center;
  padding: 32px 16px;
  color: #aaa;
  font-size: 0.9rem;
}

/* Banner */
.banner-area { overflow: hidden; margin: 15px 20px; border-radius: 12px; height: 160px; }
.banner-track { display: flex; width: 200%; animation: slide 10s infinite; }
.banner-track img { width: 50%; height: 160px; object-fit: cover; }
@keyframes slide { 0%, 45% { transform: translateX(0); } 55%, 100% { transform: translateX(-50%); } }

/* --- CSS PARA O CARD DE REPETIR PEDIDO --- */
#buy-again-container {
    background: #fff8e1; /* Fundo amarelinho suave */
    border: 1px solid #ffe082; /* Borda dourada */
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px; /* Afastamento das laterais */
    
    /* Layout interno */
    display: flex; /* Para alinhar texto e botão lado a lado */
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#buy-again-container h3 {
    font-size: 0.95rem;
    color: #f57f17; /* Laranja escuro */
    margin-bottom: 4px;
    display: flex; 
    align-items: center; 
    gap: 8px;
}

/* O texto do último pedido */
.last-order-text {
    font-size: 0.85rem;
    color: #666;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Coloca ... se for mto grande */
}

/* O botão de "Adicionar" */
.repeat-btn {
    background: #f57f17;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(245, 127, 23, 0.3);
}

/* Nav Categorias */
.category-nav {
    /* 1. Fixar no topo */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 95;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);

    /* 2. Habilitar Scroll Lateral */
    display: flex;
    flex-wrap: nowrap;       /* Importante: Não deixa cair para a linha de baixo */
    overflow-x: auto;        /* Importante: Habilita o scroll */
    gap: 10px;               /* Espaço entre os botões */
    white-space: nowrap;     /* Garante que o texto não quebre */
    
    /* 3. Estética da Rolagem */
    -webkit-overflow-scrolling: touch; /* Rolagem macia no iPhone */
    scrollbar-width: none;             /* Esconde barra no Firefox */
}

/* Esconde a barra de rolagem no Chrome/Android */
.category-nav::-webkit-scrollbar {
    display: none;
}

/* --- ESTILO DOS BOTÕES (PILLS) --- */
.cat-pill {
    /* O SEGREDO ESTÁ AQUI: */
    flex: 0 0 auto;  
    flex-shrink: 0;  
    text-transform: capitalize;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-pill:hover {
    border-color: #ccc;
}

.cat-pill.active {
    background: #333; /* Ou var(--primary) se preferir colorido */
    color: #fff;
    border-color: #333;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════════════════════════
   MENU — Grid de 2 colunas (mobile-first)
   ══════════════════════════════════════════════════════════════ */
.menu-container { padding: 0 12px; }
.section-title {
  margin: 22px 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: capitalize;
  padding: 0 4px;
}

/* Wrapper grid — 2 colunas */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

/* Card vertical */
.product-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  cursor: pointer;
  position: relative;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  /* reset legado */
  padding: 0;
  margin-bottom: 0;
  gap: 0;
}
.product-item:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Imagem — altura fixa compacta */
.prod-img-wrap {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-item:active .prod-img { transform: scale(1.04); }

/* Badges sobrepostos na imagem */
.prod-badge-destaque {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.prod-badge-promo {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #dc2626;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
}

/* Corpo do card */
.prod-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 7px 8px 8px;
  gap: 3px;
}

/* Nome: máx 2 linhas, truncado */
.prod-title {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
  min-height: calc(0.76rem * 1.3 * 2);
}

/* Bloco de preços */
.prod-prices {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
}
.prod-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.prod-a-partir {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.1;
  margin-bottom: 1px;
}
.prod-price-brl {
  font-size: 0.65rem;
  color: #16a34a;
  font-weight: 700;
  line-height: 1.2;
}
.prod-preco-antigo {
  font-size: 0.65rem;
  color: #aaa;
  text-decoration: line-through;
  line-height: 1.2;
}

/* Botão Comprar / Ver Opções */
.btn-comprar {
  margin-top: 6px;
  width: 100%;
  padding: 6px 4px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.01em;
  transition: opacity 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-comprar:active { opacity: 0.82; }

/* Hover no desktop */
@media (hover: hover) {
  .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .product-item:hover .prod-img { transform: scale(1.06); }
  .btn-comprar:hover { filter: brightness(0.9); }
}

/* ocultar desc (não cabe no card pequeno) */
.prod-info { display: none; }
.prod-desc  { display: none; }

/* Destaque: borda dourada */
.product-item.produto-destaque {
  border: 2px solid #f59e0b;
}

/* Aplica cor primária em todos os elementos de destaque */
.badge-primary, .highlight, .price-highlight {
    color: var(--primary);
}

.tracker-step-active {
    background: var(--primary) !important;
    color: #fff;
}

/* Barra Carrinho */
.cart-float {
    position: fixed; bottom: 20px; left: 20px; right: 20px;
    background: var(--primary); color: #fff; height: 60px;
    border-radius: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); transform: translateY(150%); transition: 0.3s; z-index: 95; cursor: pointer;
}
.cart-float.show { transform: translateY(0); }
.cart-count { background: #fff; color: var(--primary); width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; }
.cart-text { font-weight: 600; }

/* Modais */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 100; display: none; justify-content: center; align-items: flex-end;
}
.modal-overlay.active { display: flex; }
.modal-bottom-sheet {
    background: #fff; width: 100%; max-width: 500px;
    border-radius: 20px 20px 0 0; padding: 25px; max-height: 90vh; display: flex; flex-direction: column;
    animation: slideUpSmooth 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: espaço extra para não cobrir barra de apps/browser */
@media (max-width: 600px) {
  .modal-bottom-sheet {
    padding-bottom: 20px;
  }
  .modal-actions {
    padding-bottom: 12px;
  }
}
.full-height { height: 95vh; }
@keyframes slideUpSmooth { 
    from { 
        transform: translateY(100%); 
        opacity: 0.8;
    } 
    to { 
        transform: translateY(0); 
        opacity: 1;
    } 
}

.close-btn, .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}
.close-btn:hover {
    background: #ff441f; /* Cor da marca */
    color: white;
}

/* Elementos Internos Modal */
.options-list { flex: 1; overflow-y: auto; margin: 15px 0; }
.option-item {
    display: flex; justify-content: space-between; padding: 12px;
    border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; cursor: pointer;
}
.option-item.selected { border-color: var(--primary); background: #fff0ee; }

.modal-actions { display: flex; gap: 15px; }
.stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; padding: 0 10px; }
.stepper button { border: none; background: none; font-size: 1.2rem; color: var(--primary); width: 30px; cursor: pointer; }
.btn-add, .btn-finish {
    flex: 1; background: var(--primary); color: #fff; border: none; padding: 14px;
    border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 1rem;
}

/* Checkout Específico */
.checkout-header {
    display: flex;
    justify-content: space-between; /* Joga um pra cada canto e um no meio */
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.checkout-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.btn-limpar {
    background: none;
    border: none;
    color: #e74c3c; /* Vermelho bonito */
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-fechar {
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Bolinha */
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.checkout-body { flex: 1; overflow-y: auto; padding-bottom: 20px; }

.delivery-toggle {
    display: flex;
    gap: 10px;
    background: #f2f2f2;
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.delivery-toggle button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px; /* Botão grande */
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delivery-toggle button.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--primary);
    transform: scale(1.02); /* Leve aumento para destaque */
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 31, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 31, 0); }
}

.delivery-toggle {
    animation: pulse-border 2s infinite; /* Chama atenção */
}

.form-section { margin-bottom: 20px; }
.form-section h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--dark); }
/* --- CSS PARA INPUTS MAIS ROBUSTOS --- */
.form-section label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.input-field {
    width: 100%;
    padding: 14px; /* Mais alto, mais fácil de clicar */
    background: #fff;
    border: 1px solid #ccc; /* Borda visível */
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    transition: 0.2s;
}

.input-field:focus {
    border-color: var(--primary); /* cor principal */
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 68, 31, 0.1);
}

/* Arrumar o DDI cortado */
.row {
    display: flex;
    gap: 10px;
}

.input-field.small {
    width: 120px !important; /* Força largura fixa suficiente */
    flex-shrink: 0; /* Impede de encolher */
    text-overflow: ellipsis;
}

.small { width: 35%; }
.mt-10 { margin-top: 10px; } .hidden { display: none; }
.btn-gps { width: 100%; background: #007bff; color: #fff; padding: 12px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }
.frete-info { margin-top: 8px; font-size: 0.9rem; font-weight: 600; color: #28a745; text-align: center; }

.upsell-scroller { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.upsell-card {
    min-width: 120px; border: 1px solid #eee; border-radius: 8px; padding: 10px; text-align: center; cursor: pointer;
}
.upsell-card h5 { font-size: 0.8rem; margin-bottom: 4px; }
.upsell-card span { font-size: 0.8rem; color: var(--primary); font-weight: bold; }

/* --- ADICIONE ISSO NO FINAL DO SEU CSS --- */

/* Lista de Itens no Carrinho */
/* ══════════════════════════════════════════════════════════════
   CARRINHO — lista compacta e fácil de visualizar
   ══════════════════════════════════════════════════════════════ */
.cart-items-list {
  padding-bottom: 4px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f2f2f2;
  animation: _cartItemIn 0.18s ease;
}
@keyframes _cartItemIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-row:last-child { border-bottom: none; }

/* Thumbnail menor */
.cart-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
  flex-shrink: 0;
}

/* Badge de quantidade sobreposto à thumb */
.cart-thumb-wrap {
  position: relative;
  flex-shrink: 0;
}
.cart-thumb-qty {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  pointer-events: none;
}

.cart-details {
  flex: 1;
  min-width: 0;
}

.cart-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.cart-variant {
  font-size: 0.7rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Controle de quantidade inline (−  N  +) */
.qty-mini {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty-mini button {
  border: none;
  background: none;
  width: 26px;
  height: 26px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.qty-mini button:active { background: #e8e8e8; }
.qty-mini span {
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #333;
}

.mt-20 { margin-top: 20px; }

/* Caixa de Informação Extra de Pagamento */
.payment-info-box {
    background: #e3f2fd; /* Azulzinho claro */
    border: 1px solid #90caf9;
    color: #0d47a1;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.payment-info-box strong {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.modal-bottom-sheet {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    margin-bottom: 10px;
}

/* Área de Observação */
.obs-area {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}
.obs-area label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}
.obs-area textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Rubik', sans-serif;
    resize: none;
}

/* Lista de Montagem (Poke) */
.montagem-group { margin-bottom: 20px; }
.montagem-title { 
    background: #f0f0f0; 
    padding: 8px; 
    border-radius: 5px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    color: var(--dark);
    margin-bottom: 8px;
}
.montagem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 5px;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
}
.montagem-item input {
    width: 18px; height: 18px; accent-color: var(--primary);
}
.montagem-item span { font-size: 0.95rem; color: #555; }

@keyframes blink-red {
    0% { border-color: #ff0000; box-shadow: 0 0 0 2px rgba(255,0,0,0.1); }
    50% { border-color: #ffcccc; box-shadow: 0 0 5px rgba(255,0,0,0.5); }
    100% { border-color: #ff0000; box-shadow: 0 0 0 2px rgba(255,0,0,0.1); }
}

.erro-validacao {
    animation: blink-red 1s infinite !important;
    border: 2px solid red !important;
    background-color: #fff0f0 !important;
}

/* Texto de ajuda (Help Text) */
.msg-erro-texto {
    color: red;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: bold;
    display: none; /* Escondido por padrão */
}

.scroll-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    /* Esconde a barra de rolagem feia em alguns navegadores */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.scroll-horizontal::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* A IMAGEM CORRIGIDA */
.upsell-item img {
    width: 70px;          /* Largura fixa */
    height: 70px;         /* Altura fixa (formando um quadrado) */
    object-fit: cover;    /* O PULO DO GATO: preenche o quadrado sem distorcer */
    border-radius: 12px;  /* Bordas arredondadas bonitas */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra suave */
    margin-bottom: 5px;   /* Espaço para o texto abaixo */
}

/* Ajustes finos no texto do upsell */
.upsell-info h4 {
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;       /* Não quebra linha */
    overflow: hidden;          /* Esconde o que passar */
    text-overflow: ellipsis;   /* Coloca "..." se o nome for longo */
    max-width: 100%;
}

.upsell-info span {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

/* Botãozinho de adicionar (+) */
.upsell-info button {
    background: var(--primary);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== TRACKER DE PEDIDO ===== */
@keyframes slideUp {
    from { opacity:0; transform:translateX(-50%) translateY(30px); }
    to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.tracker-step {
    flex:1; text-align:center; font-size:0.62rem; padding:5px 2px;
    border-radius:6px; color:#aaa; font-weight:600;
    transition: all 0.3s;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.tracker-step-active {
    background:var(--primary); color:#fff;
}
.tracker-step-done {
    background:#e8f5e9; color:#2e7d32;
}

/* === CUPOM DE DESCONTO === */
.cupom-area {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.cupom-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: stretch; /* CORREÇÃO: alinha altura */
}

.cupom-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 0; /* CORREÇÃO: permite encolher */
}

.cupom-input-group button {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap; /* CORREÇÃO: não quebra texto */
    flex-shrink: 0; /* CORREÇÃO: não encolhe */
}

/* === RODAPÉ FIXO === */
footer {
    margin-top: auto !important;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* === ESTILOS MODERNOS PARA MODAIS DE CUPOM === */
.modal-card-modern {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header-modern {
    background: linear-gradient(135deg, var(--primary) 0%, #e63b1f 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-modern h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn-modern {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn-modern:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body-modern {
    padding: 25px;
    max-height: calc(85vh - 160px);
    overflow-y: auto;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-modern label i {
    color: var(--primary);
}

/* Badge de status */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}
/* =============================================
   TRACKING CARD - ESTILOS
   ============================================= */
.track-step {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 1.2rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.track-step.active {
    opacity: 1;
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}
/* ═══════════════════════════════════════════
   MODAL PRODUTO — Builders (Pizza / Almoço / Extras)
   ═══════════════════════════════════════════ */

/* Pizza: grade de tamanhos */
.pizza-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 8px;
    margin: 10px 0;
}
.pizza-size-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    background: #fafafa;
}
.pizza-size-card:active, .pizza-size-card:hover { border-color: var(--primary); background: #fff5f3; }
.pizza-size-card.selected { border-color: var(--primary); background: #fff0ec; box-shadow: 0 3px 8px rgba(255,68,31,0.2); }
.pizza-size-name { font-size: 1.15rem; font-weight: 800; color: #333; }
.pizza-size-info { font-size: 0.68rem; color: #999; margin: 3px 0; }
.pizza-size-price { font-size: 0.85rem; font-weight: 700; color: var(--primary); }

/* Pizza: opção chips (borda / tipo) */
.pizza-opt-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; }
.pizza-opt-chip {
    padding: 7px 14px;
    border-radius: 20px;
    border: 2px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.15s;
}
.pizza-opt-chip.selected { border-color: var(--primary); background: #fff0ec; color: var(--primary); }

/* Sabores */
.sabor-slot-label { font-size: 0.78rem; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: 0.4px; margin: 14px 0 4px; }
.sabores-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sabor-chip {
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 0.82rem;
    transition: all 0.15s;
}
.sabor-chip.selected { border-color: #e67e22; background: #fff5e0; color: #d35400; font-weight: 600; }

/* Almoço: grade de pratos */
.almoco-pratos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin: 8px 0;
}
.almoco-prato-option {
    border: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s;
    background: #fafafa;
}
.almoco-prato-option:active, .almoco-prato-option:hover { border-color: #27ae60; }
.almoco-prato-option.selected { border-color: #27ae60; box-shadow: 0 3px 8px rgba(39,174,96,0.2); }
.almoco-prato-option img { width: 100%; height: 100px; object-fit: cover; display: block; }
.almoco-prato-option .prato-info { padding: 8px; }
.almoco-prato-option .prato-nome { font-weight: 700; font-size: 0.85rem; color: #333; line-height: 1.2; }
.almoco-prato-option .prato-desc { font-size: 0.72rem; color: #888; margin: 3px 0; }
.almoco-prato-option .prato-preco { font-size: 0.85rem; font-weight: 700; color: #27ae60; }

/* Extras no modal */
.extras-section { border-top: 2px dashed #eee; padding-top: 12px; margin-top: 14px; }
.extras-section h5 { color: #3498db; font-size: 0.9rem; margin-bottom: 8px; font-weight: 700; }
.extra-check-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid #e3f2fd;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background 0.15s;
    background: #fafeff;
}
.extra-check-row:hover { background: #ebf5fb; }
.extra-check-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }
.extra-check-label { flex: 1; margin: 0 10px; font-size: 0.88rem; color: #333; }
.extra-check-price { font-weight: 700; color: var(--primary); font-size: 0.82rem; white-space: nowrap; }

/* ═══════════════════════════════════════════
   DESKTOP LAYOUT — 2 colunas (sidebar carrinho)
   ═══════════════════════════════════════════ */

/* Mobile first: sidebar oculta, layout normal */
/* ══════════════════════════════════════════════════════════════
   LAYOUT DESKTOP — header sticky + grid com scroll normal
   ══════════════════════════════════════════════════════════════ */

.app-header.sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

/* Mobile: layout normal, scroll da página */
.desktop-layout { display: block; width: 100%; }
.desktop-left   { display: block; }
.desktop-right  { display: none; }

/* ── Desktop ≥ 1024px ──────────────────────────────────────── */
@media (min-width: 1024px) {

  /* Grid 2 colunas — scroll normal da página (sem overflow:hidden no body) */
  .desktop-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: start;
    width: 100%;
  }

  /* Coluna de conteúdo — scroll normal */
  .desktop-left {
    min-width: 0;
    padding: 0 12px 40px 20px;
  }

  /* Carrinho fica sticky conforme página scrolla */
  .desktop-right {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 88px;                      /* logo abaixo do header */
    height: calc(100vh - 100px);
    background: #fff;
    border-left: 1px solid #f0f0f0;
    overflow: hidden;
  }

  /* Esconde botão flutuante */
  .cart-float { display: none !important; }

  /* Grid: 3 colunas */
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* Cards maiores */
  .prod-img-wrap { height: 140px; }
  .prod-title    { font-size: 0.84rem; }
  .prod-price    { font-size: 0.9rem; }
  .btn-comprar   { font-size: 0.78rem; padding: 8px 6px; }

  /* Hamburger sticky dentro da coluna */
  .cat-hamburger-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    padding: 8px 0;
    margin-bottom: 4px;
  }

  /* Banner */
  .banner-area { border-radius: 16px; height: 180px; margin: 12px 0; }
}

/* ── Desktop largo ≥ 1440px: 4 colunas ────────────────────── */
@media (min-width: 1440px) {
  .desktop-layout { grid-template-columns: 1fr 320px; }
  .product-grid   { grid-template-columns: repeat(4, 1fr); }
  .prod-img-wrap  { height: 150px; }
}

/* ── Carrinho lateral — componentes ───────────────────────── */
.desktop-cart-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.desktop-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 14px;
}
.desktop-cart-body::-webkit-scrollbar { width: 4px; }
.desktop-cart-body::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.desktop-cart-empty {
  text-align: center;
  color: #bbb;
  padding: 36px 20px;
}
.desktop-cart-empty i     { font-size: 2rem; display: block; margin-bottom: 10px; }
.desktop-cart-empty small { font-size: 0.75rem; }

.desktop-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem;
}
.desktop-cart-item-name  { color: #333; font-weight: 600; flex: 1; }
.desktop-cart-item-price { color: var(--primary); font-weight: 700; white-space: nowrap; margin-left: 8px; }

.desktop-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-top: 2px solid #f0f0f0;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.desktop-cart-btn {
  padding: 14px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
  flex-shrink: 0;
}
.desktop-cart-btn:hover:not(:disabled) { filter: brightness(0.92); }
.desktop-cart-btn:disabled { background: #d1d5db; cursor: not-allowed; }

/* ═══════════════════════════════════════════
   🍕 PIZZA BUILDER — UX Passo a Passo
   ═══════════════════════════════════════════ */

/* Passo numerado */
.pizza-step { margin-bottom: 20px; }
.pizza-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 12px;
}
.pizza-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pizza-step-hint {
    font-size: 0.78rem;
    color: #888;
    margin: -6px 0 12px;
    line-height: 1.5;
}

/* Grade de tamanhos */
.pizza-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
}
.pizza-size-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pizza-size-card:hover { border-color: var(--primary); background: #fff5f3; }
.pizza-size-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff5f3, #ffe0d8);
    box-shadow: 0 3px 10px rgba(255,68,31,0.2);
}
.pizza-size-name { font-size: 1.1rem; font-weight: 800; color: #333; }
.pizza-size-info { font-size: 0.68rem; color: #999; }
.pizza-size-price { font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-top: 2px; }

/* Divisão de sabores */
.pizza-divisao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}
.pizza-divisao-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.15s;
}
.pizza-divisao-btn:hover { border-color: var(--primary); background: #fff5f3; }
.pizza-divisao-btn.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff5f3, #ffe0d8);
    box-shadow: 0 3px 10px rgba(255,68,31,0.2);
}
.pizza-divisao-icone { font-size: 1.4rem; }
.pizza-divisao-nome { font-size: 0.75rem; font-weight: 700; color: #444; text-align: center; line-height: 1.2; }

/* Slot de sabores */
.pizza-slot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 5px;
}
.pizza-fracao-badge {
    background: var(--primary);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}
.pizza-slot-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Lista de sabores: layout igual ao da referência ── */
.pizza-sabores-lista {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    padding: 6px;
    background: #f9f9f9;
}

/* Cada sabor: flex row — [img] [info] [badge-tipo] */
.pizza-sabor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1.5px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    text-align: left;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.pizza-sabor-item:hover { border-color: var(--primary); background: #fff5f3; }
.pizza-sabor-item.selected {
    border-color: var(--primary);
    background: linear-gradient(90deg, #fff0ec, #fff5f3);
    font-weight: 700;
}
/* Opacos quando slot cheio */
.pizza-sabores-lista.slot-cheio .pizza-sabor-item:not(.selected) {
    opacity: 0.35;
    pointer-events: none;
}

/* Thumbnail */
.pizza-sabor-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.pizza-sabor-emoji {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff7043, #e64a19);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Bloco de texto */
.pizza-sabor-info { flex: 1; min-width: 0; }
.pizza-sabor-nome {
    font-weight: 700;
    font-size: 0.86rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Badge de preço diferencial ("+Gs X.XXX") */
.pizza-sabor-preco {
    display: inline-block;
    font-size: 0.68rem;
    color: white;
    font-weight: 800;
    background: var(--primary);
    padding: 1px 6px;
    border-radius: 8px;
    margin-top: 3px;
}
.pizza-sabor-desc {
    font-size: 0.72rem;
    color: #999;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge de tipo — flex sibling direto do item (alinhado à direita) */
.pizza-sabor-tipo-badge {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.pizza-sabor-tipo-badge.tipo-especial    { background: #fff3cd; color: #856404; }
.pizza-sabor-tipo-badge.tipo-doce        { background: #fce4ec; color: #880e4f; }
.pizza-sabor-tipo-badge.tipo-premium     { background: #ede9fe; color: #4c1d95; }
.pizza-sabor-tipo-badge.tipo-doce-premium{ background: #fce4ec; color: #e91e8c; }
.pizza-sabor-tipo-badge.tipo-vegano      { background: #d1fae5; color: #065f46; }
.pizza-sabor-tipo-badge.tipo-picante     { background: #fee2e2; color: #991b1b; }

/* Tag de fração (1/2, 2/4 etc.) */
.pizza-fracao-tag {
    position: absolute;
    top: 4px;
    right: 6px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    pointer-events: none;
}

/* Borda chips */
.pizza-opt-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0; }
.pizza-opt-chip {
    padding: 8px 14px;
    border-radius: 20px;
    border: 2px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.15s;
    white-space: nowrap;
}
.pizza-opt-chip:hover { border-color: var(--primary); }
.pizza-opt-chip.selected { border-color: var(--primary); background: #fff0ec; color: var(--primary); }

/* Resumo em tempo real */
.pizza-resumo-header {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 14px;
}
.pizza-resumo-linha {
    display: flex;
    justify-content: space-between;
    padding: 7px 14px;
    font-size: 0.83rem;
    color: #444;
    border-bottom: 1px solid #fde8d0;
}
.pizza-resumo-linha span:first-child { color: #888; }
.pizza-resumo-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    background: #fff0ec;
}
/* --- SUBCATEGORIAS no Cardápio --- */
.subcat-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  padding: 14px 0 6px;
  margin: 8px 0 2px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}
.subcat-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 13px;
  background: var(--primary);
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ─── VARIAÇÕES DE SABOR — Modal do Cliente ─── */
.var-section {
  margin-top: 8px;
}
.var-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.var-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.var-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  position: relative;
}
.var-card:hover {
  border-color: var(--primary);
  background: #fff8f6;
  transform: translateX(2px);
}
.var-card.selected {
  border-color: var(--primary);
  background: #fff3f0;
}
.var-card-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.var-card-body {
  flex: 1;
  min-width: 0;
}
.var-card-nome {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.var-card-preco {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}
.var-card-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.var-card.selected .var-card-check {
  opacity: 1;
}
/* 3-button delivery toggle: smaller text on mobile */
@media (max-width: 400px) {
  .delivery-toggle button {
    font-size: 0.82rem !important;
    padding: 12px 6px !important;
    gap: 4px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   VAREJO — Extensão do style.css
   Cole este bloco no final do seu style.css existente.
   Não remove nenhuma regra anterior — apenas acrescenta.
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   1. GRID DE PRODUTOS (2 colunas — mobile first)
   ────────────────────────────────────────────────────────────── */

/*
 * Wrapper de grade dentro de cada <section> de categoria.
 * O JS cria este elemento automaticamente em renderizarProdutosGrid().
 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 0 8px;
}

/* Em telas um pouco maiores (ex: tablet) aumenta para 3 colunas */
@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ──────────────────────────────────────────────────────────────
   2. CARD DE PRODUTO (varejo)
   ────────────────────────────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.product-card:active {
  transform: scale(0.97);
}

/* Badge de "Sem estoque" sobrepõe o card */
.product-card.sem-estoque {
  opacity: 0.55;
  pointer-events: none;
}

.badge-sem-estoque {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(231, 76, 60, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Imagem quadrada (proporção 1:1) ── */
.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

/* Placeholder quando não há imagem */
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ccc;
  background: #f7f7f7;
}

/* ── Corpo do card ── */
.product-card__body {
  padding: 10px 10px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Nome truncado em 2 linhas */
.product-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark, #333);
  line-height: 1.35;
  /* Truncamento em 2 linhas (suporte amplo em 2024) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;   /* reserva espaço para 2 linhas mesmo com nome curto */
}

/* Categoria / variante em sub-texto */
.product-card__sub {
  font-size: 0.7rem;
  color: var(--gray, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Preço em destaque */
.product-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary, #1a7a2e);
  margin-top: 4px;
}

.product-card__price-from {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.65;
  display: block;
  margin-bottom: 1px;
}

/* ── Botão de ação ── */
.product-card__btn {
  margin: 8px 10px 10px;
  padding: 8px 6px;
  background: var(--primary, #1a7a2e);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: filter 0.15s ease;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.product-card__btn:active {
  filter: brightness(0.88);
}

/* Botão "Ver Opções" tem estilo diferenciado */
.product-card__btn--opcoes {
  background: transparent;
  color: var(--primary, #1a7a2e);
  border: 2px solid var(--primary, #1a7a2e);
}

/* ──────────────────────────────────────────────────────────────
   3. MODAL DE SELEÇÃO DE VARIAÇÃO (retail)
   ────────────────────────────────────────────────────────────── */

/*
 * Reutiliza .modal-overlay e .modal-bottom-sheet do style.css base.
 * As regras abaixo apenas estilizam os itens internos do modal de variação.
 */

.modal-variacoes__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-variacoes__thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}

.modal-variacoes__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark, #333);
  line-height: 1.3;
}

.modal-variacoes__subtitle {
  font-size: 0.78rem;
  color: var(--gray, #888);
  margin-top: 2px;
}

/* Grid de chips de variação */
.modal-variacoes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.variacao-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-width: 70px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark, #333);
  text-align: center;
  line-height: 1.25;
  position: relative;
}

.variacao-chip:hover {
  border-color: var(--primary, #1a7a2e);
  background: #f0fff4;
}

.variacao-chip.selected {
  border-color: var(--primary, #1a7a2e);
  background: #ecfdf5;
  color: var(--primary, #1a7a2e);
}

.variacao-chip.esgotado {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.variacao-chip__preco-extra {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}

/* Área de quantidade dentro do modal de variação */
.modal-variacoes__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-variacoes__qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary, #1a7a2e);
  background: transparent;
  color: var(--primary, #1a7a2e);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.modal-variacoes__qty span {
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

/* Botão confirmar dentro do modal */
.modal-variacoes__confirm {
  width: 100%;
  padding: 14px;
  background: var(--primary, #1a7a2e);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s;
}

.modal-variacoes__confirm:active {
  filter: brightness(0.88);
}

/* Observação opcional no modal */
.modal-variacoes__obs {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  margin-bottom: 14px;
  resize: none;
  outline: none;
  color: var(--dark, #333);
}

.modal-variacoes__obs:focus {
  border-color: var(--primary, #1a7a2e);
}

/* ──────────────────────────────────────────────────────────────
   4. ADMIN — Seção de variações de estoque no formulário
   ────────────────────────────────────────────────────────────── */

/* Cartão de variação no admin */
.var-estoque-row {
  display: grid;
  grid-template-columns: 1fr 110px 120px auto;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e9d5ff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

@media (max-width: 520px) {
  .var-estoque-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .var-estoque-row__estoque,
  .var-estoque-row__sku {
    grid-column: 1;
  }
}

.var-estoque-row.sem-estoque-admin {
  border-color: #fca5a5;
  background: #fff5f5;
}

.var-estoque-row__badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: #fee2e2;
  color: #dc2626;
}

/* Linha de cabeçalho da seção de variações */
.var-estoque-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.var-estoque-section-header h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #444;
}

/* ──────────────────────────────────────────────────────────────
   5. AJUSTE: desabilita o layout antigo quando modo varejo ativo
   ────────────────────────────────────────────────────────────── */

/*
 * Quando o body tem data-mode="varejo", o layout de linha
 * (.product-item) é desativado — os cards passam a ser o padrão.
 * Isso permite convivência segura durante a migração.
 */
body[data-mode="varejo"] .product-item {
  display: none !important;
}

/* ──────────────────────────────────────────────────────────────
   6. MOEDA DUPLA — Badge R$ no card e no carrinho
   ────────────────────────────────────────────────────────────── */

/* Badge "R$ X,XX" que aparece abaixo ou ao lado do preço em Gs */
.prod-price-brl {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  margin-top: 2px;
  line-height: 1.2;
}

/* Quando posicao = "lado": inline, separado por espaço */
.product-card__price .prod-price-brl {
  display: inline;
  margin-top: 0;
  margin-left: 6px;
}

/* No modal de variação */
.modal-variacoes__confirm .prod-price-brl {
  display: inline;
  font-size: 0.8em;
  opacity: 0.9;
  margin-left: 6px;
}

/* No carrinho / linha de item */
.cart-item-price-brl {
  font-size: 0.72rem;
  color: #2980b9;
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════
   7. HAMBURGER DRAWER — Categorias
   ══════════════════════════════════════════════════════════════ */

/* Barra que substitui o category-nav horizontal */
.cat-hamburger-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 95;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Botão hambúrguer */
.cat-hamburger-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary, #1a7a2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.15s;
}
.cat-hamburger-btn:active { filter: brightness(0.88); }

/* Ícone de 3 linhas */
.cat-hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.cat-hamburger-icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s;
}

.cat-hamburger-label { white-space: nowrap; }

.cat-hamburger-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

/* Pill da categoria ativa na barra */
.cat-ativa-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary, #1a7a2e);
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.cat-ativa-pill:empty { display: none; }

/* ── Overlay escuro ── */
.cat-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 199;
  backdrop-filter: blur(1px);
}
.cat-drawer-overlay.visible { display: block; }

/* ── Gaveta lateral ── */
.cat-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,0.12);
  overscroll-behavior: contain;
}
.cat-drawer.open { transform: translateX(0); }

/* Cabeçalho da gaveta */
.cat-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark, #333);
  flex-shrink: 0;
}
.cat-drawer-close {
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

/* Lista de pills na gaveta */
.cat-drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Pill individual dentro da gaveta */
.cat-drawer-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.cat-drawer-pill:hover  { background: #f3f4f6; }
.cat-drawer-pill.active {
  background: #ecfdf5;
  color: var(--primary, #1a7a2e);
  font-weight: 700;
}

/* Em telas largas (desktop): a gaveta fica aberta como sidebar */
@media (min-width: 800px) {
  .cat-drawer-overlay { display: none !important; }
  .cat-drawer {
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    transform: none;
    box-shadow: none;
    border-right: 1px solid #f0f0f0;
    width: 220px;
    flex-shrink: 0;
  }
  .cat-hamburger-bar { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   8. PROMOÇÃO + UNIDADE + DESTAQUE — badges no app do cliente
   ══════════════════════════════════════════════════════════════ */

/* Badge de desconto (ex: "20% OFF") */
.prod-promo-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Preço antigo riscado */
.prod-preco-antigo {
  font-size: 0.75rem;
  color: #aaa;
  text-decoration: line-through;
  vertical-align: middle;
}

/* Badge de unidade de venda (ex: "kg", "ml") */
.prod-unidade-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Estrela de destaque no nome */
.prod-destaque-star {
  font-size: 0.8rem;
  vertical-align: middle;
  margin-right: 2px;
}

/* Card de produto com destaque — borda dourada (definida no bloco do grid) */

/* ── Cabeçalho da seção Destaques ─────────────────────────── */
.destaques-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px 0;
}
.destaques-header__icon {
  font-size: 1.25rem;
  line-height: 1;
}
.section-title--destaques {
  margin: 0 !important;
  color: #b45309;
}

/* Separador visual entre Destaques e o resto do cardápio */
.menu-section-sep {
  height: 6px;
  background: #f3f4f6;
  margin: 18px -12px 0;
}

/* ── Skeleton loader (categoria carregando) ───────────────── */
.cat-skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 0 16px;
}
.cat-skeleton__card {
  background: #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  animation: _skelPulse 1.4s ease-in-out infinite;
}
.cat-skeleton__img  { width: 100%; aspect-ratio: 1/1; background: #e5e7eb; }
.cat-skeleton__line { height: 10px; margin: 10px 10px 6px; background: #e5e7eb; border-radius: 6px; }
.cat-skeleton__line--short { width: 55%; height: 10px; margin: 0 10px 14px; background: #e5e7eb; border-radius: 6px; }
@keyframes _skelPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* Divisor de grupo na gaveta ("Cardápio") */
.cat-drawer-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 16px 14px 6px;
  user-select: none;
}

/* ══════════════════════════════════════════════════════════════
   9. BOTÃO "VER MAIS" (paginação)
   ══════════════════════════════════════════════════════════════ */
.btn-ver-mais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin: 8px 0 20px;
  background: transparent;
  border: 2px solid var(--primary, #1a7a2e);
  border-radius: 12px;
  color: var(--primary, #1a7a2e);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-ver-mais:hover {
  background: var(--primary, #1a7a2e);
  color: #fff;
}
.btn-ver-mais__count { font-weight: 400; font-size: 0.82em; opacity: 0.8; }
.btn-ver-mais__icon  { font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════════════
   10. LISTA DE SEPARAÇÃO (picking list)
   ══════════════════════════════════════════════════════════════ */

/* Card de pedido */
.sep-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}

/* Cabeçalho do card */
.sep-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #f0f0f0;
  border-left: 4px solid #94a3b8;
}

.sep-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sep-num {
  font-weight: 800;
  font-size: 1rem;
  color: #1a7a2e;
}

.sep-cliente {
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
}

.sep-hora {
  font-size: 0.78rem;
  color: #888;
}

.sep-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sep-status-badge, .sep-pgto-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.sep-pgto-badge {
  background: #f3f4f6;
  color: #555;
  border: 1px solid #e5e7eb;
}

/* Endereço */
.sep-endereco {
  padding: 7px 16px;
  font-size: 0.82rem;
  color: #555;
  background: #fafafa;
  border-bottom: 1px dashed #e5e7eb;
}

/* Lista de itens */
.sep-itens-lista {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Linha de item com checkbox */
.sep-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid transparent;
  user-select: none;
}

.sep-item-row:hover {
  background: #f3f4f6;
}

/* Estado marcado */
.sep-item-checked {
  background: #f0fdf4 !important;
  border-color: #86efac !important;
}

.sep-item-checked .sep-item-nome {
  text-decoration: line-through;
  color: #9ca3af;
}

/* Checkbox personalizado */
.sep-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 5px;
  cursor: pointer;
  accent-color: #1a7a2e;
  margin-top: 1px;
}

.sep-item-body {
  flex: 1;
  min-width: 0;
}

.sep-item-nome {
  font-size: 0.9rem;
  color: #1f2937;
  line-height: 1.4;
  transition: color 0.15s, text-decoration 0.15s;
}

.sep-variacao {
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 600;
}

.sep-unidade {
  display: inline-block;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  margin-left: 4px;
  text-transform: uppercase;
  vertical-align: middle;
}

.sep-obs {
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 3px;
}

/* Rodapé do card */
.sep-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.sep-total {
  font-size: 0.85rem;
  color: #555;
}

.sep-acoes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Botões de ação do card */
.sep-btn-print {
  background: #6b7280 !important;
  color: #fff !important;
}

.sep-btn-limpar {
  background: #e5e7eb !important;
  color: #374151 !important;
}

.sep-btn-pronto {
  background: #1a7a2e !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.sep-btn-saiu {
  background: #2563eb !important;
  color: #fff !important;
  font-weight: 700 !important;
}

/* ── Impressão ─────────────────────────────────────────────── */
@media print {
  /* Esconde tudo menos a área de impressão */
  body > *:not(#sep-print-area) { display: none !important; }
  .sep-card-footer               { display: none !important; }
  .sep-btn-print, .sep-btn-limpar,
  .sep-btn-pronto, .sep-btn-saiu { display: none !important; }

  .sep-card {
    page-break-inside: avoid;
    border: 1.5px solid #ccc;
    margin-bottom: 14px;
  }

  /* Torna o checkbox imprimível como caixa vazia */
  .sep-checkbox {
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #333 !important;
    border-radius: 3px !important;
    background: #fff !important;
    width: 16px !important;
    height: 16px !important;
  }
  .sep-checkbox:checked::after {
    content: "✓";
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    color: #1a7a2e;
    font-weight: 900;
  }
}