/*
Theme Name: Astra Child
Template: astra
Author: Seu Nome
Description: Tema filho do Astra para customizações.
Version: 1.0
*/
/* ============================
   THEME & VARIÁVEIS GLOBAIS
============================ */
:root {
  --bg-900: #0f0f0f;
  --bg-800: #1a1a1a;
  --bg-700: #2c2c2c;
  --accent-gold: #d4af37;
  --accent-gold-2: #c5a22c;
  --paper: #f2f2f2;
  --muted: #666666;
  --text-100: #f5e0a1;
  --text-900: #111111;
  --glass: rgba(255,255,255,0.04);
  --radius-pill: 30px;
  --radius-lg: 12px;
  --shadow-soft: 0 6px 20px rgba(0,0,0,0.45);
  --shadow-inset: inset 0 1px 6px rgba(0,0,0,0.18);
  --tap-size: 48px;
  --transition-fast: 180ms;
  --transition-med: 300ms;
  --transition-slow: 420ms;
  --app-elevation: 0 10px 30px rgba(0,0,0,0.45);
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-med: 0ms;
    --transition-slow: 0ms;
  }
}

/* ============================
   RESET GERAL
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body, #page {
  height: 100%;
}

body {
  background: #fff;
  color: #f5e0a1;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
}

/* Utilitários */
.u-row { display: flex; gap: 12px; align-items: center; }
.u-center { display: flex; align-items: center; justify-content: center; }
.u-hidden { display: none !important; }

/* ============================
   HEADER DESKTOP
============================ */
/* ============================
   HEADER DESKTOP FIX
============================ */
header.site-header-custom {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c) !important; /* gradiente cinza escuro */
  color: #f5e0a1 !important; /* texto bege claro */
  border-bottom: 2px solid #d4af37; /* dourado */
  box-shadow: var(--shadow-soft);
}

/* Forçar cor do texto dentro do header */
header.site-header-custom a,
header.site-header-custom .topbar,
header.site-header-custom .categories,
header.site-header-custom .submenu li {
  color: #f5e0a1 !important;
}

/* Links dourados */
header.site-header-custom .links a {
  color: #d4af37 !important;
}

/* Submenu */
header.site-header-custom .submenu {
  background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(15,15,15,0.95)) !important;
  color: #f5e0a1 !important;
}

/* Inputs / pesquisa */
header.site-header-custom #searchform .form-control {
  color: #111111 !important; /* texto digitado na busca */
}


/* Topbar desktop */
header.site-header-custom .topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}

/* Logo no desktop */
header.site-header-custom .logo img {
  max-height: 109px!important;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
  padding: 6px;
}

/* Search desktop */
header.site-header-custom #searchform {
  flex: 1 1 520px;
  margin: 40px 28px 0;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.site-header-custom #searchform .input-group {
  display: flex;
  width: 100%;
  background-color: var(--paper);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.08);
  border-color: #11111;
  box-shadow: var(--shadow-inset);
  overflow: hidden;
  height: 40px;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

header.site-header-custom #searchform .input-group:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--app-elevation);
}

header.site-header-custom #searchform .form-control {
  flex: 1;
  padding: 12px 16px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #33333;
  font-size: 1.00rem;
  font-weight: 400;
  outline: none;
}

header.site-header-custom #searchform .form-control::placeholder {
  color: #33333;
  font-weight: 400;
  opacity: 0.7;
}

header.site-header-custom #searchform .btn-theme {
  background: #C79A3A;
  border: none;
  height: 100%;
  padding: 0 30px;
  border: 2px; 
  border-color:#111;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  font-size: 1.2em;
  color: #ffffff!important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

header.site-header-custom #searchform .btn-theme:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}


    
/* ============================
   AJUSTE: LOGIN + CARRINHO DESKTOP
============================ */
header.site-header-custom .links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

/* Login e Carrinho — brancos e alinhados */
header.site-header-custom .links a,
header.site-header-custom .links .cart-link {
  color: #fff !important;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Ícones */
header.site-header-custom .links a i {
  color: #fff !important;
  font-size: 1.05rem;
}

/* Hover elegante */
header.site-header-custom .links a:hover,
header.site-header-custom .links .cart-link:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-2px);
}

/* Garantir alinhamento vertical perfeito */
header.site-header-custom .links a,
header.site-header-custom .links .cart-link {
  line-height: 1;
  padding: 8px 10px;
}

