/* =========================================================
   FogoesShop · Tweaks
   stylesheet/fogoesshop-tweaks.css
   Carregado DEPOIS de fogoesshop.css para overrides + features:
   1) Sticky header (topstrip recolhe; header+navbar fixam no topo)
   2) Mobile-first responsive (breakpoints sm/md/lg)
   3) Outros polimentos (newsletter banner positioning, etc)
   ========================================================= */

/* ============================================================
   1) STICKY HEADER
   ============================================================ */

/* Container .dweb deve permitir position:sticky nos filhos */
.dweb { overflow: visible; }

/* Topstrip: animavel, posiciona no topo da pagina */
.dweb .topstrip {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease;
  max-height: 60px;
  overflow: hidden;
}

/* Quando o usuario faz scroll-down (classe adicionada via JS), topstrip recolhe */
.dweb .topstrip.topstrip-collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* Header (logo + search + actions): sticky abaixo do topstrip */
.dweb .header {
  position: sticky;
  top: 0;
  z-index: 1029;
  background: var(--fs-card, #fff); /* --fs-card e o token real do tema (nao --fs-paper). Fallback #fff por seguranca. */
  /* sombra sutil quando esta scrollado */
  transition: box-shadow 220ms ease;
}
.dweb .topstrip:not(.topstrip-collapsed) + .header {
  /* Quando topstrip aparece, header fica logo abaixo dele */
  /* (o sticky usa o offset dinamico naturalmente quando esta no fluxo) */
}
.dweb .topstrip.topstrip-collapsed + .header {
  box-shadow: 0 1px 0 var(--fs-line), 0 4px 12px rgba(0,0,0,0.04);
}

/* Navbar de categorias: sticky abaixo do header */
.dweb .navbar {
  position: sticky;
  top: 88px; /* altura aprox do header desktop */
  z-index: 1028;
  background: var(--fs-card, #fff); /* --fs-card e o token real do tema (nao --fs-paper). Fallback #fff por seguranca. */
  transition: top 220ms ease, box-shadow 220ms ease;
}
/* Quando topstrip esta visivel, header empurra navbar pra baixo */
.dweb .navbar { top: 88px; }
.dweb:has(.topstrip.topstrip-collapsed) .navbar { top: 88px; }

/* Quando topstrip aparece, header gruda no topstrip (offset 32px) e navbar gruda no header (88+32=120) */
.dweb:has(.topstrip:not(.topstrip-collapsed)) .header { top: 32px; }
.dweb:has(.topstrip:not(.topstrip-collapsed)) .navbar { top: 120px; }

/* Sombra na navbar quando esta scrollado (rolou pelo menos um pouco) */
.dweb .navbar { box-shadow: 0 1px 0 var(--fs-line); }

/* ============================================================
   1.5) DESKTOP CHROME MAX-WIDTH (centered content on wide viewports)
   No mockup, o artboard era 1280px com padding 40px → conteudo ~1200px.
   Em viewports reais maiores (1440+, 1920+) o conteudo se espalhava.

   Esta regra centraliza APENAS .topstrip / .header / .navbar (full-width
   sem max-width, usam padding calc() para empurrar conteudo pro centro
   mantendo background edge-to-edge).

   .dweb .container NAO entra aqui: e Bootstrap container com max-width:
   1320px e margin:auto que ja se centraliza sozinho. Aplicar calc-padding
   nele em viewports >2560px gerava padding interno > max-width, esmagando
   o grid de .dhero (heromain some, heroside overflow centralizado).
   ============================================================ */
@media (min-width: 992px) {
  .dweb .topstrip,
  .dweb .header,
  .dweb .navbar,
  .dweb .pdcrumbs,
  .dweb .listpage,
  .dweb .pdpage,
  .dweb .dfooter > .nl,
  .dweb .dfooter > .top,
  .dweb .dfooter > .mid,
  .dweb .dfooter > .legal {
    padding-left: max(40px, calc((100% - 1280px) / 2));
    padding-right: max(40px, calc((100% - 1280px) / 2));
  }
}

/* ============================================================
   1.6) BOOTSTRAP ICONS NO SERVICE STRIP (.dsvc)
   hc_services.twig usa <i class="bi bi-..."> via Bootstrap Icons CDN.
   Tamanho/alinhamento para casar com o mockup .dservice.
   ============================================================ */
.dweb .dsvc .ic .bi {
  font-size: 26px;
  line-height: 1;
  display: inline-block;
}

/* ============================================================
   1.16) HERO ROW 2 — bento de 3 banners (1 grande + 2 menores)
   Mobile-first: 1 col → 2 cols (>=768) → 3 cols (>=992).
   Em desktop, primeiro banner ocupa 2fr, demais 1fr cada.
   ============================================================ */
/* .dhero tem margin-bottom: 24px no fogoesshop.css. Aqui zeramos pra que o
   margin-top do .dhero-row2 (16px) defina o gap exato entre as 2 linhas. */
.dweb .dhero { margin-bottom: 0; }

.dweb .dhero-row2 {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px; /* preserva espaco original entre o bloco hero e a service strip */
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .dweb .dhero-row2 {
    grid-template-columns: 1fr 1fr;
  }
  .dweb .dhero-row2 > .big-bento {
    grid-column: 1 / -1;
  }
}
@media (min-width: 992px) {
  /* Desktop: 3 colunas. Ultima coluna FIXA em 320px = mesma largura do
     .heroside (linha de cima), alinhando os banners verticalmente. */
  .dweb .dhero-row2 {
    grid-template-columns: 2fr 1fr 320px;
  }
  .dweb .dhero-row2 > .big-bento {
    grid-column: auto;
  }
}

/* Banner grande do bento — h3 maior, padding generoso */
.dweb .dhero-row2 .promo {
  min-height: 120px;
  padding: 18px 16px;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.dweb .dhero-row2 .promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.dweb .dhero-row2 .big-bento {
  min-height: 160px;
}
.dweb .dhero-row2 .big-bento h3 {
  font-size: 26px;
  line-height: 1.05;
}
.dweb .dhero-row2 .big-bento small {
  font-size: 11.5px;
}

/* Variante .promo.red (nao existia em fogoesshop.css; adicionada aqui) */
.promo.red { background: var(--fs-red); color: #fff; }
.promo.red .arrow { background: rgba(255,255,255,0.18); }

/* ============================================================
   1.15) HERO HEIGHT +30% (desktop only — mobile-first)
   .heromain default em styles.css é min-height: 360px → bump pra 468px (1.3x).
   .heroside (2 promos) sao `flex: 1` no mesmo grid row, entao herdam a altura
   do heromain automaticamente — bento grid preservado.
   Mobile (<992px): mantem padrao do tweaks.css secao 2 (sem override aqui).
   ============================================================ */
@media (min-width: 992px) {
  .dweb .heromain {
    min-height: 468px;
  }
}

/* ============================================================
   1.13) PDP DEPOCASA selo (deposelo) — variante com rating + 40 anos
   Substitui o icone (.ic) por estrelas de rating (4,5/5).
   Adiciona imagem 40anosfogoes.webp na lateral direita.
   ============================================================ */
.dweb .pdsidebar .deposelo {
  background: #fff;
  border: 1px solid var(--fs-line);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
}
.dweb .pdsidebar .deposelo:hover {
  border-color: var(--fs-red);
  box-shadow: 0 2px 8px rgba(225, 29, 46, 0.08);
}
.dweb .pdsidebar .deposelo .deposelo-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}
.dweb .pdsidebar .deposelo .rating-stars {
  display: inline-block;
  position: relative;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.dweb .pdsidebar .deposelo .rating-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--fs-ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.dweb .pdsidebar .deposelo .rating-stars .bg {
  color: rgba(11, 14, 19, 0.18);
}
.dweb .pdsidebar .deposelo .rating-stars .fg {
  position: absolute;
  left: 0;
  top: 0;
  color: #FFC629;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  /* Shimmer dourado discreto: gradiente sutil com banda mais clara animada
     lentamente. Sem branco puro; a banda usa um tom champagne quase imperceptivel. */
  background: linear-gradient(
    100deg,
    #FFC629 0%,
    #FFC629 42%,
    #FFD566 49%,
    #FFE38F 50%,
    #FFD566 51%,
    #FFC629 58%,
    #FFC629 100%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: fs-gold-shine 8s linear infinite;
}
@keyframes fs-gold-shine {
  0%   { background-position: 150% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dweb .pdsidebar .deposelo .rating-stars .fg { animation: none; }
}
.dweb .pdsidebar .deposelo .deposelo-text {
  flex: 1;
  min-width: 0;
}
.dweb .pdsidebar .deposelo .deposelo-anos {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  display: block;
  /* +15% sobre o 56px anterior */
}
@media (max-width: 575.98px) {
  .dweb .pdsidebar .deposelo .deposelo-anos { height: 51px; }
}

/* ============================================================
   1.14) BTN STACK — botao com texto principal + subtitulo menor
   Usado no "Comprar na DEPOCASA" (PDP) com "Nosso e-commerce seguro" abaixo.
   ============================================================ */
.btn.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn.btn-stack .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.btn.btn-stack .secondary {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.01em;
}

/* ============================================================
   1.12) LOGO SVG no header (.fs-logo-img)
   Substitui o markup de quadrados+texto por logo.svg.
   Aspect ratio do SVG: 952x256 (~3.72:1).
   Altura escolhida pra caber na altura atual do .dweb .header.
   ============================================================ */
.dweb .fs-logo.fs-logo-img {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.dweb .fs-logo.fs-logo-img img {
  height: 50px;
  width: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .dweb .fs-logo.fs-logo-img img { height: 38px; }
}
@media (max-width: 575.98px) {
  .dweb .fs-logo.fs-logo-img img { height: 32px; }
}

/* ============================================================
   1.13) FOOTER brand-col — logo IMAGE em card branco
   Footer tem bg preto (.dfooter). Logo do site (FOGÕES SHOP)
   tem texto preto pequeno na tagline e DEPOCASA badge — fica
   invisivel/quebrado em transparencia direta sobre preto.
   Solucao: wrapper card branco com padding+border-radius,
   tipo "badge" intencional (padrao Visa/Mastercard em footers).
   Aplicado SO quando logo_source=custom/header (twig adiciona
   .fs-logo--image). Fallback texto mantem layout original.
   ============================================================ */
.dfooter .brand-col .fs-logo--image {
  display: inline-block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  max-width: 100%;
}
.dfooter .brand-col .fs-logo--image img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .dfooter .brand-col .fs-logo--image { padding: 10px 14px; }
  .dfooter .brand-col .fs-logo--image img { max-width: 180px; }
}

/* ============================================================
   1.14) FOOTER brand-col — bandeiras de pagamento (.fs-pay)
   Bloco renderizado na brand-col abaixo do logo. Cada bandeira
   eh um chip BRANCO (mesmo tratamento do logo), conteudo SVG.
   Mobile-first: chips compactos, wrap se nao caber.
   Aspectos dos SVGs:
     - visa/mastercard/amex/boleto (apos crop): 1.56:1 (card-shape)
     - pix: 1:1 (icon)
   Como todos renderizam com mesma altura H e width auto, os
   cards naturalmente saem mais largos que o pix square.
   Padrao aceitavel pra payment rows (Mercado Livre, Magalu, etc).
   ============================================================ */
.dfooter .brand-col .fs-pay {
  margin-top: 14px;
}
.dfooter .brand-col .fs-pay__label {
  /* Match coluna labels (INSTITUCIONAL, ATENDIMENTO) */
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 8px;
}
.dfooter .brand-col .fs-pay__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.dfooter .brand-col .fs-pay__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 4px 6px;
  height: 26px;
  min-width: 26px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  /* Reset de inline-block defaults */
  line-height: 1;
  vertical-align: middle;
  /* font (caso seja text fallback) */
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
.dfooter .brand-col .fs-pay__chip img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 18px;
  object-fit: contain;
}
/* PIX square — leve padding extra horizontal pra nao parecer apertado */
.dfooter .brand-col .fs-pay__chip--pix {
  padding-left: 8px;
  padding-right: 8px;
}
/* Boleto: imagem ja tem rect rounded interno (fill #f9f9f9) — chip
   branco mantem consistencia com os outros, off-white interno fica
   discreto e nao destoa */

/* Tablet+ (>= 768px) chips um pouco maiores */
@media (min-width: 768px) {
  .dfooter .brand-col .fs-pay__row { gap: 8px; }
  .dfooter .brand-col .fs-pay__chip {
    height: 28px;
    padding: 4px 8px;
    min-width: 28px;
  }
  .dfooter .brand-col .fs-pay__chip img { max-height: 20px; }
}
/* Desktop (>= 1200px) chips em tamanho final */
@media (min-width: 1200px) {
  .dfooter .brand-col .fs-pay__row { gap: 8px; }
  .dfooter .brand-col .fs-pay__chip {
    height: 30px;
    padding: 5px 9px;
    min-width: 30px;
  }
  .dfooter .brand-col .fs-pay__chip img { max-height: 20px; }
}

/* Text fallback chips (caso badge nao tenha image) */
.dfooter .brand-col .fs-pay__chip--text { padding-left: 10px; padding-right: 10px; }
.dfooter .brand-col .fs-pay__chip--pix.fs-pay__chip--text {
  background: #32BCAD;
  color: #fff;
}
.dfooter .brand-col .fs-pay__chip--boleto.fs-pay__chip--text {
  background: #1a1a1a;
  color: #fff;
}

/* ============================================================
   1.15) FOOTER colunas — links com icone+subtexto + coluna address
   Estende o sistema de colunas dinamicas pra suportar:
   1) Links com icone bi-* prefixado e subtexto opcional
      (ex: "Televendas" sem link + "11 3034-2465" abaixo)
   2) Coluna kind="address": endereco fisico com icone + botoes
      de acao (Waze, Google Maps, etc) — mobile-first.
   ============================================================ */

/* --- Links com icone (Atendimento) --- */
.dfooter .col--links ul li.has-ic > a,
.dfooter .col--links ul li.has-ic > .txt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dfooter .col--links ul li.has-ic .bi {
  flex: 0 0 auto;
  font-size: 14px;
  width: 18px;
  text-align: center;
  opacity: 0.85;
  /* WhatsApp icone tem "naturalmente" verde — deixar herdar a cor do link */
}
.dfooter .col--links ul li.has-ic .bi.bi-whatsapp {
  color: #25D366;
  opacity: 1;
}
/* Item sem link: mesmo estilo visual mas sem hover */
.dfooter .col--links ul li.no-link {
  cursor: default;
}
.dfooter .col--links ul li.no-link .txt {
  color: rgba(255, 255, 255, 0.78);
}
/* Subtexto (numero abaixo do label "Televendas") */
.dfooter .col--links ul li .sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
  margin-left: 26px; /* alinhar com label apos o icone (icon w 18 + gap 8) */
  letter-spacing: 0.01em;
}

/* --- Coluna ADDRESS --- */
.dfooter .col--address .fs-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.dfooter .col--address .fs-addr__ic {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fs-red, #e10600);
  font-size: 16px;
  margin-top: 2px;
}
.dfooter .col--address .fs-addr__lines {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  flex: 1 1 auto;
  min-width: 0;
}

/* Botoes de acao (Waze, Google Maps) — mobile-first stack vertical */
.dfooter .col--address .fs-addr__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dfooter .col--address .fs-addr__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}
.dfooter .col--address .fs-addr__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.dfooter .col--address .fs-addr__btn:active {
  transform: translateY(1px);
}
.dfooter .col--address .fs-addr__btn .bi {
  font-size: 16px;
  flex: 0 0 auto;
}
/* Marcas dos botoes — cores diferenciadas */
.dfooter .col--address .fs-addr__btn[href*="waze.com"] .bi { color: #33CCFF; }
.dfooter .col--address .fs-addr__btn[href*="google.com/maps"] .bi { color: #34A853; }
.dfooter .col--address .fs-addr__btn[href*="maps.apple.com"] .bi { color: #fff; }

/* Tablet+ : botoes side-by-side */
@media (min-width: 768px) {
  .dfooter .col--address .fs-addr__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dfooter .col--address .fs-addr__btn {
    flex: 1 1 auto;
    min-width: 130px;
  }
}

/* ============================================================
   1.16) FOOTER bloco SEGURANCA — badge "Site Seguro" + RA seal
   Substitui o <h5>Segurança</h5> por um badge "selo de confianca"
   com cadeado verde + texto "Site Seguro / SSL · HTTPS".
   Visual: card branco arredondado para parear com o RA seal
   (que tambem renderiza como card branco do widget JS).
   ============================================================ */
.dfooter .pay--security .fs-secure-badge,
.dfooter .pay .fs-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0e5e25;
  padding: 6px 14px 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(14, 94, 37, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  vertical-align: middle;
  line-height: 1;
}
.dfooter .pay .fs-secure-badge .bi {
  color: #1a7f37;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}
.dfooter .pay .fs-secure-badge__lbl {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.dfooter .pay .fs-secure-badge__lbl strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0e5e25;
}
.dfooter .pay .fs-secure-badge__lbl small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a7f37;
  text-transform: uppercase;
}
/* Mobile: leve reducao */
@media (max-width: 575.98px) {
  .dfooter .pay .fs-secure-badge {
    padding: 5px 12px 5px 10px;
    gap: 8px;
  }
  .dfooter .pay .fs-secure-badge .bi { font-size: 19px; }
  .dfooter .pay .fs-secure-badge__lbl strong { font-size: 11px; }
  .dfooter .pay .fs-secure-badge__lbl small { font-size: 8.5px; }
}

/* ============================================================
   1.17) PAGINA DE INFORMACOES (information/information)
   Layout fogoesshop pra paginas estaticas (Sobre, Contato,
   Politica, Trocas, etc). Estrutura:
     <main.fs-info-page>
       .pdcrumbs (chrome) + .fs-info{ header + content + footer }
   Article centrado com max-width pra prose legivel.
   ============================================================ */

/* Section centralizada com largura ideal para leitura */
.dweb .fs-info {
  max-width: 840px;
  margin: 0 auto;
  padding: 12px 40px 48px;
}
@media (max-width: 767.98px) {
  .dweb .fs-info { padding: 8px 20px 32px; }
}

/* Breadcrumb (.pdcrumbs) na info page: alinhar com o artigo (840px centrado).
   Override do calc-padding chrome (section 1.5) que mira em 1280px — aqui
   queremos matching com o artigo prose, nao com o chrome. Specificity
   .dweb .fs-info-page > .pdcrumbs (0,3,0) > .dweb .pdcrumbs (0,2,0). */
.dweb .fs-info-page > .pdcrumbs {
  max-width: 840px;
  margin: 0 auto;
  padding: 16px 40px 12px;
}
@media (max-width: 767.98px) {
  .dweb .fs-info-page > .pdcrumbs { padding: 12px 20px 8px; }
}

/* Header (eyebrow + titulo grande) */
.dweb .fs-info__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fs-line);
}
.dweb .fs-info__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fs-red, #e10600);
  margin-bottom: 12px;
}
.dweb .fs-info__eyebrow .bi { font-size: 13px; }
.dweb .fs-info__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--fs-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 767.98px) {
  .dweb .fs-info__title { font-size: 26px; }
  .dweb .fs-info__header { margin-bottom: 22px; padding-bottom: 18px; }
}

/* Article content — prose typography */
.dweb .fs-info__content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fs-ink-2, #2a2a2a);
}
.dweb .fs-info__content > *:first-child { margin-top: 0; }
.dweb .fs-info__content > *:last-child { margin-bottom: 0; }
.dweb .fs-info__content p { margin: 0 0 18px; }
.dweb .fs-info__content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fs-ink);
  margin: 36px 0 14px;
}
.dweb .fs-info__content h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--fs-ink);
  margin: 28px 0 12px;
}
.dweb .fs-info__content h4,
.dweb .fs-info__content h5,
.dweb .fs-info__content h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fs-ink);
  margin: 22px 0 8px;
}
.dweb .fs-info__content strong,
.dweb .fs-info__content b {
  color: var(--fs-ink);
  font-weight: 700;
}
.dweb .fs-info__content em,
.dweb .fs-info__content i { font-style: italic; }
.dweb .fs-info__content a {
  color: var(--fs-red, #e10600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.dweb .fs-info__content a:hover { color: var(--fs-red-700, #b80000); }
.dweb .fs-info__content ul,
.dweb .fs-info__content ol {
  margin: 0 0 18px;
  padding-left: 26px;
}
.dweb .fs-info__content li { margin-bottom: 6px; }
.dweb .fs-info__content li > ul,
.dweb .fs-info__content li > ol { margin: 6px 0 8px; }
.dweb .fs-info__content blockquote {
  border-left: 3px solid var(--fs-red, #e10600);
  margin: 24px 0;
  padding: 8px 0 8px 20px;
  color: var(--fs-mute);
  font-style: italic;
}
.dweb .fs-info__content code {
  background: var(--fs-bg, #f4f4f4);
  border: 1px solid var(--fs-line);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.92em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.dweb .fs-info__content pre {
  background: var(--fs-bg, #f4f4f4);
  border: 1px solid var(--fs-line);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 20px 0;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.5;
}
.dweb .fs-info__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.dweb .fs-info__content th,
.dweb .fs-info__content td {
  border: 1px solid var(--fs-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.dweb .fs-info__content th {
  background: var(--fs-bg, #f6f6f6);
  font-weight: 700;
  color: var(--fs-ink);
}
.dweb .fs-info__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 14px 0;
}
.dweb .fs-info__content hr {
  border: 0;
  border-top: 1px solid var(--fs-line);
  margin: 32px 0;
}
@media (max-width: 767.98px) {
  .dweb .fs-info__content { font-size: 15px; line-height: 1.65; }
  .dweb .fs-info__content h2 { font-size: 21px; margin: 28px 0 12px; }
  .dweb .fs-info__content h3 { font-size: 17px; margin: 22px 0 10px; }
}

/* Action footer (botoes "Voltar a loja" + "Falar conosco") */
.dweb .fs-info__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--fs-line);
}
.dweb .fs-info__footer .btn .bi { font-size: 14px; }

/* ============================================================
   1.18) PAGINA /orcamentos — vendor cards
   Conteudo da description renderiza um grid de cards de vendedores,
   cada um com nome + 2 acoes (email + WhatsApp). Responsivo via
   auto-fill grid (1 col mobile, 2 col tablet, 3 col desktop).
   Markup vem do CMS via classes .fs-vendor*, .fs-vendor-fallback,
   .fs-stock-banner — editavel via admin.
   ============================================================ */

/* Lead intro — diferenciado do <p> normal */
.dweb .fs-info__content p.fs-vendor-lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fs-ink-2, #2a2a2a);
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--fs-red, #e10600);
}

/* Grid de vendor cards */
.dweb .fs-info__content .fs-vendors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 480px) {
  .dweb .fs-info__content .fs-vendors {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 720px) {
  .dweb .fs-info__content .fs-vendors {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Card individual */
.dweb .fs-info__content .fs-vendor {
  background: #fff;
  border: 1px solid var(--fs-line, #e8e8e8);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  margin: 0; /* override prose <article> spacing if any */
}
.dweb .fs-info__content .fs-vendor:hover {
  border-color: var(--fs-red, #e10600);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.dweb .fs-info__content .fs-vendor__name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 !important;
  color: var(--fs-ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

/* Acoes (email + whatsapp) — grid 2 col equal */
.dweb .fs-info__content .fs-vendor__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.dweb .fs-info__content .fs-vendor__email,
.dweb .fs-info__content .fs-vendor__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.05s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 0;
}
.dweb .fs-info__content .fs-vendor__email {
  background: rgba(0, 0, 0, 0.05);
  color: var(--fs-ink, #1a1a1a) !important;
}
.dweb .fs-info__content .fs-vendor__email:hover {
  background: rgba(0, 0, 0, 0.09);
}
.dweb .fs-info__content .fs-vendor__wa {
  background: #25D366;
  color: #fff !important;
}
.dweb .fs-info__content .fs-vendor__wa:hover {
  background: #1eb058;
}
.dweb .fs-info__content .fs-vendor__email .bi,
.dweb .fs-info__content .fs-vendor__wa .bi { font-size: 14px; }

/* Fallback callout (Televendas + endereco) */
.dweb .fs-info__content .fs-vendor-fallback {
  background: var(--fs-bg, #f6f7f9);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 32px 0 16px;
  border: 1px solid var(--fs-line, #e8e8e8);
}
.dweb .fs-info__content .fs-vendor-fallback h3 {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fs-mute, #6a6f7a) !important;
  margin: 0 0 12px !important;
}
.dweb .fs-info__content .fs-vendor-fallback p {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.55;
}
.dweb .fs-info__content .fs-vendor-fallback p:last-child { margin-bottom: 0; }
.dweb .fs-info__content .fs-vendor-fallback .bi {
  color: var(--fs-red, #e10600);
  margin-right: 6px;
}

/* Stock highlight banner — destaque amarelo brand */
.dweb .fs-info__content .fs-stock-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff8e1, #ffffff 80%);
  border: 1px solid rgba(240, 180, 0, 0.3);
  border-left: 4px solid var(--fs-yellow, #f0b400);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
}
.dweb .fs-info__content .fs-stock-banner > .bi {
  font-size: 26px;
  color: var(--fs-yellow, #f0b400);
  flex: 0 0 auto;
}
.dweb .fs-info__content .fs-stock-banner > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}
.dweb .fs-info__content .fs-stock-banner strong {
  font-size: 14px;
  color: var(--fs-ink);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.dweb .fs-info__content .fs-stock-banner span {
  font-size: 13px;
  color: var(--fs-ink-2, #4a4a4a);
}

/* ============================================================
   1.19) PAGINA /nossas-lojas — store info page
   Hero header + 3 cards (horario / contato / como chegar) +
   mapa embebido + stock banner. Responsive grid via .fs-store*.
   ============================================================ */

/* Hero header — centrado, com border-bottom separator */
.dweb .fs-info__content .fs-store__header {
  text-align: center;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--fs-line, #e8e8e8);
}
.dweb .fs-info__content .fs-store__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fs-red, #e10600);
}
.dweb .fs-info__content .fs-store__name {
  font-size: 28px !important;
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 6px !important;
  letter-spacing: -0.01em;
  color: var(--fs-ink) !important;
}
.dweb .fs-info__content .fs-store__addr {
  color: var(--fs-mute, #6a6f7a);
  margin: 0 !important;
  font-size: 14.5px;
  line-height: 1.5;
}
.dweb .fs-info__content .fs-store__addr small {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--fs-mute);
  margin-top: 2px;
}
@media (max-width: 575.98px) {
  .dweb .fs-info__content .fs-store__name { font-size: 22px !important; }
}

/* Cards grid */
.dweb .fs-info__content .fs-store__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .dweb .fs-info__content .fs-store__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Card */
.dweb .fs-info__content .fs-store__card {
  background: #fff;
  border: 1px solid var(--fs-line, #e8e8e8);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.dweb .fs-info__content .fs-store__card:hover {
  border-color: rgba(225, 29, 46, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.dweb .fs-info__content .fs-store__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--fs-red, #e10600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}
.dweb .fs-info__content .fs-store__card h3 {
  font-size: 12.5px !important;
  font-weight: 700;
  margin: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fs-ink) !important;
  line-height: 1.3;
}

/* Hours */
.dweb .fs-info__content .fs-store__hours {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dweb .fs-info__content .fs-store__hours > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--fs-line, #ebebeb);
}
.dweb .fs-info__content .fs-store__hours > div:last-child { border-bottom: 0; }
.dweb .fs-info__content .fs-store__hours dt {
  margin: 0;
  font-weight: 600;
  color: var(--fs-mute, #6a6f7a);
  text-align: left;
}
.dweb .fs-info__content .fs-store__hours dd {
  margin: 0;
  font-weight: 700;
  color: var(--fs-ink, #1a1a1a);
  text-align: right;
}
.dweb .fs-info__content .fs-store__hours dd.closed {
  color: var(--fs-mute, #999);
  font-weight: 500;
  font-style: italic;
}

/* Contacts list */
.dweb .fs-info__content .fs-store__contacts {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dweb .fs-info__content .fs-store__contacts li { margin: 0; }
.dweb .fs-info__content .fs-store__phone-link {
  font-size: 18px;
  color: var(--fs-ink, #1a1a1a) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em;
}
.dweb .fs-info__content .fs-store__phone-link:hover { color: var(--fs-red, #e10600) !important; }
.dweb .fs-info__content .fs-store__wa-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.dweb .fs-info__content .fs-store__wa-link:hover { background: #1eb058; }

/* Nav buttons */
.dweb .fs-info__content .fs-store__nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.dweb .fs-info__content .fs-store__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: filter 0.15s ease, transform 0.05s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.dweb .fs-info__content .fs-store__nav-btn--waze {
  background: #33CCFF;
  color: #fff !important;
}
.dweb .fs-info__content .fs-store__nav-btn--gmaps {
  background: #34A853;
  color: #fff !important;
}
.dweb .fs-info__content .fs-store__nav-btn:hover { filter: brightness(1.1); }
.dweb .fs-info__content .fs-store__nav-btn:active { transform: translateY(1px); }
.dweb .fs-info__content .fs-store__nav-btn .bi { font-size: 14px; }

/* Map */
.dweb .fs-info__content .fs-store__map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--fs-line, #e8e8e8);
  margin: 24px 0;
  background: #f6f7f9;
  line-height: 0;
}
.dweb .fs-info__content .fs-store__map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (max-width: 575.98px) {
  .dweb .fs-info__content .fs-store__map iframe { height: 280px; }
}

/* ============================================================
   1.20) PAGINA /information/contact — formulario + side cards
   Layout: .fs-info__header centrado + grid 2 col (form + cards).
   Form usa estilo Bootstrap form-control com brand accents.
   ============================================================ */

/* Header centrado (modifier do .fs-info__header) */
.dweb .fs-info__header--center {
  text-align: center;
}
.dweb .fs-info__header--center .fs-info__title {
  margin-left: auto;
  margin-right: auto;
}
.dweb .fs-contact__lead {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fs-mute, #6a6f7a);
  margin: 12px auto 0;
  max-width: 560px;
}

/* Grid: stack on mobile, 1.5fr/1fr on desktop */
.dweb .fs-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 768px) {
  .dweb .fs-contact__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
  }
}

/* === Form column === */
.dweb .fs-contact__form-title {
  font-size: 11.5px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fs-mute, #6a6f7a) !important;
  margin: 0 0 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dweb .fs-contact__form .form-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fs-mute, #6a6f7a);
  margin-bottom: 4px;
}
.dweb .fs-contact__form .form-control,
.dweb .fs-contact__form .form-select {
  border: 1px solid var(--fs-line, #e0e3e8);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14.5px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  color: var(--fs-ink, #1a1a1a);
}
.dweb .fs-contact__form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.32);
}
.dweb .fs-contact__form .form-control:focus,
.dweb .fs-contact__form .form-select:focus {
  border-color: var(--fs-red, #e10600);
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.1);
  outline: none;
}
.dweb .fs-contact__form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.dweb .fs-contact__submit {
  margin-top: 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dweb .fs-contact__submit .bi { font-size: 14px; }

/* === Side cards === */
.dweb .fs-contact__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dweb .fs-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--fs-line, #e0e3e8);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dweb .fs-contact-card:hover {
  border-color: rgba(225, 29, 46, 0.4);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.dweb .fs-contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--fs-red, #e10600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}
.dweb .fs-contact-card__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}
.dweb .fs-contact-card__body {
  flex: 1;
  min-width: 0;
}
.dweb .fs-contact-card h3 {
  font-size: 11px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fs-mute, #6a6f7a) !important;
  margin: 0 0 4px !important;
}
.dweb .fs-contact-card p {
  font-size: 12.5px;
  color: var(--fs-mute, #6a6f7a);
  margin: 0 0 6px;
  line-height: 1.4;
}
.dweb .fs-contact-card__main {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fs-ink, #1a1a1a);
  text-decoration: none;
  letter-spacing: -0.005em;
  word-break: break-all;
}
.dweb .fs-contact-card__main:hover { color: var(--fs-red, #e10600); }
.dweb .fs-contact-card__main--wa {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff !important;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  word-break: normal;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}
.dweb .fs-contact-card__main--wa:hover {
  background: #1eb058;
}
.dweb .fs-contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fs-red, #e10600);
  text-decoration: none;
}
.dweb .fs-contact-card__link:hover {
  color: var(--fs-red-700, #b80000);
}
.dweb .fs-contact-card__link .bi {
  font-size: 12px;
  transition: transform 0.15s ease;
}
.dweb .fs-contact-card__link:hover .bi {
  transform: translateX(2px);
}

/* Mobile: cards mais compactos */
@media (max-width: 575.98px) {
  .dweb .fs-contact-card { padding: 12px 14px; gap: 12px; }
  .dweb .fs-contact-card__icon { width: 38px; height: 38px; font-size: 16px; }
}

/* ============================================================
   1.21) PDP — aba "Entrega e Garantia" (.pd-ship)
   Conteudo da terceira tab no #tab-ship: header com icone +
   lead text + 4 feature cards + CTA com botoes (WhatsApp/Tel/
   Formulario). Mobile-first: features grid 2 col mobile, 4 col
   desktop. Usa --fs-red e --fs-bg do tema.
   ============================================================ */

.pd-ship { padding: 4px 0; }

/* Header com icone e titulo */
.pd-ship__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fs-line, #e8e8e8);
}
.pd-ship__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--fs-red, #e10600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}
.pd-ship__header h3 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--fs-ink, #1a1a1a) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
}

/* Lead paragraph */
.pd-ship__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fs-ink-2, #2a2a2a);
  margin: 0 0 22px;
}
.pd-ship__lead strong {
  color: var(--fs-ink, #1a1a1a);
  font-weight: 700;
}

/* Features grid: 2 col mobile, 4 col desktop */
.pd-ship__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .pd-ship__features {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.pd-ship__feature {
  background: var(--fs-bg, #f8f9fb);
  border: 1px solid var(--fs-line, #e8e8e8);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.pd-ship__feature:hover {
  border-color: rgba(225, 29, 46, 0.4);
  transform: translateY(-1px);
}
.pd-ship__feature .bi {
  font-size: 24px;
  color: var(--fs-red, #e10600);
  display: block;
  margin-bottom: 8px;
}
.pd-ship__feature h4 {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  margin: 0 0 3px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fs-ink, #1a1a1a) !important;
}
.pd-ship__feature p {
  font-size: 11.5px;
  color: var(--fs-mute, #6a6f7a);
  margin: 0;
  line-height: 1.4;
}

/* CTA highlight bottom */
.pd-ship__cta {
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05), rgba(225, 29, 46, 0.01));
  border: 1px solid rgba(225, 29, 46, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
}
.pd-ship__cta > p {
  font-size: 14px;
  color: var(--fs-ink, #1a1a1a);
  margin: 0 0 12px;
  line-height: 1.5;
}
.pd-ship__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-ship__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: filter 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pd-ship__cta-btn:active { transform: translateY(1px); }
.pd-ship__cta-btn--wa {
  background: #25D366;
  color: #fff !important;
}
.pd-ship__cta-btn--wa:hover { background: #1eb058; color: #fff !important; }
.pd-ship__cta-btn--tel {
  background: var(--fs-red, #e10600);
  color: #fff !important;
}
.pd-ship__cta-btn--tel:hover { background: var(--fs-red-700, #b80000); color: #fff !important; }
.pd-ship__cta-btn--mail {
  background: #fff;
  color: var(--fs-ink, #1a1a1a) !important;
  border: 1px solid var(--fs-line, #e8e8e8);
}
.pd-ship__cta-btn--mail:hover {
  border-color: var(--fs-red, #e10600);
  color: var(--fs-red, #e10600) !important;
}

/* Mobile: header mais compacto */
@media (max-width: 575.98px) {
  .pd-ship__header { gap: 10px; margin-bottom: 14px; padding-bottom: 14px; }
  .pd-ship__icon { width: 42px; height: 42px; font-size: 18px; }
  .pd-ship__header h3 { font-size: 16px !important; }
  .pd-ship__lead { font-size: 14px; }
}

/* ============================================================
   1.22) PDP — bloco "Mais da marca" + card de marca (.pcard--brand)
   Renderiza abaixo do "Veja também". Mesma estrutura visual do .pcard
   default, MAS o 6o card eh um link estilo CTA pra pagina da marca,
   com o logo centrado + texto "Ver mais da marca [Nome]".
   ============================================================ */

/* Container do bloco — mesmo estilo do .pdrelated, soh com gap diferente */
.dweb .pdrelated--brand {
  margin-top: 24px;
}

/* Card de marca — usa .pcard como base, sobrescreve conteudo interno */
.pcard.pcard--brand {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  padding: 0;
  background: linear-gradient(135deg, #fafbfc 0%, #fff 60%, #f4f6f8 100%);
  border: 1px solid var(--fs-line, #e8e8e8);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pcard.pcard--brand:hover {
  border-color: var(--fs-red, #e10600);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.pcard.pcard--brand:hover .pcard--brand__arrow {
  transform: translateX(4px);
}

/* Imagem (logo da marca) — 70% da altura do card, contain */
.pcard--brand__imgwrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  width: 100%;
  min-height: 0;
  background: #fff;
}
.pcard--brand__imgwrap img {
  max-width: 80%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05);
}

/* CTA bottom — "Ver mais da marca [Nome] →" */
.pcard--brand__meta {
  flex: 0 0 auto;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--fs-line, #e8e8e8);
  background: rgba(225, 29, 46, 0.04);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  width: 100%;
}
.pcard--brand__cta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fs-mute, #6a6f7a);
}
.pcard--brand__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--fs-ink, #1a1a1a);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pcard--brand__arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--fs-red, #e10600);
  transition: transform 0.2s ease;
  margin-left: 2px;
}

/* Mobile: ajustes */
@media (max-width: 575.98px) {
  .pcard--brand__imgwrap { padding: 14px; }
  .pcard--brand__name { font-size: 14px; }
  .pcard--brand__cta { font-size: 10px; }
}

/* ============================================================
   1.23) HOME — Inspiration block como leaderboard (1 banner full-width)
   Override do .bento-banners (que normalmente eh grid 3-col com bb-1
   maior + bb-2/bb-3 menores). Aqui forcamos display block + aspect
   horizontal (5:1 desktop / 3:1 mobile) pra parecer um banner
   leaderboard tradicional.
   ============================================================ */
.dweb .bento-banners.bento-banners--leaderboard {
  display: block !important;
  grid-template-columns: none !important;
  margin: 8px 0 0;
}
.dweb .bento-banners.bento-banners--leaderboard .bb {
  width: 100%;
  aspect-ratio: 6 / 1;
  min-height: 160px;
  max-height: 240px;
  border-radius: 16px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 32px;
}
.dweb .bento-banners.bento-banners--leaderboard .bb h3.xl {
  font-size: clamp(28px, 4.5vw, 42px) !important;
  line-height: 1.1;
}
.dweb .bento-banners.bento-banners--leaderboard .bb small {
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .dweb .bento-banners.bento-banners--leaderboard .bb {
    aspect-ratio: 4 / 1;
    min-height: 130px;
    max-height: 180px;
    padding: 20px 22px;
    border-radius: 12px;
  }
  .dweb .bento-banners.bento-banners--leaderboard .bb h3.xl {
    font-size: clamp(20px, 5vw, 28px) !important;
  }
}

/* ============================================================
   1.24) HOME — Banner "Visite nossa loja" (.fs-store-banner)
   3 zonas horizontais: logo (branco esquerda) + bg image storefront
   visivel no centro + painel vermelho com texto a direita.
   Mobile: stack vertical (logo top, image middle, text bottom).
   ============================================================ */

.fs-store-banner {
  display: flex;
  width: 100%;
  aspect-ratio: 6 / 1;
  min-height: 160px;
  max-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('/image/catalog/site/banners/loja_fogoes_storefront.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2a2a2a;
  text-decoration: none !important;
  color: inherit;
  margin: 8px 0 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fs-store-banner:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Painel ESQUERDO — fundo branco solido, logo centralizado */
.fs-store-banner__panel--logo {
  flex: 0 0 28%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
}
.fs-store-banner__panel--logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}

/* Painel DIREITO — fundo vermelho com diagonal sutil de transicao do bg image */
.fs-store-banner__panel--text {
  margin-left: auto;
  flex: 0 0 50%;
  background: var(--fs-red, #e10600);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  /* Borda diagonal a esquerda criando transicao suave com a image bg */
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.fs-store-banner__line1 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: block;
  line-height: 1.15;
}
.fs-store-banner__line2 {
  font-size: clamp(12px, 1.4vw, 15px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.95;
}
.fs-store-banner__line2 strong {
  font-weight: 800;
}

/* ============================================================
   1.25) HOME — vertical gaps consistentes entre modulos
   Padroniza padding-top/bottom de todos os top-level modules da
   home em 16px cada lado (= 32px de gap visual entre modulos).
   ============================================================ */
.dweb > .container,
.dweb > section.container,
.dweb > section.fs-brands-section,
.dweb > section.fs-blog-section {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Mobile: stack vertical (logo, image, texto) */
@media (max-width: 768px) {
  .fs-store-banner {
    flex-direction: column;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    border-radius: 12px;
  }
  .fs-store-banner__panel--logo {
    flex: 0 0 auto;
    height: 80px;
    padding: 14px 18px;
  }
  .fs-store-banner__panel--logo img { max-height: 50px; }
  /* Spacer pra image bg ficar visivel entre logo e texto */
  .fs-store-banner::before {
    content: "";
    display: block;
    width: 100%;
    height: 90px;
    flex: 0 0 auto;
    background: transparent; /* deixa o bg image principal aparecer */
  }
  .fs-store-banner__panel--text {
    flex: 0 0 auto;
    margin-left: 0;
    padding: 18px 22px;
    clip-path: none;
  }
  .fs-store-banner__line1 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .fs-store-banner__line2 {
    font-size: 12.5px;
    line-height: 1.4;
  }
}

/* ============================================================
   1.11) PDP delivery card — texto aumentado 50%
   Card cinza na sidebar com Televendas + Nossa Loja.
   Default em fogoesshop.css e 12.5px → aqui aumentado 50% (~18.75px).
   ============================================================ */
.dweb .pdsidebar .delivery {
  font-size: 18.75px;
  line-height: 1.5;
}
.dweb .pdsidebar .delivery .row .ic svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   1.10) BOTAO WHATSAPP (.btn-whatsapp)
   Verde oficial do WhatsApp (#25D366), usado na PDP abaixo do
   "Comprar na DEPOCASA". Combinado com .btn .btn-lg .btn-block.
   ============================================================ */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms ease;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1FA855;
  color: #fff;
}
.btn-whatsapp:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 2px;
}

/* ============================================================
   1.9) LIGHTBOX da PDP (.fs-lightbox)
   Overlay full-screen ativado ao clicar na imagem principal do produto.
   Setas para navegar (prev/next), X para fechar, contador idx/total.
   Markup e JS no product.twig.
   ============================================================ */
.fs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 14, 19, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  -webkit-tap-highlight-color: transparent;
  animation: fs-lb-fade 180ms ease-out;
}
.fs-lightbox[hidden] { display: none; }
@keyframes fs-lb-fade { from { opacity: 0; } to { opacity: 1; } }

.fs-lightbox .fs-lb-stage {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fs-lightbox .fs-lb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  display: block;
  background: #fff;
  border-radius: 6px;
}

.fs-lightbox .fs-lb-close,
.fs-lightbox .fs-lb-prev,
.fs-lightbox .fs-lb-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 140ms ease, transform 100ms ease;
  -webkit-tap-highlight-color: transparent;
}
.fs-lightbox .fs-lb-close:hover,
.fs-lightbox .fs-lb-prev:hover,
.fs-lightbox .fs-lb-next:hover {
  background: rgba(255, 255, 255, 0.24);
}
.fs-lightbox .fs-lb-close:active,
.fs-lightbox .fs-lb-prev:active,
.fs-lightbox .fs-lb-next:active { transform: scale(0.94); }
.fs-lightbox .fs-lb-close:focus-visible,
.fs-lightbox .fs-lb-prev:focus-visible,
.fs-lightbox .fs-lb-next:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.fs-lightbox .fs-lb-close { top: 20px; right: 20px; }
.fs-lightbox .fs-lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.fs-lightbox .fs-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.fs-lightbox .fs-lb-prev:hover { transform: translateY(-50%); }
.fs-lightbox .fs-lb-next:hover { transform: translateY(-50%); }

.fs-lightbox .fs-lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  pointer-events: none;
}

/* Mobile / tablet — botoes menores e padding reduzido */
@media (max-width: 767.98px) {
  .fs-lightbox { padding: 48px 12px; }
  .fs-lightbox .fs-lb-close,
  .fs-lightbox .fs-lb-prev,
  .fs-lightbox .fs-lb-next {
    width: 40px;
    height: 40px;
  }
  .fs-lightbox .fs-lb-close { top: 12px; right: 12px; }
  .fs-lightbox .fs-lb-prev  { left: 6px; }
  .fs-lightbox .fs-lb-next  { right: 6px; }
  .fs-lightbox .fs-lb-counter { bottom: 14px; font-size: 12px; }
}

/* ============================================================
   1.7) FILTROS DA PLP (sidebar de listagem)
   Subcategoria = NAVEGACAO (link com chevron).
   Filter groups + preco = CHECKBOXES dentro de form, com botao Aplicar.
   Native checkbox escondido, .ck visual via :checked + .ck sibling.
   ============================================================ */

/* Subcategoria — clickable row navegavel */
.dweb .filters .subcat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  color: var(--fs-ink-2);
  text-decoration: none;
  font-size: 13px;
  transition: color 120ms ease;
}
.dweb .filters .subcat-link:hover { color: var(--fs-red); }
.dweb .filters .subcat-link svg { opacity: 0.4; flex-shrink: 0; }
.dweb .filters .subcat-link:hover svg { opacity: 1; color: var(--fs-red); }

/* Filter checkbox: native input invisivel + .ck visual via sibling selector */
.dweb .filter-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fs-ink-2);
  padding: 5px 0;
  cursor: pointer;
  position: relative;
}
.dweb .filter-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.dweb .filter-check .ck {
  width: 16px; height: 16px;
  border: 1.5px solid var(--fs-line);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: #fff;
  transition: background 120ms ease, border-color 120ms ease;
}
.dweb .filter-check .ck svg { display: none; }
.dweb .filter-check input[type="checkbox"]:checked + .ck {
  background: var(--fs-red);
  border-color: var(--fs-red);
}
.dweb .filter-check input[type="checkbox"]:checked + .ck svg { display: block; }
.dweb .filter-check:hover .ck { border-color: var(--fs-red); }
.dweb .filter-check input[type="checkbox"]:focus-visible + .ck {
  outline: 2px solid var(--fs-red);
  outline-offset: 2px;
}
.dweb .filter-check .lbl { flex: 1; }

/* ============================================================
   1.8) PAGINACAO (.dweb .pagination)
   OC stock renderiza <ul class="pagination"><li><a>1</a></li>
   <li class="active"><span>2</span></li><li><a>&gt;</a></li>...
   Categoria/search wrappam num <div class="pagination"> tambem.
   Nossa regra estiliza os <li><a> e <li.active><span> como botoes.
   ============================================================ */
.dweb .pagination,
.dweb .pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 32px auto 24px;
  padding: 0;
  list-style: none;
}
.dweb .pagination li { list-style: none; }
.dweb .pagination li a,
.dweb .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--fs-line);
  background: #fff;
  color: var(--fs-ink-2);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
  user-select: none;
}
.dweb .pagination li a:hover {
  border-color: var(--fs-red);
  color: var(--fs-red);
  background: var(--fs-red-50);
}
.dweb .pagination li.active span {
  background: var(--fs-ink);
  border-color: var(--fs-ink);
  color: #fff;
  cursor: default;
}
.dweb .pagination li a:focus-visible {
  outline: 2px solid var(--fs-red);
  outline-offset: 2px;
}

/* Mobile — botoes menores mas acessiveis (>= 36px touch target) */
@media (max-width: 575.98px) {
  .dweb .pagination li a,
  .dweb .pagination li span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 12.5px;
  }
}

/* Filter actions — Aplicar (primary) / Limpar (link) */
.dweb .filter-actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--fs-line-2);
}
.dweb .filter-actions .btn-apply {
  background: var(--fs-red); color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background 120ms ease;
}
.dweb .filter-actions .btn-apply:hover { background: var(--fs-red-700); }
.dweb .filter-actions .btn-clear {
  text-align: center;
  font-size: 12px;
  color: var(--fs-mute);
  text-decoration: underline;
  padding: 4px;
  cursor: pointer;
}
.dweb .filter-actions .btn-clear:hover { color: var(--fs-ink); }

/* ============================================================
   2) MOBILE-FIRST BREAKPOINTS
   ============================================================
   Por default tudo é desktop. Adicionamos overrides para mobile.
   - <768px (sm/xs): empilha colunas, header simplificado
   - 768-1024px (md): tablet, mantém layout mas reduz paddings
   - >=1024px (lg): desktop original
   ============================================================ */

/* ---- TABLET / MOBILE (<992px) ---- */
@media (max-width: 991.98px) {
  .dweb .container { padding: 16px 16px; }

  /* Header: empilhar logo + search */
  .dweb .header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px;
  }
  .dweb .header > * { width: 100%; }
  .dweb .header .search { width: 100%; }
  .dweb .header .actions {
    justify-content: flex-end;
    gap: 4px;
  }
  .dweb .header .actions .a small { display: none; }

  /* Navbar: scroll horizontal */
  .dweb .navbar {
    overflow-x: auto;
    white-space: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dweb .navbar::-webkit-scrollbar { display: none; }
  .dweb .navbar > * { flex-shrink: 0; }

  /* Hero: empilhar #heromain e heroside */
  .dweb .dhero {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .dweb .heromain h1 { font-size: 32px; }
  .dweb .heroside { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Service strip: 2 cols */
  .dweb .dservice {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Product grid: 2 cols mobile */
  .dweb .pgrid-d { grid-template-columns: 1fr 1fr; }
  .dweb .pgrid-list { grid-template-columns: 1fr 1fr; }

  /* Bento: empilhar */
  .dweb .bento-banners.desktop { grid-template-columns: 1fr; }

  /* PDP: empilhar tudo */
  .dweb .pdmain {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .dweb .pdgallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  /* List page: empilhar filtros e main */
  .dweb .listpage {
    grid-template-columns: 1fr;
  }
  .dweb .filters { display: none; } /* Em mobile, esconder; abrir via offcanvas (TODO) */

  /* Footer: empilhar colunas */
  .dweb .dfooter .top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dweb .dfooter .nl {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dweb .dfooter .nl form {
    flex-direction: column;
    width: 100%;
  }
  .dweb .dfooter .nl input,
  .dweb .dfooter .nl button { width: 100%; }
  .dweb .dfooter .mid {
    flex-direction: column;
    gap: 16px;
  }

  /* Sticky offsets em mobile (header ocupa mais altura quando empilha) */
  .dweb .navbar { top: 140px; }
  .dweb:has(.topstrip:not(.topstrip-collapsed)) .navbar { top: 172px; }
}

/* ---- MOBILE PEQUENO (<576px) ---- */
@media (max-width: 575.98px) {
  /* Hero side: 1 col em mobile pequeno */
  .dweb .heroside { grid-template-columns: 1fr; }

  /* Heromain: padding menor */
  .dweb .heromain { padding: 24px 16px; }
  .dweb .heromain h1 { font-size: 28px; }
  .dweb .heromain .stats { flex-wrap: wrap; gap: 12px; }
  .dweb .heromain .stats .st .v { font-size: 18px; }

  /* Topstrip: simplificar — esconder links, manter so promo */
  .dweb .topstrip .links { display: none; }
  .dweb .topstrip { font-size: 11px; padding: 4px 12px; }

  /* Service: 1 col em mobile pequeno */
  .dweb .dservice { grid-template-columns: 1fr; }

  /* Product card mobile pequeno */
  .pcard .name { font-size: 13px; }
  .pcard .price { font-size: 16px; }
}

/* ============================================================
   3) POLIMENTOS GERAIS
   ============================================================ */

/* Newsletter dentro do hc_footer module: posicionamento correto */
.dfooter .nl {
  position: relative;
  z-index: 1;
}

/* Garantir que .dfooter .top tem 4 ou 5 colunas dependendo dos children */
.dfooter .top {
  grid-template-columns: 1.5fr repeat(auto-fit, minmax(150px, 1fr));
}

/* Wrapper especial quando soh ha newsletter (sem footer completo) */
.dfooter--with-nl-only {
  background: transparent;
  padding: 0;
}
.dfooter--with-nl-only .nl { margin: 0; }

/* Banner newsletter — mais respiro em mobile */
@media (max-width: 575.98px) {
  .dfooter .nl { padding: 24px 16px; }
  .dfooter .nl h3 { font-size: 18px; }
}

/* Search input no header ajuste fino */
.dweb .header .search input {
  border: 0;
  background: transparent;
  outline: 0;
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  color: var(--fs-ink);
  min-width: 0;
}

/* "Conta" actions: text alinhamento */
.dweb .header .actions .a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.2;
}

/* Footer dfooter: ajustar largura newsletter pra nao estourar */
.dfooter .nl form input { min-width: 0; }

/* ============================================================
   1.20) HEADER ACTION BUTTONS (catalog mode)
   3 CTAs: Marcas / Ecommerce externo / WhatsApp
   ============================================================ */

/* Bootstrap Icons size + cor padrao no .actions */
.dweb .header .actions .a .bi {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--fs-ink);
}

/* Hover suave */
.dweb .header .actions .a {
  border-radius: 8px;
  transition: background 150ms ease;
}
.dweb .header .actions .a:hover {
  background: var(--fs-bg);
}

/* WhatsApp icon brand-green */
.dweb .header .actions .a-whats .bi { color: #25D366; }
.dweb .header .actions .a-whats:hover .bi { color: #128C7E; }

/* Shine button — Nosso Ecommerce.
   Sutil bg vermelho-tintado + sweep diagonal de luz a cada 4.5s
   (apenas ~0.7s ativo, descanso de ~3.8s entre passadas) */
.dweb .header .actions .a-shine {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.06), rgba(196, 30, 58, 0.02));
  border: 1px solid rgba(196, 30, 58, 0.18);
}
.dweb .header .actions .a-shine .bi { color: var(--fs-red); }
.dweb .header .actions .a-shine:hover {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(196, 30, 58, 0.05));
}
.dweb .header .actions .a-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(22deg);
  animation: a-shine-sweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes a-shine-sweep {
  0%, 70%   { left: -75%; opacity: 0; }
  72%       { opacity: 1; }
  85%       { opacity: 1; }
  92%, 100% { left: 175%; opacity: 0; }
}

/* Reduzir motion: respeita preferencia do usuario */
@media (prefers-reduced-motion: reduce) {
  .dweb .header .actions .a-shine::before { animation: none; }
}

/* ============================================================
   1.21) HEADER AUTOSUGGEST DROPDOWN
   ============================================================ */

/* Container do form precisa ser relativo pro panel ancorar */
.dweb .header form.search { position: relative; }

/* Panel — desktop */
.dweb #header-search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--fs-line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1100;
  font-size: 13px;
}
.dweb #header-search-suggest[hidden] { display: none; }

/* Loading state — barra fina animada no topo */
.dweb #header-search-suggest.loading::before {
  content: '';
  position: sticky;
  top: 0; left: 0; right: 0;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fs-red), transparent);
  background-size: 200% 100%;
  animation: as-loading 1.1s ease-in-out infinite;
  z-index: 1;
}
@keyframes as-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Section */
.dweb .as-section {
  padding: 8px 0;
  border-top: 1px solid var(--fs-line-2);
}
.dweb .as-section:first-child { border-top: none; }
.dweb .as-section h6 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fs-mute);
  margin: 4px 14px 6px;
}

/* Item base */
.dweb .as-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  min-height: 48px;
  text-decoration: none;
  color: var(--fs-ink);
  cursor: pointer;
  transition: background 100ms ease;
}
.dweb .as-item:hover,
.dweb .as-item.active { background: var(--fs-bg); }

.dweb .as-item .as-name {
  font-size: 13px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dweb .as-item mark {
  background: var(--fs-yellow, #FFD60A);
  color: var(--fs-ink);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* Categoria icon */
.dweb .as-cat-icon,
.dweb .as-mfg-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--fs-bg);
  border-radius: 6px;
  font-size: 16px;
  color: var(--fs-mute);
  flex-shrink: 0;
}
.dweb .as-mfg-thumb {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--fs-line-2);
  border-radius: 6px;
  flex-shrink: 0;
  padding: 2px;
}

/* Cat/Mfg name takes remaining space */
.dweb .as-cat .as-name,
.dweb .as-mfg .as-name { flex: 1; min-width: 0; -webkit-line-clamp: 1; }

.dweb .as-count {
  font-size: 11px;
  color: var(--fs-mute);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Produto */
.dweb .as-prod img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--fs-line-2);
  border-radius: 6px;
  padding: 2px;
}
.dweb .as-prod-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dweb .as-prod-meta .as-brand {
  font-size: 10px;
  color: var(--fs-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dweb .as-price {
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}
.dweb .as-price .num { color: var(--fs-red); }
.dweb .as-price s { font-weight: 400; color: var(--fs-mute); margin-right: 4px; font-size: 11px; }

/* Footer "Ver todos" */
.dweb .as-footer {
  display: block;
  padding: 14px;
  text-align: center;
  background: var(--fs-bg);
  color: var(--fs-red);
  font-weight: 600;
  font-size: 13px;
  border-top: 1px solid var(--fs-line-2);
  text-decoration: none;
  position: sticky;
  bottom: 0;
}
.dweb .as-footer:hover,
.dweb .as-footer.active { background: var(--fs-line-2); }
.dweb .as-footer b { color: var(--fs-ink); }

/* Empty */
.dweb .as-empty {
  padding: 28px 24px;
  text-align: center;
  color: var(--fs-mute);
  font-size: 14px;
}
.dweb .as-empty b { color: var(--fs-ink); }

/* MOBILE — full-width fora do form */
@media (max-width: 599px) {
  .dweb #header-search-suggest {
    border-radius: 0;
    left: -16px;
    right: -16px;
    border-left: none;
    border-right: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    max-height: 80vh;
  }
  .dweb .as-item { min-height: 52px; }  /* touch-friendly */
  .dweb .as-prod img { width: 52px; height: 52px; }
}

/* ============================================================
   1.22) MEGA NAV (substitui navbar antiga)
   Mobile-first: hamburger + offcanvas; Desktop: bar horizontal +
   panels com hover-intent (180ms abre, 250ms fecha)
   ============================================================ */

/* Reset da .navbar antiga (deixar inerte mesmo se aparecer) */
.dweb .navbar { display: none; }

/* Container nav */
.dweb .fs-meganav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
  background: #fff;
  border-top: 1px solid var(--fs-line-2, #eee);
  border-bottom: 1px solid var(--fs-line, #ddd);
  position: sticky;
  top: 0;
  z-index: 1020;
  font-family: inherit;
}

/* Hamburger — mobile only */
.dweb .fs-meganav__hamb {
  display: none;
  align-items: center;
  gap: 8px;
  border: none;
  background: var(--fs-red, #c41e3a);
  color: #fff;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-right: 6px;
}
.dweb .fs-meganav__hamb i { font-size: 20px; line-height: 1; }

/* Inicio link */
.dweb .fs-meganav__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--fs-red, #c41e3a);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dweb .fs-meganav__home:hover { background: #a51a30; color: #fff; }
.dweb .fs-meganav__home i { font-size: 16px; }

/* Lista horizontal — nao mais flex:1 (deixa centralizar como grupo) */
.dweb .fs-meganav__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

/* Item base */
.dweb .fs-meganav__item {
  position: static;  /* panel se ancora ao .fs-meganav (full-width) */
  display: flex;
  align-items: stretch;
}
.dweb .fs-meganav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  color: var(--fs-ink, #222);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 120ms ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dweb .fs-meganav__link:hover,
.dweb .fs-meganav__item.open > .fs-meganav__link {
  color: var(--fs-red, #c41e3a);
}
/* Underline animado abaixo do item ativo */
.dweb .fs-meganav__link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--fs-red, #c41e3a);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.dweb .fs-meganav__link:hover::after,
.dweb .fs-meganav__item.open > .fs-meganav__link::after {
  transform: scaleX(1);
}

.dweb .fs-meganav__caret {
  font-size: 11px;
  transition: transform 200ms ease;
}
.dweb .fs-meganav__item.open .fs-meganav__caret {
  transform: rotate(180deg);
}

/* Ofertas — accent vermelho */
.dweb .fs-meganav__item--ofertas .fs-meganav__link {
  color: var(--fs-red, #c41e3a);
  font-weight: 700;
}

/* ===== Panel (dropdown) ===== */
.dweb .fs-meganav__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--fs-line, #ddd);
  border-bottom: 1px solid var(--fs-line, #ddd);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  z-index: 1100;  /* ACIMA da hero/conteudo (panel precisa estar no topo) */
  pointer-events: none;
}
.dweb .fs-meganav__item.open > .fs-meganav__panel {
  pointer-events: auto;
}
.dweb .fs-meganav__item.open > .fs-meganav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
}

.dweb .fs-meganav__panel-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
}
/* Sem featured: cats ocupam tudo */
.dweb .fs-meganav__panel-grid:not(:has(.fs-meganav__featured)) {
  grid-template-columns: 1fr;
}

/* Coluna de subcategorias */
.dweb .fs-meganav__cats { min-width: 0; }
.dweb .fs-meganav__cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 32px;
  margin-bottom: 18px;
}
.dweb .fs-meganav__cats-grid[data-count="1"] { grid-template-columns: 1fr; }
.dweb .fs-meganav__cats-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.dweb .fs-meganav__cats-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.dweb .fs-meganav__cats-col { min-width: 0; }
.dweb .fs-meganav__cats-link {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--fs-ink, #222);
  text-decoration: none;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  transition: color 120ms ease;
}
.dweb .fs-meganav__cats-link:hover { color: var(--fs-red, #c41e3a); }
.dweb .fs-meganav__cats-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dweb .fs-meganav__cats-sub li { margin: 0; }
.dweb .fs-meganav__cats-sublink {
  display: block;
  padding: 3px 0;
  font-size: 13px;
  color: var(--fs-mute, #777);
  text-decoration: none;
  transition: color 120ms ease;
}
.dweb .fs-meganav__cats-sublink:hover { color: var(--fs-red, #c41e3a); }

/* "Ver todos em X" */
.dweb .fs-meganav__see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fs-red, #c41e3a);
  text-decoration: none;
  padding: 6px 0;
  border-top: 1px solid var(--fs-line-2, #eee);
  margin-top: 12px;
}
.dweb .fs-meganav__see-all:hover { color: #a51a30; gap: 10px; transition: gap 200ms ease; }

/* ===== Featured sidebar ===== */
.dweb .fs-meganav__featured {
  border-left: 1px solid var(--fs-line-2, #eee);
  padding-left: 28px;
}
.dweb .fs-meganav__featured-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fs-mute, #777);
  margin-bottom: 14px;
  font-weight: 700;
}
.dweb .fs-meganav__featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dweb .fs-meganav__featured-card {
  display: flex;
  flex-direction: column;
  background: var(--fs-bg, #f7f7f7);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--fs-ink, #222);
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  isolation: isolate;
}
.dweb .fs-meganav__featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.dweb .fs-meganav__featured-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.dweb .fs-meganav__featured-title {
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 10px 10px;
  line-height: 1.3;
  /* Hard-cap altura: 3 linhas + padding = 11.5*1.3*3 + 18 = ~62.85px */
  height: 63px;
  max-height: 63px;
  /* Webkit line clamp pra ellipsis bonito */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  flex: 0 0 auto;
  box-sizing: content-box;
}
.dweb .fs-meganav__featured-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--fs-red, #c41e3a);
  z-index: 2;
}
.dweb .fs-meganav__featured-badge--yellow { background: var(--fs-yellow, #FFD60A); color: var(--fs-ink, #222); }
.dweb .fs-meganav__featured-badge--dark   { background: var(--fs-ink, #222); }
.dweb .fs-meganav__featured-badge--blue   { background: var(--fs-blue, #2255CC); }

/* ============================================================
   1.23) HERO MAIN — overlay variants (configuravel via admin)
   ============================================================
   Aplicado via classe .heromain--overlay-X em hc_hero_main.twig.
   Variantes: none | gradient-left | gradient-bottom | darken */
.dweb .heromain { position: relative; }

/* Pseudo-element overlay (camada entre image_bg e content) */
.dweb .heromain::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
.dweb .heromain--overlay-none::before { background: none; }
.dweb .heromain--overlay-gradient-left::before {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.10) 70%,
    transparent 100%
  );
}
.dweb .heromain--overlay-gradient-bottom::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    transparent 80%
  );
}
.dweb .heromain--overlay-darken::before {
  background: rgba(0, 0, 0, 0.55);
}

/* Garantir que content fique acima do overlay */
.dweb .heromain > .blob1,
.dweb .heromain > .blob2 { z-index: 2; }
.dweb .heromain > div,
.dweb .heromain > .stats { position: relative; z-index: 2; }

/* Text-shadow defensivo (sempre presente — invisivel em fundos solidos) */
.dweb .heromain h1,
.dweb .heromain p,
.dweb .heromain small {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   1.24) PROMO CARD com BG image — text-shadow defensivo
   Aplicado quando .promo.promo--has-bg (set pelo template hc_hero
   quando ha image). Mantem foto visivel sem overlay escuro pesado;
   text-shadow forte garante leitura.
   ============================================================ */
.dweb .promo.promo--has-bg small,
.dweb .promo.promo--has-bg h3,
.dweb .promo.promo--has-bg > div,
.dweb .promo.promo--has-bg > .arrow {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(0, 0, 0, 0.55);
}
/* Arrow circle precisa de bg pra contrastar com a foto */
.dweb .promo.promo--has-bg .arrow {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Layout: agrupa eyebrow+title+body no topo, seta no bottom */
.dweb .promo.promo--has-bg {
  justify-content: flex-start !important;
  gap: 4px;
}
.dweb .promo.promo--has-bg .arrow {
  margin-top: auto !important;
}
/* Reduzir margin do title pra ficar coladinho no eyebrow */
.dweb .promo.promo--has-bg h3 {
  margin-top: 4px !important;
}
/* Body mais proximo do title */
.dweb .promo.promo--has-bg > div {
  margin-top: 8px !important;
}

/* Row-2 promo cards com BG image — regras condicionais por color_variant:
   • custom (texto escuro em foto clara, ex: #42 profissionais BG branco): SEM
     text-shadow nem arrow-blur (sombra escura debaixo de texto escuro fica feia).
   • dark/red/yellow (texto branco em foto mista, ex: #43 ralo linear): MANTEM
     text-shadow forte da regra geral .dweb .promo.promo--has-bg (linhas ~1441).
   Heroside (.heroside) continua com effects da regra geral. */
.dweb .dhero-row2 .promo.custom.promo--has-bg small,
.dweb .dhero-row2 .promo.custom.promo--has-bg h3,
.dweb .dhero-row2 .promo.custom.promo--has-bg > div,
.dweb .dhero-row2 .promo.custom.promo--has-bg > .arrow {
  text-shadow: none !important;
}
.dweb .dhero-row2 .promo.custom.promo--has-bg .arrow {
  background: rgba(0, 0, 0, 0.08) !important;  /* volta pro bg padrao do .promo .arrow */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Fonte maior pra row-2 promo--has-bg (foto exige presenca visual maior).
   Base era small:10px h3:16px; aqui: small:15px h3:28px (+25% sobre 12/22). */
.dweb .dhero-row2 .promo.promo--has-bg small {
  font-size: 15px !important;
  letter-spacing: 0.06em;
}
.dweb .dhero-row2 .promo.promo--has-bg h3 {
  font-size: 28px !important;
  line-height: 1.05 !important;
}

/* Mobile hamburger DENTRO do .header (so visivel em mobile) */
.dweb .fs-mobile-hamb {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--fs-red, #c41e3a);
  color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  margin-right: 8px;
}
.dweb .fs-mobile-hamb:hover { background: #a51a30; }

/* ============================================================
   MOBILE: hamburger no .header (junto do logo); esconde meganav
   inteiro + actions
   ============================================================ */
@media (max-width: 899px) {
  /* Hamburger visivel no header (junto do logo) */
  .dweb .fs-mobile-hamb { display: inline-flex; }

  /* Esconder TODA a barra meganav (offcanvas continua acessivel via id) */
  .dweb .fs-meganav { display: none; }

  /* Esconder CTAs do header */
  .dweb .header .actions { display: none !important; }
}

/* Offcanvas drawer */
.dweb .fs-meganav-mob {
  width: 88%;
  max-width: 360px;
}
.dweb .fs-meganav-mob .offcanvas-header {
  border-bottom: 1px solid var(--fs-line, #ddd);
  padding: 16px 20px;
}
.dweb .fs-meganav-mob .offcanvas-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
}
.dweb .fs-meganav-mob .offcanvas-body { padding: 8px 0; }

.dweb .fs-meganav-mob__home,
.dweb .fs-meganav-mob__ofertas {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--fs-ink, #222);
  border-bottom: 1px solid var(--fs-line-2, #eee);
}
.dweb .fs-meganav-mob__home:hover,
.dweb .fs-meganav-mob__ofertas:hover { background: var(--fs-bg, #f7f7f7); }
.dweb .fs-meganav-mob__home { color: var(--fs-red, #c41e3a); }
.dweb .fs-meganav-mob__ofertas {
  background: var(--fs-red, #c41e3a);
  color: #fff;
  margin-top: 8px;
  border-bottom: none;
}
.dweb .fs-meganav-mob__ofertas:hover {
  background: #a51a30;
  color: #fff;
}

.dweb .fs-meganav-mob__details {
  border-bottom: 1px solid var(--fs-line-2, #eee);
}
.dweb .fs-meganav-mob__details > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--fs-ink, #222);
  cursor: pointer;
  user-select: none;
}
.dweb .fs-meganav-mob__details > summary::-webkit-details-marker { display: none; }
.dweb .fs-meganav-mob__details[open] > summary { background: var(--fs-bg, #f7f7f7); }
.dweb .fs-meganav-mob__details[open] .fs-meganav-mob__caret { transform: rotate(180deg); }
.dweb .fs-meganav-mob__caret { font-size: 12px; transition: transform 200ms ease; color: var(--fs-mute, #777); }

.dweb .fs-meganav-mob__sub {
  background: #fafafa;
  padding: 4px 0 12px;
}
.dweb .fs-meganav-mob__sublink {
  display: block;
  padding: 9px 20px 9px 36px;
  font-size: 13px;
  color: var(--fs-mute, #555);
  text-decoration: none;
}
.dweb .fs-meganav-mob__sublink:hover { background: var(--fs-bg, #f7f7f7); color: var(--fs-ink, #222); }
.dweb .fs-meganav-mob__sublink--top {
  font-weight: 600;
  color: var(--fs-red, #c41e3a);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 36px;
}

/* ============================================================
   1.17) LISTPAGE SEM SIDEBAR (special, etc)
   ============================================================
   .dweb .listpage e display: grid; grid-template-columns: 260px 1fr.
   Quando nao ha aside.filters (ex: product/special), a coluna 260px
   fica vazia e listmain ocupa apenas 1fr — visual squashed.
   Modifier .listpage--nosidebar muda o grid pra 1 coluna full-width. */
.dweb .listpage.listpage--nosidebar {
  grid-template-columns: 1fr;
}

/* ============================================================
   1.18) MANUFACTURER LIST (route=product/manufacturer)
   Mobile-first: 2 cols → 3 → 4 → 6 cols
   ============================================================ */

/* SEARCH INPUT */
.dweb .mfg-search {
  position: relative;
  margin-bottom: 14px;
}
.dweb .mfg-search input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 44px;
  font-size: 15px;
  font-family: inherit;
  color: var(--fs-ink);
  background: #fff;
  border: 1px solid var(--fs-line);
  border-radius: 10px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.dweb .mfg-search input::-webkit-search-decoration,
.dweb .mfg-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.dweb .mfg-search input::placeholder { color: var(--fs-mute); }
.dweb .mfg-search input:focus {
  border-color: var(--fs-red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.10);
}
.dweb .mfg-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fs-mute);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.dweb .mfg-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--fs-line);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.dweb .mfg-search-clear:hover { background: var(--fs-ink); }
.dweb .mfg-search-clear[hidden] { display: none; }

/* LETTER INDEX (sticky, hidden when search active) */
.dweb .mfg-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--fs-line);
  border-radius: 12px;
  margin-bottom: 18px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.dweb .mfg-letters[hidden] { display: none; }
.dweb .mfg-letters a,
.dweb .mfg-letters span.dis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Archivo Black', sans-serif;
  text-decoration: none;
  border-radius: 6px;
}
.dweb .mfg-letters a {
  color: var(--fs-ink);
  background: var(--fs-bg);
  transition: background 120ms ease, color 120ms ease;
}
.dweb .mfg-letters a:hover {
  background: var(--fs-red);
  color: #fff;
}
.dweb .mfg-letters span.dis {
  color: var(--fs-line);
  background: transparent;
  cursor: default;
}

/* SECTION */
.dweb .mfg-section {
  margin-bottom: 24px;
  scroll-margin-top: 80px;
}
.dweb .mfg-section[hidden] { display: none; }
.dweb .mfg-section-title {
  font-size: 18px;
  font-family: 'Archivo Black', sans-serif;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--fs-ink);
  display: inline-block;
  letter-spacing: -0.01em;
}

/* GRID — mobile-first */
.dweb .mfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .dweb .mfg-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 900px) {
  .dweb .mfg-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .dweb .mfg-grid { grid-template-columns: repeat(6, 1fr); }
}

/* CARD */
.dweb .mfg-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px 10px 12px;
  background: #fff;
  border: 1px solid var(--fs-line);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.dweb .mfg-card[hidden] { display: none; }
.dweb .mfg-card:hover {
  border-color: var(--fs-red);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* CARD LOGO — fundo branco. aspect-ratio 1.15/1 (mais quadrado) p/
   logos 300x300 source aproveitarem mais espaco => ~40% maiores
   vs versao 1.6/1 anterior. */
.dweb .mfg-card-logo {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.dweb .mfg-card-logo img {
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
}
.dweb .mfg-card-fallback {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--fs-mute);
  letter-spacing: 0.05em;
  text-align: center;
}

.dweb .mfg-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--fs-ink);
  text-align: center;
  text-transform: capitalize;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 600px) {
  .dweb .mfg-card-name { font-size: 13px; }
}

/* NO RESULTS */
.dweb .mfg-no-results {
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--fs-line);
}
.dweb .mfg-no-results[hidden] { display: none; }

/* ============================================================
   1.19) MANUFACTURER INFO HERO (route=product/manufacturer/info)
   Inner card: fundo branco + borda preta
   ============================================================ */
.dweb .mfg-hero-logo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--fs-ink, #000);
  border-radius: 10px;
}
.dweb .mfg-hero-logo img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}
@media (max-width: 599px) {
  .dweb .mfg-hero-logo {
    width: 96px;
    height: 96px;
  }
  .dweb .mfg-hero-logo img {
    max-width: 80px;
    max-height: 80px;
  }
}

/* ============================================================
   1.25 — hc_brands_carousel · Carrossel de marcas
   Visual baseado em .mfg-card (/marcas) mas com:
   - cards mais altos (170px default)
   - logos ocupando mais area (~80% do container)
   - native CSS scroll-snap (sem dependencia JS pesada)
   - nav arrows lateral + swipe mobile + ocultacao auto se sem overflow
   ============================================================ */
.fs-brands-section {
  /* Cola bem proxima da row-2 acima E na secao abaixo (Destaques).
     - .container do tema tem padding-top:24px (anula com !important)
     - row-2 tem margin-bottom:24px + parent .container padding-bottom:0
     - margin-top -40px puxa por cima, margin-bottom 0 cola na destaques */
  margin: -40px auto 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* OBSOLETO: regra removida em favor da seção 1.25 (gaps uniformes 48px na home).
   Antes essa regra reduzia o pt da primeira section.container apos brands de 24
   para 12px porque a brands tinha margin-top:-40 (overlap), agora removidos. */
.fs-brands__head {
  text-align: left;
  margin: 0 0 16px;
}
.fs-brands__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: var(--fs-ink);
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.01em;
}
.fs-brands__subtitle {
  font-size: 14px;
  color: var(--fs-mute);
  margin: 4px 0 0;
}

.fs-brands {
  position: relative;
  display: block;
}

/* Track: carrossel scroll horizontal com snap. A quantidade de cards visiveis
   por "pagina" segue --fs-brands-visible (espelha .pgrid-d do Destaques).
   Cada card recebe largura calculada pra caber exatamente N visiveis. */
.fs-brands__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--fs-brands-visible) - 1) * 12px) / var(--fs-brands-visible));
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.fs-brands__track::-webkit-scrollbar { display: none; }

/* Card individual — espelha visual do .pcard (Destaques): imgwrap topo + meta base.
   Sem padding direto no card, sem hover transforms — comportamento estatico igual pcard. */
.fs-brands__card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: var(--fs-brands-card-h, 170px);
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e6e8ec);
  border-radius: var(--r-md, 12px);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Imgwrap: zona do logo, bg cinza-claro (mesma var --fs-line-2 do .pcard .imgwrap).
   Usa position:absolute no logo pra garantir centralizacao mesmo quando o IMG
   eh maior que imgwrap (logo_max_pct: 120 → IMG overflow ~71px ficaria anchored
   no top com place-items:center grid em safe-mode). Translate centraliza. */
.fs-brands__imgwrap {
  flex: 1;
  background: var(--fs-line-2, #f3f5f8);
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.fs-brands__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: var(--fs-brands-logo-max, 100%);
  max-height: var(--fs-brands-logo-max, 100%);
  object-fit: contain;
  display: block;
}
.fs-brands__logo-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--fs-ink-2, #2b2f36);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Meta: zona do nome, bg branco (igual .pcard .meta) */
.fs-brands__meta {
  padding: 8px 12px 10px;
  text-align: center;
  background: var(--fs-card, #fff);
}
.fs-brands__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fs-ink-2, #2b2f36);
  text-transform: capitalize;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav buttons (setas laterais) */
.fs-brands__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e6e8ec);
  color: var(--fs-ink, #0b0e13);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, opacity 140ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.fs-brands__nav:hover {
  background: var(--fs-red);
  border-color: var(--fs-red);
  color: #fff;
}
.fs-brands__nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.fs-brands__nav--prev { left: -20px; }
.fs-brands__nav--next { right: -20px; }

/* Sem overflow (todos cards cabem na primeira pagina): oculta setas */
.fs-brands--no-overflow .fs-brands__nav { display: none; }

/* Breakpoints responsivos espelhando .pgrid-d do Destaques.
   IMPORTANTE: !important pra sobrescrever inline style do controller
   (template emite style="--fs-brands-visible:6" via setting visible_desktop). */
@media (max-width: 991.98px) {
  /* Tablet/mobile: 2 colunas, igual .pgrid-d em <992px */
  .fs-brands { --fs-brands-visible: 2 !important; }
  .fs-brands__nav { display: none; }  /* mobile usa swipe natural, sem setas */
  .fs-brands__title { font-size: 18px; }
  .fs-brands__card { height: 140px; }
  .fs-brands__meta { padding: 6px 8px 8px; }
  .fs-brands__name { font-size: 12px; }
}

/* ============================================================
   1.26 — hc_blog_posts · Bento grid de posts WordPress
   Pull em runtime via WP REST API + cache. Suporta layouts:
   - hero-3small (default): 1 post grande + 3 secundarios
   - 2x2:                   4 posts iguais em grid 2x2
   - row-4 / row-3:         linha unica responsiva
   Mesmo DNA visual do .pcard (border, hover, etc).
   ============================================================ */
.fs-blog-section {
  margin: 24px auto;
}
.fs-blog__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.fs-blog__subtitle {
  margin: -8px 0 18px;
  color: var(--fs-mute);
  font-size: 14px;
}

/* Card base — DNA do .pcard */
.fs-blog-card {
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e6e8ec);
  border-radius: var(--r-md, 12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  min-height: 0;  /* permite flex children encolherem */
}
.fs-blog-card:hover {
  border-color: var(--fs-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Imagem do post — bg cinza-claro como .pcard .imgwrap */
.fs-blog-card__imgwrap {
  background: var(--fs-line-2, #f3f5f8);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}
.fs-blog-card--hero .fs-blog-card__imgwrap {
  aspect-ratio: 4 / 3;
}
.fs-blog-card__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}
.fs-blog-card:hover .fs-blog-card__imgwrap img {
  transform: scale(1.04);
}
.fs-blog-card__noimg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--fs-mute, #6c7079);
}

/* Meta: titulo + excerpt + data */
.fs-blog-card__meta {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
}
.fs-blog-card--hero .fs-blog-card__meta {
  padding: 18px 20px 20px;
  gap: 8px;
}

.fs-blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fs-red);
}
.fs-blog-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--fs-ink, #0b0e13);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fs-blog-card--hero .fs-blog-card__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  -webkit-line-clamp: 3;
}
.fs-blog-card__excerpt {
  margin: 0;
  font-size: 13px;
  color: var(--fs-mute-2, #5a5e66);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fs-blog-card--hero .fs-blog-card__excerpt {
  font-size: 14px;
  -webkit-line-clamp: 4;
}
.fs-blog-card__date {
  margin-top: auto;
  font-size: 11px;
  color: var(--fs-mute, #6c7079);
  letter-spacing: 0.02em;
}

/* ===================== LAYOUTS ===================== */

/* hero-3small: 1 grande esquerda + 3 pequenos coluna direita.
   Desktop: grid 2fr 1fr × 3 rows. Hero spans 3 rows. */
.fs-blog-bento--hero-3small {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  /* altura definida pelos cards menores; hero estica */
  min-height: 480px;
}
.fs-blog-bento--hero-3small > .fs-blog-card--hero {
  grid-row: span 3;
}
/* small cards no hero-3small ficam horizontais (foto na esquerda, meta na direita) */
.fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) {
  flex-direction: row;
}
.fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) .fs-blog-card__imgwrap {
  width: 40%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) .fs-blog-card__meta {
  padding: 12px 14px;
}
.fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) .fs-blog-card__excerpt {
  display: none;  /* small cards horizontais ficam mais compactos sem excerpt */
}

/* 2x2: 4 posts iguais — usado quando se quer NAO destacar hierarquia visual.
   Cards compactos: imagem com max-height 220px, aspect 16/9, meta enxuta. */
.fs-blog-bento--2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;  /* limite extra pra nao ocupar todo o container */
  margin-left: auto;
  margin-right: auto;
}
.fs-blog-bento--2x2 .fs-blog-card__imgwrap {
  aspect-ratio: 16 / 9;
  max-height: 220px;
}
.fs-blog-bento--2x2 .fs-blog-card__meta {
  padding: 12px 14px 14px;
}
.fs-blog-bento--2x2 .fs-blog-card__title {
  font-size: 15px;
  -webkit-line-clamp: 2;  /* 2 linhas max no 2x2 (titulos curtos) */
}

/* row-4 / row-3: linha unica horizontal */
.fs-blog-bento--row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fs-blog-bento--row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ===================== RESPONSIVO ===================== */

@media (max-width: 991.98px) {
  /* hero-3small: empilha em 2 linhas — hero full + 3 small em row */
  .fs-blog-bento--hero-3small {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .fs-blog-bento--hero-3small > .fs-blog-card--hero {
    grid-column: span 2;
    grid-row: auto;
  }
  /* small cards voltam a ser vertical no tablet */
  .fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) {
    flex-direction: column;
  }
  .fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) .fs-blog-card__imgwrap {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .fs-blog-bento--hero-3small > .fs-blog-card:not(.fs-blog-card--hero) .fs-blog-card__excerpt {
    display: -webkit-box;
  }
  /* row-4 vira 2x2 no tablet */
  .fs-blog-bento--row-4 {
    grid-template-columns: 1fr 1fr;
  }
  .fs-blog-bento--row-3 {
    grid-template-columns: 1fr 1fr;
  }
  .fs-blog-bento--row-3 > .fs-blog-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 599px) {
  /* Mobile: tudo empilha em 1 col */
  .fs-blog-bento--hero-3small,
  .fs-blog-bento--2x2,
  .fs-blog-bento--row-4,
  .fs-blog-bento--row-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fs-blog-bento--hero-3small > .fs-blog-card--hero,
  .fs-blog-bento--row-3 > .fs-blog-card:nth-child(3) {
    grid-column: auto;
  }
  .fs-blog-card--hero .fs-blog-card__title {
    font-size: 18px;
  }
}

/* =============================================================
 * Creative Commerce credit — linha branca com bump VAZADO no centro
 *
 * Visual desejado (sketch v2):
 *   ─────────────╮ ╭─────────────    ← linha branca 2px no topo do .legal
 *                │ │                   bump rises em arco (apenas BORDA branca,
 *                │ CC │                interior dark — sem fill)
 *                ╰───╯                logo CC mascarado branco dentro do bump
 *
 * Implementacao:
 *   - .legal--with-cc-dome  border-top: 2px branca = a "linha"
 *   - .legal__cc-dome       bg dark (igual surroundings) cobre a linha
 *                           onde se sobrepoe → linha "abre" no bump.
 *                           border top + lados brancas + border-bottom: 0
 *                           border-radius: cria meio-circulo perfeito
 *   - .legal__cc-logo       mask-image, mono-branco, centralizado
 * ============================================================= */
.dfooter .legal--with-cc-dome {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 28px;
  margin-top: 36px;
  justify-content: center;
  text-align: center;
}

/* Link wrapper: SVG arc + logo absolute. calc-based pra evitar subpixel
   do transform: translateX(-50%) que pode causar artefatos nos cantos. */
.dfooter .legal__cc {
  position: absolute;
  left: calc(50% - 112px);
  bottom: 100%;
  margin-bottom: -1px;
  z-index: 2;
  display: block;
  text-decoration: none;
  width: 224px;
  height: 112px;
  overflow: visible;
}

/* SVG arc: stroke desenha o meio-circulo, fill cobre a linha embaixo.
   Sem border-radius CSS = sem artefatos de tangente. */
.dfooter .legal__cc-arc {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.dfooter .legal__cc-arc path {
  fill: var(--fs-ink);
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1;
  stroke-linecap: round;        /* ponta arredondada disfarca o angulo 90deg */
  stroke-linejoin: round;
}

/* Logo BEM grande — extrapola a borda do dome em ~44px de cada lado.
   Empurrado pra cima pra dar lugar a label "Construído por" embaixo. */
.dfooter .legal__cc-logo {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 156px);
  width: 312px;
  height: 72px;
  background: #fff;
  -webkit-mask: url('../image/creative-commerce-2026.svg') center/contain no-repeat;
          mask: url('../image/creative-commerce-2026.svg') center/contain no-repeat;
  opacity: 0.95;
  transition: opacity 0.2s ease;
  z-index: 2;
}

/* "Construído por" — label abaixo do logo, perto da linha base do dome */
.dfooter .legal__cc-label {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  z-index: 3;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}
.dfooter .legal__cc:hover .legal__cc-logo {
  opacity: 1;
}
.dfooter .legal__cc:focus-visible {
  outline: 2px solid var(--fs-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Tablet/mobile: o .mid faz flex-wrap e .social cai em linha propria abaixo
   do .pay — entrando na faixa vertical onde o dome sobe. Margin-top maior
   no .legal cria espaco morto suficiente pro dome subir sem sobrepor social. */
@media (max-width: 991.98px) {
  .dfooter .legal--with-cc-dome { margin-top: 130px; }
}

/* Mobile estrito: encolhe o dome proporcionalmente */
@media (max-width: 599px) {
  .dfooter .legal--with-cc-dome { margin-top: 110px; padding-top: 22px; }
  .dfooter .legal__cc { width: 180px; height: 90px; left: calc(50% - 90px); }
  .dfooter .legal__cc-logo { width: 220px; height: 51px; left: calc(50% - 110px); bottom: 16px; }
  .dfooter .legal__cc-label { bottom: 3px; top: auto; font-size: 8px; letter-spacing: 0.12em; }
}

/* =============================================================
 * hc_img() — <picture> wrapper transparente ao layout
 * O helper HcPerfPicture emite <picture><source...><img></picture>.
 * display:contents remove a CAIXA do <picture> do box tree — o <img>
 * interno se comporta como filho direto do container original, entao
 * CSS pre-existente que mira `img` (incl. seletores `>` filho direto)
 * continua valendo sem alteracao. Ver hc_perf/perf_picture.php.
 * ============================================================= */
picture { display: contents; }

/* =============================================================
 * Pagina 404 (error/not_found) — fogoesshop/template/error/not_found.twig
 * ============================================================= */
.fs-404-page {
  background: var(--fs-bg, #f5f5f7);
  min-height: 56vh;
}
.fs-404 {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  text-align: center;
}
.fs-404__hero { margin-bottom: 26px; }
.fs-404__code {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(76px, 17vw, 150px);
  line-height: .85;
  color: var(--fs-red, #E11D2E);
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.fs-404__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--fs-ink, #1a1a1a);
}
.fs-404__lead {
  color: var(--fs-mute, #6b7280);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.fs-404__search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 540px;
  margin: 26px auto 18px;
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e5e7eb);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.fs-404__search-ic { display: flex; flex-shrink: 0; color: var(--fs-mute, #6b7280); }
.fs-404__search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--fs-ink, #1a1a1a);
}
.fs-404__search-btn { flex-shrink: 0; border-radius: 999px; padding: 10px 24px; }
.fs-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 38px;
}
.fs-404__contact {
  border-top: 1px solid var(--fs-line, #e5e7eb);
  padding-top: 26px;
}
.fs-404__contact-label {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--fs-mute, #6b7280);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fs-404__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.fs-404__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e5e7eb);
  border-radius: 999px;
  color: var(--fs-ink, #1a1a1a);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.fs-404__contact-link:hover {
  border-color: var(--fs-red, #E11D2E);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.fs-404__contact-link i { font-size: 16px; color: var(--fs-red, #E11D2E); }
.fs-404__contact-link--wa i { color: #25D366; }
.fs-404__contact-link--wa:hover { border-color: #25D366; }
@media (max-width: 480px) {
  .fs-404__search {
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 14px;
    padding: 12px;
  }
  .fs-404__search-ic { display: none; }
  .fs-404__search-input { width: 100%; }
  .fs-404__search-btn { width: 100%; border-radius: 10px; }
  .fs-404__contact-link { padding: 8px 13px; font-size: 13px; }
}

/* =============================================================
 * Mapa do site (information/sitemap) — fogoesshop/template/information/sitemap.twig
 * ============================================================= */
.fs-sitemap-page {
  background: var(--fs-bg, #f5f5f7);
  min-height: 60vh;
}
.fs-sitemap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}
.fs-sitemap__head { text-align: center; margin-bottom: 34px; }
.fs-sitemap__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fs-red, #E11D2E);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fs-sitemap__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--fs-ink, #1a1a1a);
}
.fs-sitemap__lead {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fs-mute, #6b7280);
}
.fs-sitemap__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 38px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fs-line, #e5e7eb);
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--fs-ink, #1a1a1a);
}
.fs-sitemap__section-title i { color: var(--fs-red, #E11D2E); }
/* Masonry (multi-coluna): cards empacotam pela altura natural, sem espaco em
   branco. Ordem de leitura passa a ser por coluna (cima->baixo). */
.fs-sitemap__grid {
  columns: 260px;
  column-gap: 16px;
}
.fs-sitemap__card {
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e5e7eb);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 16px;
  break-inside: avoid;
}
.fs-sitemap__cat {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fs-line, #e5e7eb);
  font-size: 15px;
  font-weight: 700;
}
.fs-sitemap__cat a { color: var(--fs-ink, #1a1a1a); text-decoration: none; }
.fs-sitemap__cat a:hover { color: var(--fs-red, #E11D2E); }
.fs-sitemap__sublist { list-style: none; margin: 0; padding: 0; }
.fs-sitemap__sublist li { margin: 0 0 6px; }
.fs-sitemap__sub {
  font-size: 14px;
  color: var(--fs-ink-2, #374151);
  text-decoration: none;
}
.fs-sitemap__sub:hover { color: var(--fs-red, #E11D2E); }
.fs-sitemap__sublist--l3 {
  margin: 4px 0 8px 14px;
  padding-left: 10px;
  border-left: 1px solid var(--fs-line, #e5e7eb);
}
.fs-sitemap__sub3 {
  font-size: 13px;
  color: var(--fs-mute, #6b7280);
  text-decoration: none;
}
.fs-sitemap__sub3:hover { color: var(--fs-red, #E11D2E); }
.fs-sitemap__links { display: flex; flex-wrap: wrap; gap: 10px; }
.fs-sitemap__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--fs-card, #fff);
  border: 1px solid var(--fs-line, #e5e7eb);
  border-radius: 999px;
  color: var(--fs-ink, #1a1a1a);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .15s ease, transform .15s ease;
}
.fs-sitemap__link:hover {
  border-color: var(--fs-red, #E11D2E);
  transform: translateY(-1px);
}
.fs-sitemap__link i { font-size: 15px; color: var(--fs-red, #E11D2E); }
/* categorias-folha (sem subcategorias) — pills abaixo do grid de cards */
.fs-sitemap__leaves {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
/* card dedicado de Marcas — full-width, marcas em multi-coluna interna */
.fs-sitemap__card--brands { margin-bottom: 0; }
.fs-sitemap__brandlist {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 180px;
  column-gap: 24px;
}
.fs-sitemap__brandlist li { margin: 0 0 7px; break-inside: avoid; }
@media (max-width: 575px) {
  .fs-sitemap__grid { columns: 1; }
}

/* =============================================================
 * Banner de consentimento (vanilla-cookieconsent v3) — tema FogoesShop
 * Seletor `html #cc-main` tem especificidade maior que o `#cc-main` da lib,
 * entao vence independente da ordem de carregamento dos CSS.
 * ============================================================= */
html #cc-main {
  --cc-font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --cc-modal-border-radius: 14px;
  --cc-btn-border-radius: 9px;
  --cc-pm-toggle-border-radius: 999px;

  --cc-bg: var(--fs-card, #fff);
  --cc-primary-color: var(--fs-ink, #1a1a1a);
  --cc-secondary-color: var(--fs-mute, #6b7280);
  --cc-link-color: var(--fs-red, #E11D2E);
  --cc-overlay-bg: rgba(20, 20, 22, .55);

  /* Botao primario (Aceitar todos) — vermelho da marca */
  --cc-btn-primary-bg: var(--fs-red, #E11D2E);
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-border-color: var(--fs-red, #E11D2E);
  --cc-btn-primary-hover-bg: var(--fs-red-700, #b3151f);
  --cc-btn-primary-hover-color: #fff;
  --cc-btn-primary-hover-border-color: var(--fs-red-700, #b3151f);

  /* Botao secundario (Recusar / Personalizar) — outline claro */
  --cc-btn-secondary-bg: var(--fs-card, #fff);
  --cc-btn-secondary-color: var(--fs-ink, #1a1a1a);
  --cc-btn-secondary-border-color: var(--fs-line, #e5e7eb);
  --cc-btn-secondary-hover-bg: var(--fs-bg, #f5f5f7);
  --cc-btn-secondary-hover-color: var(--fs-ink, #1a1a1a);
  --cc-btn-secondary-hover-border-color: var(--fs-mute, #6b7280);

  /* Toggles — verde quando ativo (granted) */
  --cc-toggle-on-bg: var(--fs-success, #16a34a);
  --cc-toggle-off-bg: var(--fs-mute-2, #9ca3af);
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-knob-bg: #fff;
  --cc-toggle-readonly-bg: var(--fs-line-2, #d1d5db);
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-enabled-icon-color: var(--fs-success, #16a34a);
  --cc-toggle-disabled-icon-color: var(--fs-mute-2, #9ca3af);

  /* Blocos de categoria no modal de preferencias */
  --cc-cookie-category-block-bg: var(--fs-bg, #f5f5f7);
  --cc-cookie-category-block-border: var(--fs-line, #e5e7eb);
  --cc-cookie-category-block-hover-bg: var(--fs-line, #e5e7eb);
  --cc-cookie-category-block-hover-border: var(--fs-line-2, #d1d5db);
  --cc-cookie-category-expanded-block-bg: var(--fs-card, #fff);
  --cc-separator-border-color: var(--fs-line, #e5e7eb);
  --cc-section-category-border: var(--fs-line, #e5e7eb);

  /* Footer do modal (link da politica) */
  --cc-footer-bg: var(--fs-bg, #f5f5f7);
  --cc-footer-color: var(--fs-mute, #6b7280);
  --cc-footer-border-color: var(--fs-line, #e5e7eb);

  color-scheme: light;
}

/* ============================================================
   PDP — Ultima atualizacao (acima dos botoes Comprar/WhatsApp).
   Adicionado 2026-05-15. Render condicional do controller — so
   aparece se < 90 dias. Cores: verde (<7d), cinza neutro (7-90d).
   ============================================================ */
.par--updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.par--updated i { font-size: 14px; }
.par--updated time { font-variant-numeric: tabular-nums; }
.par--updated-fresh   { color: #1a7f37; }
.par--updated-fresh i { color: #1a7f37; }
.par--updated-neutral   { color: #666; }
.par--updated-neutral i { color: #999; }

/* ============================================================
   CWV CLS fix (2026-05-18): height:auto pra imagens com dimensions HTML.
   ============================================================
   O hc_img() helper auto-injeta width+height attrs (CWV CLS — browser
   reserva espaco antes do carregamento). Mas a regra global pre-existente
   `img { max-width: 100%; }` (fogoesshop.css:46) cappa largura sem
   recalcular altura -> imagem fica esticada (ex: 100px x 260px).
   
   Fix: pra imgs com ambos attrs HTML, deixar altura auto-calcular do
   aspect-ratio. Imagens SEM attrs (icones inline, banners fixos) ficam
   inalteradas — preservam comportamento original do tema.
   Pattern recomendado por web.dev:
     https://web.dev/articles/optimize-cls#images-without-dimensions
   ============================================================ */
img[width][height] { height: auto; }

/* ============================================================
   CWV regression fix (2026-05-18): cor branca forcada em .promo--has-bg
   ============================================================
   Bug: apos defer Bootstrap CSS, o link <a class="promo"> herda cor
   do browser default (azul) ate Bootstrap carregar — e depois mantem
   se Bootstrap define `a { color: var(--bs-link-color) }` que vence
   especificidade contra `.promo.dark`.
   
   Cards com bg image (.promo--has-bg) tem text-shadow forte pra contraste
   na imagem — sempre brancos. Regra forca color independente de heranca.
   ============================================================ */
.dweb .promo.promo--has-bg,
.dweb .promo.promo--has-bg h3,
.dweb .promo.promo--has-bg small,
.dweb .promo.promo--has-bg span {
  color: #fff !important;
}
.dweb .promo.dark,
.dweb .promo.dark h3,
.dweb .promo.dark small {
  color: #fff !important;
}

/* ============================================================
   Fix (2026-05-18): overlay escuro nos cards .dhero-row2 com bg image
   ============================================================
   Bug: cards "Programa Profissionais" tem imagem clara (capacete +
   ferramentas + bg branco). Texto branco fica ilegivel mesmo com
   text-shadow. Overlay escuro semi-transparente preserva visibilidade
   da imagem MAS escurece o suficiente pra branco ler bem.

   Aplicado SO em .dhero-row2 (3 cards da segunda linha do hero) pra
   nao afetar outros .promo--has-bg da pagina.
   Cards com .dark ja tem bg escuro -> nao precisam overlay extra.
   ============================================================ */
.dweb .dhero-row2 .promo.promo--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
.dweb .dhero-row2 .promo.promo--has-bg > * {
  position: relative;
  z-index: 1;
}