/* Ajuste fino para o shortcode do carrinho */
header.site-header-custom .links .cart-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: var(--tap-size);
}

/* Menu de categorias desktop */
header.site-header-custom .categories {
  width: 100%;
  background: rgba(15,15,15,0.9);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.02);
}

header.site-header-custom .categories > ul {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  gap: 34px;
  list-style: none;
  align-items: center;
  font-size: 1.02em;
  flex-wrap: wrap;
}

header.site-header-custom .categories .cat {
  position: relative;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ============================
   CATEGORIAS DESKTOP — FUNDO DISFARÇADO E MODERNO
============================ */
header.site-header-custom .categories .cat > a,
header.site-header-custom .categories .cat > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: transparent;
  position: relative;
  transition: all 0.25s ease;
}

header.site-header-custom .categories .cat > a::after,
header.site-header-custom .categories .cat > span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

header.site-header-custom .categories .cat > a:hover::after,
header.site-header-custom .categories .cat > span:hover::after {
  opacity: 1;
}

header.site-header-custom .categories .cat > a:hover,
header.site-header-custom .categories .cat > span:hover {
  color: #f5e0a1 !important;
  text-shadow: 0 0 10px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

header.site-header-custom .categories .cat i {
  color: var(--accent-gold);
  font-size: 1.15em;
  opacity: 0.8;
  transition: color 0.25s, opacity 0.25s;
}

header.site-header-custom .categories .cat:hover i {
  color: #f5e0a1;
  opacity: 1;
}


/* ============================
   SUBMENU DESKTOP — AJUSTA LARGURA + SOMBRA DISCRETA
============================ */
header.site-header-custom .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: block; /* 👈 antes estava inline-block */
  width: auto;
  min-width: 100%; /* 👈 garante largura mínima igual ao item pai */
  max-width: max-content; /* 👈 permite crescer conforme o texto */
  padding: 10px 0;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  box-shadow: 0 18px 28px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(.2,.9,.34,1.1);
  z-index: 99;
  white-space: nowrap;
  overflow: hidden; /* 👈 previne “pontinho” em estado fechado */
}

header.site-header-custom .cat:hover .submenu,
header.site-header-custom .cat:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

header.site-header-custom .submenu li a {
  display: block;
  padding: 10px 18px;
  color: #e8e8e8 !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

header.site-header-custom .submenu li a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #f5e0a1 !important;
}

/* ============================
   HEADER MOBILE
============================ */

.mobile-header {
  display: none;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  background: linear-gradient(180deg, var(--bg-800), var(--bg-700));
  color: #f5e0a1;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.mobile-header > * {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-header .mobile-logo img {
  max-height: 58px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
  padding: 4px;
}

/* ícones mobile */
.mobile-header .mobile-icons a {
  color: var(--accent-gold);
  font-size: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-size);
  height: var(--tap-size);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  transition: background var(--transition-fast), transform var(--transition-fast);
  
}


/* botão toggle hamburger mobile */
.mobile-header .mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
}

.mobile-header .mobile-menu-toggle span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Container do menu mobile */
.mobile-categories {
  display: none; /* escondido inicialmente, será aberto via JS */
  background: #111;
  padding: 10px 0;
  z-index: 9999;
  position: relative;
  overflow-y: auto; /* scrolla só o menu se necessário */
  max-height: 100vh; /* evita passar da tela */
}

}

/* Cada categoria */
.mobile-categories .cat {
  position: relative;
}

/* Link da categoria */
.mobile-categories .cat > a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Submenu (subcategorias) */
.mobile-categories .submenu {
  display: none;
  position: relative;
  background: #1b1b1b;
  padding-left: 20px;
  z-index: 9999;
}

/* Quando o item pai tem classe .open, mostra o submenu */
.mobile-categories .cat.open > .submenu {
  display: block;
}

/* Estilização dos links do submenu */
.mobile-categories .submenu li a {
  display: block;
  padding: 10px 12px;
  color: #ccc;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hover no submenu */
.mobile-categories .submenu li a:hover {
  color: #f5e0a1;
}
/* painel mobile de categorias */
.mobile-categories {
  display: none;
  background: linear-gradient(180deg, var(--bg-700), var(--bg-800));
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: var(--app-elevation);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  transform-origin: top center;
}

/* lista de categorias no mobile */
.mobile-categories ul {
  list-style: none;
  margin: 0;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-categories ul li a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #f5e0a1;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  border: 1px solid rgba(255,255,255,0.02);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.mobile-categories ul li a:hover,
.mobile-categories ul li a:active {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
  background: linear-gradient(90deg, rgba(212,175,55,0.06), rgba(197,162,46,0.04));
  color: #f5e0a1;
}

/* submenu mobile (colapsível) */
.mobile-categories ul li .submenu {
  display: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.02);
  position: relative; /* crucial */
  top: 0;             /* evitar que ele "fuja" */
  margin: 0;          /* remove o espaço que joga pra baixo */
  z-index: 9999;      /* garantir que fique visível */
}


/* quando aberto submenu mobile */
.mobile-categories ul li.open > .submenu {
  display: block;
}
/* ============================
   COR DO ÍCONE LOGIN — MOBILE
============================ */
@media screen and (max-width: 1024px) {
  .mobile-header .mobile-icon .fas.fa-user {
    color: #ffffff !important;
    fill: #ffffff !important; /* caso seja SVG */
  }
}

/* ============================
   MOBILE SEARCH (na header mobile)
============================ */
.mobile-header .mobile-search {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mobile-header .mobile-search .input-group {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: transparent;
  transition: all var(--transition-fast);
  overflow: hidden;
  max-width: 48px;
  height: 44px;
}

.mobile-header .mobile-search .form-control {
  border: none;
  outline: none;
  background: #ffffff;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
  display: none;
}

.mobile-header .mobile-search .input-group.expanded {
  max-width: 100%;
  box-shadow: var(--app-elevation);
}

.mobile-header .mobile-search .input-group.expanded .form-control {
  display: block;
}

.mobile-header .mobile-search .btn-theme {
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.06em;
  height: 100%;
  transition: transform var(--transition-fast);
}

.mobile-header .mobile-search .btn-theme:active {
  transform: translateY(1px);
}
/* ===== POP-UP DA BUSCA NO MOBILE ===== */

.mobile-header .mobile-search .input-group {
  position: relative;
}

/* Quando abre → vira POP-UP fixo */
.mobile-header .mobile-search .input-group.expanded {
  position: fixed !important;
  top: 12px;              /* distância do topo */
  left: 50%;
  transform: translateX(-50%);
  width: 90% !important;  /* tamanho do pop-up */
  max-width: 90% !important;
  height: 48px;
  background: #ffffff!important;
  border-radius: 50px;
  padding-left: 12px;
  padding-right: 12px;
  z-index: 99999;         /* aparece por cima */
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Input aparece só no pop-up */
.mobile-header .mobile-search .input-group.expanded .form-control {
  display: block;
}

/* Ícone de busca fica dentro, agora clicável */
.mobile-header .mobile-search .btn-theme {
color: #fff!important; }

/* ============================================
   1) LUPA DO POP-UP (mobile) FICA #333
   — só quando o input estiver expandido
   ============================================ */
.mobile-header .mobile-search .input-group.expanded .btn-theme {
  color: #333 !important;
}

/* ============================================
   2) SPINNER (LOADER) AO CLICAR EM BUSCAR
   ============================================ */
.mobile-header .mobile-search .btn-theme {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Esconde o ícone da lupa quando carregando */
.mobile-header .mobile-search .btn-theme.loading i {
  visibility: hidden;
  width: 0;
  height: 0;
  display: inline-block;
}

/* Spinner (cor #333 apenas no pop-up) */
.mobile-header .mobile-search .btn-theme.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #333;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  position: absolute;
}

/* Spinner menor para telas pequenas (opcional) */
@media (max-width: 480px) {
  .mobile-header .mobile-search .btn-theme.loading::after {
    width: 14px;
    height: 14px;
    border-width: 1.8px;
  }
}

/* Animação do spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ============================
   RESPONSIVIDADE
============================ */
@media screen and (max-width: 1024px) {
  header.site-header-custom { display: none; }
  .mobile-header { display: flex; }
}

@media screen and (min-width: 1025px) {
  header.site-header-custom { display: block; }
  .mobile-header { display: none; }

  /* ajustes para desktop após breakpoint */
  header.site-header-custom .topbar { gap: 24px; padding: 18px 20px; }
  header.site-header-custom .categories > ul { gap: 28px; }
  header.site-header-custom .categories .cat span { padding: 12px 10px; border-radius: 10px; }
}

/* ============================
   ACESSIBILIDADE & DETALHES
============================ */
/* garantir áreas clicáveis maiores */
header.site-header-custom .links a,
header.site-header-custom .categories .cat span,
.mobile-header .mobile-icons a {
  min-height: var(--tap-size);
  min-width: var(--tap-size);
  padding-inline: 10px;
}

/* estado de foco visível */
a:focus, button:focus, input:focus {
  outline: 3px solid rgba(212,175,55,0.18);
  outline-offset: 3px;
  border-radius: 8px;
}

/* estilo de badge */
.badge {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-2));
  color: #111;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  box-shadow: 0 6px 16px rgba(197,162,46,0.12);
}

/* estilo de card reutilizável */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.7);
}

/* separador de título em submenu */
.submenu-title {
  padding: 8px 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  margin-bottom: 6px;
  color: var(--accent-gold);
  background: linear-gradient(90deg, rgba(255,255,255,0.01), transparent);
}

/* fontes especiais */
.header-tech {
  font-family: 'Orbitron', "Inter", sans-serif;
  letter-spacing: 0.8px;
}

.tobacco-heading {
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  color: var(--accent-gold);
  text-shadow: 0 2px 8px rgba(212,175,55,0.12);
  font-weight: 700;
}

/* campos de formulário genéricos */
input[type="search"], input[type="text"], textarea {
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  color: #f5e0a1;
  border: 1px solid rgba(255,255,255,0.02);
}

/* evitar overflow de imagens/svg */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
  
 /* === Loja Central Distribuidora - Layout === */

/* Estrutura principal */
.loja-central {
  background: #fff;
  padding: 40px 0;
}

.container-loja {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ==== Sidebar ==== */
.filtros-loja {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  height: fit-content;
}

.titulo-filtros {
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.filtros-loja h4 {
  margin: 20px 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 4px;
}

.filtros-loja ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filtros-loja ul li {
  margin: 6px 0;
}

.filtros-loja ul li a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.filtros-loja ul li a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* ==== Produtos ==== */
.central-carousel-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.central-carousel-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  min-height: 380px;
}

.central-carousel-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.central-carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.central-carousel-item:hover img {
  transform: scale(1.05);
}

.central-carousel-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1a1a1a;
  min-height: 38px;
}

.central-carousel-price {
  color: #d4af37;
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 15px;
}

/* Botão padrão WooCommerce */
.central-carousel-buy .button {
  background: #064d00 !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  height: 44px;
  text-transform: uppercase;
}

.central-carousel-buy .button:hover {
  background: #053800 !important;
  transform: translateY(-2px);
}

/* ==== Descrição ==== */
.descricao-categoria {
  margin: 60px auto 40px;
  max-width: 900px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  text-align: center;
  padding: 0 20px;
}


/* ==== Responsivo ==== */
@media (max-width: 992px) {
  .container-loja {
    grid-template-columns: 1fr;
  }
  .filtros-loja {
    margin-bottom: 30px;
  }
}
 
 /* ===== Corrige zoom automático no mobile (iOS e Android) ===== */
input,
select,
textarea {
  font-size: 16px !important;
}

/* Opcional: se quiser desativar o zoom manual também */
@viewport {
  zoom: 1.0;
  width: device-width;
}

@-ms-viewport {
  zoom: 1.0;
  width: device-width;
}
/* ======== FORÇAR TEMA CLARO GLOBAL ======== */
html {
  color-scheme: light !important;
  background: #ffffff !important;
}

@media (prefers-color-scheme: dark) {
  html, body, * {
    background-color: #ffffff !important;
    color: #111111 !important;
  }
}
@media (max-width: 768px) {
  .banner-visual::before,
  .banner-visual::after {
    display: none !important;
  }

  .banner-central {
    overflow: hidden !important; /* garante que nada vaze */
  }
}
.ml-cart-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.ml-cart-left {
  flex: 2;
}

.ml-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.ml-item img {
  width: 80px;
}

.ml-item-info h3 {
  margin: 0;
  font-size: 16px;
}

.ml-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.ml-actions button {
  padding: 5px 10px;
  cursor: pointer;
}

.ml-cart-right {
  flex: 1;
  border: 1px solid #ddd;
  padding: 20px;
  height: fit-content;
}

.resume-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.resume-line.total {
  font-size: 18px;
}

.btn-checkout {
  display: block;
  background: #3483fa;
  color: #fff;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}

