/**
 * Single Product CSS, template BCX ecommerceCAMP
 * Extraído da PDP Bambuzinho aprovada em 14/05/2026
 * Aplicado quando produto tem ACF use_bcx_template = true
 *
 * Paleta:
 *  --gm-blue   #37B7FF  (primária)
 *  --gm-red    #DD3333  (preço oferta, badge)
 *  --gm-yellow #FBC312  (selos)
 *  --gm-green  #26AB5B  (Pix, sucesso, badge OFF, estoque)
 *  --gm-text   #232323  (texto principal)
 *  --gm-bg     #F4F4F4  (fundo)
 */

:root {
  --gm-blue: #37B7FF;
  --gm-blue-dark: #1A9AE0;
  --gm-blue-light: #D6F0FF;
  --gm-red: #DD3333;
  --gm-red-dark: #B72929;
  --gm-yellow: #FBC312;
  --gm-green: #26AB5B;
  --gm-green-light: #E8F5EC;
  --gm-text: #232323;
  --gm-text-mid: #444444;
  --gm-text-soft: #777777;
  --gm-bg: #F4F4F4;
  --gm-surface: #FFFFFF;
  --gm-border: #E5E5E5;
  --gm-shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --gm-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --gm-shadow-lg: 0 6px 24px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gm-text);
  background: var(--gm-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── ICON HELPERS ─── */
.ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ico-inline { display: inline-flex; align-items: center; gap: 6px; }
svg { display: inline-block; vertical-align: middle; }

/* Desktop/mobile content split helpers */
.tb-mobile { display: none; }
.tb-desktop { display: inline-flex; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--gm-blue);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
  font-weight: 600;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar a { transition: opacity 0.2s; }
.topbar a:hover { opacity: 0.85; }
.tb-login {
  background: rgba(255,255,255,0.18);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.tb-wa {
  background: var(--gm-green);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ─── HEADER ─── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--gm-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--gm-shadow-sm);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 28px;
  align-items: center;
}
.logo img { height: 54px; display: block; }
.search {
  display: flex;
  border: 1.5px solid var(--gm-text);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.search input {
  flex: 1;
  padding: 11px 16px;
  border: 0;
  font-size: 13.5px;
  font-family: inherit;
  background: transparent;
}
.search input:focus { outline: none; }
.search button {
  background: var(--gm-blue);
  color: #fff;
  border: 0;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.search button:hover { background: var(--gm-blue-dark); }
.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.ha-login {
  background: var(--gm-text);
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.ha-login:hover { background: #000; }
.ha-social {
  display: flex; gap: 10px;
  color: var(--gm-blue);
  align-items: center;
}
.ha-social a { display: flex; align-items: center; transition: color 0.2s; }
.ha-social a:hover { color: var(--gm-blue-dark); }
.ha-cart {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gm-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.ha-cart:hover { background: var(--gm-bg); }
.ha-cart-badge, .cart-float-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gm-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 100px;
  min-width: 14px;
  text-align: center;
  line-height: 1.4;
}
.cart-float { position: relative; }
.cart-float-badge { top: 6px; right: 6px; font-size: 10px; padding: 2px 6px; }

/* ─── PIX STRIP ─── */
.pix-strip {
  background: var(--gm-text);
  color: #fff;
  padding: 12px 0;
}
.pix-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pix-pig {
  width: 36px; height: 36px;
  background: var(--gm-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pix-text {
  font-size: 13.5px;
  line-height: 1.4;
}
.pix-text strong {
  color: var(--gm-green-light);
  font-weight: 800;
  font-size: 17px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--gm-border); }
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: var(--gm-text-soft);
}
.breadcrumb a:hover { color: var(--gm-blue); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.5; }
.breadcrumb .current { color: var(--gm-text); font-weight: 700; }

/* ─── MAIN, PDP ─── */
.pdp {
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px;
}
.pdp-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--gm-shadow-sm);
  margin-bottom: 24px;
}

/* ─── GALERIA DESKTOP ─── */
.gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 540px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.gallery-thumbs::-webkit-scrollbar { width: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gm-border); border-radius: 100px; }
.gallery-thumb {
  width: 80px;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--gm-border);
  border-radius: 4px;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.gallery-thumb:hover { border-color: var(--gm-text-soft); }
.gallery-thumb.active { border-color: var(--gm-blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  background: #fff;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gm-border);
}
.gallery-main img.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.gallery-seal {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gm-yellow);
  color: var(--gm-text);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  z-index: 5;
}
.gallery-discount {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gm-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  z-index: 5;
}
.gallery-zoom {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--gm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
}

/* Slider mobile only, hidden no desktop */
.gallery-mobile { display: none; }

/* ─── INFO ─── */
.info-tag {
  display: inline-block;
  background: var(--gm-blue-light);
  color: var(--gm-blue-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.info-sku {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gm-text-soft);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.product-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--gm-text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gm-text-soft);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rating-row .stars { color: var(--gm-yellow); letter-spacing: 1px; font-size: 15px; }
.rating-row strong { color: var(--gm-text); }
.rating-row .reviews-link { color: var(--gm-text-soft); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(119,119,119,0.4); text-underline-offset: 3px; }
.rating-row .reviews-link:hover { color: var(--gm-text); text-decoration-color: var(--gm-text); }

.price-block {
  padding: 16px 18px;
  background: #FAFAFA;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.price-old {
  text-decoration: line-through;
  color: var(--gm-text-soft);
  font-size: 13.5px;
}
.price-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--gm-text);
  letter-spacing: -1px;
  line-height: 1;
}
.price-discount {
  background: var(--gm-green);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.price-parcela {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--gm-text-mid);
  margin-bottom: 6px;
}
.price-parcela .ic { font-size: 15px; color: var(--gm-text-soft); }
.price-parcela strong { color: var(--gm-text); font-weight: 700; }
.price-pix {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--gm-green);
  font-weight: 700;
}
.price-pix .ic { font-size: 15px; }
.price-pix strong { font-size: 18px; font-weight: 900; }
.price-economia {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--gm-green);
  font-weight: 700;
}

.stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gm-green);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.stock-row::before { content: '●'; font-size: 9px; }

.variants {
  margin-bottom: 16px;
}
.variants-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gm-text-soft);
  margin-bottom: 8px;
}
.variants-label .selected { color: var(--gm-text); margin-left: 4px; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-option {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--gm-border);
  border-radius: 100px;
  color: var(--gm-text-mid);
  background: #fff;
  transition: all 0.15s;
}
.variant-option:hover { border-color: var(--gm-text-soft); }
.variant-option.active { border-color: var(--gm-blue); color: var(--gm-blue-dark); background: var(--gm-blue-light); }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.qty-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gm-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qty-input {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gm-border);
  border-radius: 6px;
  overflow: hidden;
}
.qty-input button {
  width: 38px; height: 42px;
  background: #FAFAFA;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--gm-text);
  transition: background 0.15s;
}
.qty-input button:hover { background: var(--gm-bg); }
.qty-input input {
  width: 46px;
  text-align: center;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 0;
}
.qty-input input:focus { outline: none; }

.cta-buy {
  width: 100%;
  background: var(--gm-blue);
  color: #fff;
  border: 0;
  padding: 16px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.cta-buy:hover { background: var(--gm-blue-dark); transform: translateY(-1px); box-shadow: var(--gm-shadow); }

.cta-frete-hint {
  text-align: center;
  font-size: 12px;
  color: var(--gm-text-soft);
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.4;
}

/* Placeholder futuro pra banner de frete grátis em SP */
.banner-frete-gratis {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--gm-green-light);
  border: 1px solid var(--gm-green);
  border-radius: 8px;
  font-size: 13px;
  color: var(--gm-green);
  font-weight: 600;
}
.banner-frete-gratis svg { color: var(--gm-green); flex-shrink: 0; }
.banner-frete-gratis strong { font-weight: 800; }

.cep-row {
  background: #FAFAFA;
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 14px;
}
.cep-row h4 {
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gm-text-soft);
}
.cep-row h4 svg { color: var(--gm-blue); }
.cep-form { display: flex; gap: 8px; }
.cep-form input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--gm-border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
}
.cep-form button {
  background: var(--gm-text);
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}
.cep-form button:hover { background: #000; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gm-border);
}
.trust-item {
  font-size: 12px;
  color: var(--gm-text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item .ic {
  width: 18px; height: 18px;
  background: var(--gm-blue-light);
  color: var(--gm-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.payment-methods {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gm-border);
}
.payment-methods-label {
  font-size: 10.5px;
  color: var(--gm-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  margin-bottom: 8px;
}
.payment-icons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.payment-icon {
  padding: 4px 9px;
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--gm-text-mid);
  letter-spacing: 0.3px;
}
.payment-icon.pix { color: var(--gm-green); border-color: var(--gm-green); }

/* ─── SECTIONS BELOW HERO ─── */
.section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--gm-shadow-sm);
}
.section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
  color: var(--gm-text);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gm-blue);
  display: inline-block;
}
.section h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 22px 0 10px;
  color: var(--gm-text);
}
.section p {
  color: var(--gm-text-mid);
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.7;
}
.section p strong { color: var(--gm-text); }

.highlight-box {
  background: var(--gm-blue-light);
  border-left: 4px solid var(--gm-blue);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.65;
}
.highlight-box strong { color: var(--gm-blue-dark); }

.specs-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.specs-table tr:nth-child(even) td { background: #FAFAFA; }
.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--gm-border);
}
.specs-table td:first-child {
  font-weight: 700;
  color: var(--gm-text);
  width: 220px;
}
.specs-table td:last-child { color: var(--gm-text-mid); }

/* ─── CROSS-SELL ─── */
.cross-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cross-card {
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.cross-card:hover { border-color: var(--gm-blue); box-shadow: var(--gm-shadow); transform: translateY(-2px); }
.cross-card .thumb {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cross-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cross-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  color: var(--gm-text);
  min-height: 36px;
}
.cross-card .price {
  font-size: 15px;
  font-weight: 800;
  color: var(--gm-text);
}
.cross-card .price small {
  display: block;
  font-size: 11px;
  color: var(--gm-text);
  font-weight: 600;
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gm-text);
  transition: background 0.2s;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { background: #FAFAFA; }
.faq-question .arrow {
  font-size: 12px;
  color: var(--gm-blue);
  transition: transform 0.2s;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gm-text-mid);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

/* ─── REVIEWS ─── */
.reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gm-border);
}
.reviews-score {
  text-align: center;
  padding: 22px;
  background: #FAFAFA;
  border-radius: var(--radius);
}
.reviews-score .big {
  font-size: 46px;
  font-weight: 900;
  color: var(--gm-text);
  line-height: 1;
  margin-bottom: 6px;
}
.reviews-score .stars {
  font-size: 18px;
  color: var(--gm-yellow);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.reviews-score .count {
  font-size: 12px;
  color: var(--gm-text-soft);
  font-weight: 600;
}
.reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.reviews-bar {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
  color: var(--gm-text-mid);
}
.reviews-bar .track {
  height: 7px;
  background: var(--gm-bg);
  border-radius: 4px;
  overflow: hidden;
}
.reviews-bar .fill {
  height: 100%;
  background: var(--gm-yellow);
  border-radius: 4px;
}

/* ─── FOOTER ─── */
.footer-pre {
  background: var(--gm-blue);
  color: #fff;
  padding: 28px 0;
}
.footer-pre-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.footer-pre-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-pre-item .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-pre-item .txt { text-align: left; font-size: 12.5px; line-height: 1.3; }
.footer-pre-item .txt strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.footer {
  background: var(--gm-text);
  color: #fff;
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--gm-yellow);
}
.footer p, .footer li, .footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.footer a:hover { color: var(--gm-yellow); }
.footer ul { list-style: none; padding: 0; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Cart floating mobile (substituído por sticky-cta no breakpoint mobile) */
.cart-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: var(--gm-text);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--gm-shadow-lg);
  z-index: 40;
}

/* WhatsApp DESABILITADO como FAB (vira parte do sticky CTA agora) */
.wa-fab { display: none !important; }

/* Sticky CTA mobile, padrão Amazon BR / Mercado Livre */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--gm-border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.sticky-cta-price {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.sticky-cta-price .label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gm-text-soft);
  font-weight: 700;
  margin-bottom: 2px;
}
.sticky-cta-price .val {
  font-size: 18px;
  font-weight: 900;
  color: var(--gm-text);
  letter-spacing: -0.4px;
}
.sticky-cta-price .pix {
  font-size: 10.5px;
  color: var(--gm-green);
  font-weight: 700;
  margin-top: 1px;
}
.sticky-cta-btn {
  flex: 1;
  background: var(--gm-blue);
  color: #fff;
  border: 0;
  padding: 12px 10px;
  font-size: 12.5px;
  font-weight: 900;
  border-radius: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.sticky-cta-btn:active { background: var(--gm-blue-dark); }
.sticky-cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.sticky-cta-wa {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
  transition: transform 0.15s;
}
.sticky-cta-wa:active { transform: scale(0.92); background: #1FB855; }
.sticky-cta-wa svg { width: 22px; height: 22px; }
.cart-float-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gm-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  min-width: 18px;
  text-align: center;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--gm-text);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--gm-shadow-lg);
  z-index: 100;
  font-size: 13px;
  display: none;
}
.consent-banner.show { display: block; }
.consent-banner h4 { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.consent-banner p { line-height: 1.55; margin-bottom: 14px; opacity: 0.9; }
.consent-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.consent-actions button {
  padding: 8px 16px;
  border-radius: 6px;
  border: 0;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
}
.consent-actions .accept { background: var(--gm-yellow); color: var(--gm-text); }
.consent-actions .reject { background: rgba(255,255,255,0.15); color: #fff; }
.consent-actions a { color: var(--gm-yellow); text-decoration: underline; }

/* ─── BLOCO COMPATIBILIDADE COM ANOS ─── */
.compat-section h2 { border-bottom-color: var(--gm-blue); }
.compat-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--gm-blue-light);
  border-left: 4px solid var(--gm-blue);
  border-radius: 6px;
}
.compat-intro .big-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--gm-blue-dark);
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.compat-intro .txt {
  font-size: 13.5px;
  color: var(--gm-text);
  line-height: 1.5;
}
.compat-intro .txt strong { color: var(--gm-blue-dark); }
.compat-group { margin-bottom: 18px; }
.compat-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.compat-group-head .badge-ok {
  background: var(--gm-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.compat-group-head .range {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gm-text);
}
.compat-group-head .count {
  font-size: 12px;
  color: var(--gm-text-soft);
}
.year-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 4px;
}
.year-chip {
  padding: 7px 0;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  background: var(--gm-blue-light);
  color: var(--gm-blue-dark);
  border: 1px solid rgba(55,183,255,0.3);
  font-variant-numeric: tabular-nums;
}
.compat-gap {
  margin: 18px 0;
  padding: 16px 18px;
  background: #FAFAFA;
  border: 1px dashed var(--gm-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.compat-gap .icon-gap {
  width: 38px; height: 38px;
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.compat-gap .gap-text {
  font-size: 13px;
  color: var(--gm-text-mid);
  line-height: 1.5;
}
.compat-gap .gap-text strong { color: var(--gm-text); font-weight: 800; }
.compat-gap .gap-text small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--gm-text-soft);
  font-style: italic;
}

/* ─── BLOCO NÍVEL DE INSTALAÇÃO ─── */
.install-section h2 { border-bottom-color: var(--gm-blue); }
.install-intro {
  font-size: 14px;
  color: var(--gm-text-mid);
  margin-bottom: 20px;
}
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.install-card {
  position: relative;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1.5px solid var(--gm-border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}
.install-card.active {
  border-color: var(--gm-blue);
  border-width: 2px;
  background: var(--gm-blue-light);
  box-shadow: 0 4px 18px rgba(55,183,255,0.18);
}
.install-card .badge-active {
  display: none;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gm-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(55,183,255,0.4);
}
.install-card.active .badge-active { display: inline-block; }
.install-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  background: #FAFAFA;
  border: 1px solid var(--gm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gm-text-soft);
}
.install-card.active .icon {
  background: var(--gm-blue);
  border-color: var(--gm-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(55,183,255,0.32);
}
.install-card .level {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gm-text-soft);
  margin-bottom: 4px;
}
.install-card.active .level { color: var(--gm-blue-dark); }
.install-card .title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gm-text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.install-card .desc {
  font-size: 12.5px;
  color: var(--gm-text-mid);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 50px;
}
.diff-bar {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.diff-dot {
  width: 28px; height: 5px;
  border-radius: 100px;
  background: var(--gm-border);
}
.diff-dot.on { background: var(--gm-text-soft); }
.install-card.active .diff-dot.on { background: var(--gm-blue); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE, mobile-first focus (80% do tráfego)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 180px 1fr; gap: 16px; }
  .search { grid-column: 1 / -1; }
  .header-actions { display: none; }
  .footer-pre-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .year-grid { grid-template-columns: repeat(7, 1fr); }
  .install-grid { grid-template-columns: 1fr; }
  .install-card .desc { min-height: 0; }
}
@media (max-width: 700px) {
  /* TOPBAR fica visível no mobile, mas SÓ com benefícios (sem WhatsApp/login) */
  .topbar { display: block; padding: 7px 0; font-size: 11px; }
  .topbar-inner { padding: 0 14px; gap: 8px; justify-content: center; }
  .topbar-left { gap: 16px; flex-wrap: nowrap; justify-content: center; }
  .topbar-left .tb-desktop { display: none; }
  .topbar-left .tb-mobile { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
  .topbar-left .tb-mobile svg { width: 12px; height: 12px; flex-shrink: 0; }
  .topbar-right.tb-desktop { display: none; }

  /* HEADER STICKY 1 LINHA: logo + busca + cart, altura ~52px */
  .header { padding: 0; }
  .header-inner {
    padding: 8px 14px;
    grid-template-columns: auto 1fr 40px;
    gap: 10px;
    align-items: center;
  }
  .logo { text-align: left; grid-column: 1; }
  .logo img { height: 28px; margin: 0; }
  .search { grid-column: 2; grid-row: 1; margin: 0; }
  .search input { padding: 8px 12px; font-size: 12px; border-radius: 6px; }
  .search button { display: none; }
  .header-actions {
    display: flex !important;
    grid-column: 3;
    grid-row: 1;
    gap: 0;
    justify-content: flex-end;
  }
  .header-actions .ha-login,
  .header-actions .ha-social { display: none; }
  .header-actions .ha-cart { width: 36px; height: 36px; border-width: 1.5px; }
  .header-actions .ha-cart svg { width: 17px; height: 17px; }
  .ha-cart-badge { font-size: 8px; padding: 1px 4px; min-width: 12px; }

  /* PIX STRIP ULTRA-MINI, 26px altura */
  .pix-strip { padding: 5px 0; }
  .pix-strip-inner { padding: 0 14px; gap: 8px; justify-content: center; }
  .pix-pig { width: 22px; height: 22px; }
  .pix-pig svg { width: 12px; height: 12px; }
  .pix-text { font-size: 11px; line-height: 1.2; }
  .pix-text strong { font-size: 12.5px; }

  /* BREADCRUMB MINI, só "← Voltar" */
  .breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--gm-border); }
  .breadcrumb { padding: 8px 14px; font-size: 12px; }
  .breadcrumb a, .breadcrumb .sep, .breadcrumb .current { display: none; }
  .breadcrumb::before {
    content: '← Voltar';
    color: var(--gm-blue);
    font-weight: 700;
    font-size: 12.5px;
  }

  .pdp { padding: 0; margin-top: 0; }
  .pdp-hero {
    grid-template-columns: 1fr;
    border-radius: 0;
    padding: 0;
    gap: 0;
    margin-bottom: 0;
    box-shadow: none;
  }

  /* === SLIDER PRODUTO-AS-SLIDER NO MOBILE (estilo Natumaster v7) === */
  .gallery { display: none; }
  .gallery-mobile {
    display: block;
    background: #fff;
    position: relative;
    padding-bottom: 16px;
  }
  .gallery-mobile-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding: 0 12vw 0 0;
    margin: 0 0 14px;
    scrollbar-width: none;
  }
  .gallery-mobile-track::-webkit-scrollbar { display: none; }
  .gallery-mobile-slide {
    flex: 0 0 88vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .gallery-mobile-slide img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-mobile-seal {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gm-yellow);
    color: var(--gm-text);
    font-size: 9.5px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 5;
  }
  .gallery-mobile-discount {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gm-green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
    z-index: 5;
  }
  .gallery-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }
  .gallery-mobile-dot {
    width: 32px;
    height: 32px;
    padding: 12px;
    border: 0;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-mobile-dot::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(35,35,35,0.25);
    margin: 0 auto;
    transition: all 0.25s ease;
  }
  .gallery-mobile-dot.active::before {
    width: 22px;
    border-radius: 4px;
    background: var(--gm-blue);
  }

  /* Galeria mobile colada nos dots, dots colados no info */
  .gallery-mobile { padding-bottom: 8px; overflow: hidden; max-width: 100%; }
  .gallery-mobile-track { margin-bottom: 8px; }

  /* Containers críticos contidos pra não estourar viewport */
  .pdp { max-width: 100%; overflow: hidden; }
  .pdp-hero { max-width: 100%; overflow: hidden; }
  .section { max-width: 100%; overflow: hidden; }

  /* Info do produto colada nos dots, sem padding-top excessivo */
  .info { padding: 10px 16px 18px; background: #fff; margin-bottom: 0; max-width: 100%; overflow: hidden; box-sizing: border-box; }
  .info-tag { font-size: 10px; padding: 3px 9px; margin-bottom: 6px; }
  .info-sku { font-size: 9.5px; margin-bottom: 4px; }
  .product-title { font-size: 18px; line-height: 1.3; letter-spacing: -0.3px; }
  .rating-row { margin-bottom: 14px; font-size: 12px; }
  .rating-row .stars { font-size: 14px; }
  .price-val { font-size: 28px; letter-spacing: -0.6px; }
  .price-block { padding: 12px 14px; margin-bottom: 14px; }
  .price-old { font-size: 12px; }
  .price-discount { font-size: 9.5px; padding: 2px 7px; }
  .price-parcela { font-size: 12px; margin-bottom: 4px; }
  .price-pix { font-size: 12px; }
  .price-pix strong { font-size: 14px; }
  .price-economia { font-size: 10.5px; margin-top: 4px; }
  .stock-row { font-size: 11.5px; margin-bottom: 10px; }
  .variants { margin-bottom: 12px; }
  .variants-label { font-size: 10px; }
  .variant-option { padding: 7px 12px; font-size: 11.5px; }
  .qty-row { margin-bottom: 14px; gap: 12px; }
  .qty-label { font-size: 10px; }
  .qty-input button { width: 30px; height: 36px; font-size: 15px; }
  .qty-input input { width: 36px; font-size: 12.5px; }
  .cta-buy { padding: 14px; font-size: 13.5px; letter-spacing: 1px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .cep-row { padding: 12px 14px; margin-top: 12px; max-width: 100%; box-sizing: border-box; }
  .cep-row h4 { font-size: 11px; }
  .cep-form { max-width: 100%; }
  .cep-form input { padding: 8px 10px; font-size: 12px; min-width: 0; box-sizing: border-box; }
  .cep-form button { padding: 0 14px; font-size: 11px; flex-shrink: 0; }
  .trust-grid { margin-top: 14px; padding-top: 12px; gap: 8px; max-width: 100%; }
  .trust-item { font-size: 11px; min-width: 0; }
  .trust-item .ic { width: 16px; height: 16px; font-size: 10px; flex-shrink: 0; }
  .payment-methods { margin-top: 12px; padding-top: 12px; max-width: 100%; }
  .payment-methods-label { font-size: 9.5px; margin-bottom: 6px; }
  .payment-icons { flex-wrap: wrap; max-width: 100%; }
  .payment-icon { padding: 3px 7px; font-size: 9px; }

  .section { padding: 22px 16px; border-radius: 0; box-shadow: none; margin-bottom: 0; border-top: 6px solid var(--gm-bg); }
  .section h2 { font-size: 17px; padding-bottom: 8px; margin-bottom: 14px; }
  .section h3 { font-size: 15px; margin-top: 18px; }
  .section p { font-size: 14px; }

  /* Compat bloco mobile, mais espaçado */
  .compat-intro { padding: 12px 14px; gap: 12px; margin-bottom: 18px; }
  .compat-intro .big-num { font-size: 32px; }
  .compat-intro .txt { font-size: 12.5px; }
  .compat-group-head { flex-wrap: wrap; gap: 6px; }
  .compat-group-head .range { font-size: 12.5px; }
  .compat-group-head .count { font-size: 11px; flex-basis: 100%; }
  .compat-gap { padding: 12px 14px; gap: 10px; }
  .compat-gap .icon-gap { width: 32px; height: 32px; }
  .compat-gap .icon-gap svg { width: 14px; height: 14px; }
  .compat-gap .gap-text { font-size: 12px; }
  .compat-gap .gap-text small { font-size: 11px; }

  /* Install cards: scroll horizontal compacto, peek do próximo */
  .install-section .install-intro { font-size: 13px; margin-bottom: 14px; }
  .install-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin: 0 -16px;
    padding: 8px 16px 4px;
  }
  .install-grid::-webkit-scrollbar { display: none; }
  .install-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    padding: 20px 16px 18px;
    text-align: center;
  }
  .install-card .icon { width: 48px; height: 48px; margin-bottom: 10px; }
  .install-card .icon svg { width: 24px; height: 24px; }
  .install-card .level { font-size: 9.5px; }
  .install-card .title { font-size: 16px; }
  .install-card .desc { font-size: 12px; min-height: 0; }
  .install-card .badge-active { font-size: 9px; padding: 3px 10px; }

  /* Cross-sell: scroll horizontal, 2 cards visíveis + peek do 3º */
  .cross-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin: 0 -16px;
    padding: 0 16px 4px;
  }
  .cross-grid::-webkit-scrollbar { display: none; }
  .cross-card {
    flex: 0 0 44%;
    scroll-snap-align: start;
    padding: 10px;
  }
  .cross-card:last-child { margin-right: 16px; }
  .cross-card h4 { font-size: 11.5px; min-height: 32px; line-height: 1.3; }
  .cross-card .price { font-size: 13.5px; }
  .cross-card .price small { font-size: 10px; }

  /* FAQ: touch target maior */
  .faq-question { padding: 14px 16px; font-size: 13.5px; gap: 8px; }
  .faq-answer { font-size: 13px; padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 16px; }

  /* Reviews mais compacto */
  .reviews-summary { grid-template-columns: 1fr; gap: 16px; padding-bottom: 16px; margin-bottom: 16px; }
  .reviews-score { padding: 16px; }
  .reviews-score .big { font-size: 38px; }

  /* Footer pre simples */
  .footer-pre { padding: 22px 0 18px; }
  .footer-pre-inner { grid-template-columns: 1fr 1fr; gap: 12px 14px; padding: 0 14px; }
  .footer-pre-item { gap: 10px; justify-content: flex-start; }
  .footer-pre-item .icon { width: 36px; height: 36px; }
  .footer-pre-item .icon svg { width: 18px; height: 18px; }
  .footer-pre-item .txt strong { font-size: 12px; line-height: 1.2; }
  .footer-pre-item .txt { font-size: 10.5px; line-height: 1.3; }

  .footer { padding: 32px 0 100px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.10); }
  body { padding-bottom: env(safe-area-inset-bottom); }

  /* Sticky CTA com WhatsApp integrado, cart-float e wa-fab desativados */
  .cart-float { display: none; }
  .sticky-cta { display: flex; }
}
@media (max-width: 540px) {
  .year-grid { grid-template-columns: repeat(5, 1fr); }
  .year-chip { font-size: 11px; padding: 6px 0; }
  .compat-intro .big-num { font-size: 30px; }
}
@media (max-width: 380px) {
  .product-title { font-size: 17px; }
  .price-val { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BCX OVERRIDES contra Flatsome, !important blindado, 14/05/2026
   Flatsome sobrescreve nossos display com .section { display: flex }
   e outras regras com seletor mais específico ou !important.
   Estas regras forçam o display correto onde precisar.
   ═══════════════════════════════════════════════════════════════════ */

/* Sections, força block */
#bcx-pdp .section,
#bcx-pdp .compat-section,
#bcx-pdp .install-section,
#bcx-pdp .faq-section,
#bcx-pdp .cross-sell-section {
  display: block !important;
}

/* Hero, força grid 2 colunas */
#bcx-pdp .pdp-hero {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 36px !important;
}

/* Galeria desktop, força grid thumbs + main */
#bcx-pdp .gallery {
  display: grid !important;
  grid-template-columns: 80px 1fr !important;
  gap: 12px !important;
}
#bcx-pdp .gallery-thumbs {
  display: flex !important;
  flex-direction: column !important;
}

/* Info do produto, force block */
#bcx-pdp .info,
#bcx-pdp .price-block {
  display: block !important;
}

/* Compatibilidade, força block + intro flex correto */
#bcx-pdp .compat-section h2 { display: inline-block !important; }
#bcx-pdp .compat-intro {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
}
#bcx-pdp .compat-group {
  display: block !important;
  margin-bottom: 18px !important;
}
#bcx-pdp .compat-group-head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
#bcx-pdp .year-grid {
  display: grid !important;
  grid-template-columns: repeat(11, 1fr) !important;
  gap: 4px !important;
}
#bcx-pdp .year-chip {
  display: block !important;
  text-align: center !important;
  padding: 7px 0 !important;
}
#bcx-pdp .compat-gap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Instalação, força grid 3 colunas */
#bcx-pdp .install-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
#bcx-pdp .install-card {
  display: block !important;
  text-align: center !important;
}
#bcx-pdp .install-card .diff-bar {
  display: flex !important;
  gap: 4px !important;
  justify-content: center !important;
}

/* Cross-sell, força grid 4 colunas no desktop */
#bcx-pdp .cross-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}
#bcx-pdp .cross-card {
  display: block !important;
}

/* FAQ, força stack vertical */
#bcx-pdp .faq-item {
  display: block !important;
  margin-bottom: 10px !important;
}
#bcx-pdp .faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

/* Reviews, summary force grid */
#bcx-pdp .reviews-summary {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  gap: 28px !important;
  align-items: center !important;
}

/* MOBILE re-aplicar */
@media (max-width: 700px) {
  #bcx-pdp .pdp-hero {
    grid-template-columns: 1fr !important;
  }
  #bcx-pdp .gallery { display: none !important; }
  #bcx-pdp .gallery-mobile { display: block !important; }
  #bcx-pdp .install-grid {
    grid-template-columns: none !important;
    display: flex !important;
    overflow-x: auto !important;
  }
  #bcx-pdp .cross-grid {
    grid-template-columns: none !important;
    display: flex !important;
    overflow-x: auto !important;
  }
  #bcx-pdp .reviews-summary {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 540px) {
  #bcx-pdp .year-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ accordion, blindar contra Flatsome
   Flatsome sobrescreve max-height e transform, forçar com !important
   ═══════════════════════════════════════════════════════════════════ */

/* Container */
#bcx-pdp .faq-item {
  border: 1px solid var(--gm-border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  display: block !important;
}

/* Botão pergunta */
#bcx-pdp .faq-question {
  width: 100% !important;
  padding: 16px 20px !important;
  background: #fff !important;
  border: 0 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--gm-text) !important;
  text-align: left !important;
  font-family: inherit !important;
}
#bcx-pdp .faq-question:hover { background: #FAFAFA !important; }

/* Seta */
#bcx-pdp .faq-question .arrow {
  font-size: 12px !important;
  color: var(--gm-blue) !important;
  transition: transform 0.2s !important;
  font-weight: 900 !important;
  flex-shrink: 0 !important;
  transform: rotate(0deg) !important;
  display: inline-block !important;
}
#bcx-pdp .faq-item.open .faq-question .arrow {
  transform: rotate(180deg) !important;
}

/* Resposta, animação de expandir */
#bcx-pdp .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  color: var(--gm-text-mid) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  padding: 0 20px !important;
}
#bcx-pdp .faq-item.open .faq-answer {
  max-height: 500px !important;
  padding: 0 20px 18px !important;
}

/* Mobile */
@media (max-width: 700px) {
  #bcx-pdp .faq-question { padding: 14px 16px !important; font-size: 13.5px !important; gap: 8px !important; }
  #bcx-pdp .faq-answer { font-size: 13px !important; padding: 0 16px !important; }
  #bcx-pdp .faq-item.open .faq-answer { padding: 0 16px 16px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   Tipografia das sections (Descrição, Specs, Reviews, etc.)
   Blindar contra Flatsome H2/H3/P, igualar ao mockup aprovado
   ═══════════════════════════════════════════════════════════════════ */
#bcx-pdp .section h2 {
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
  letter-spacing: -0.2px !important;
  color: var(--gm-text) !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--gm-blue) !important;
  display: inline-block !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}
#bcx-pdp .section h3 {
  font-size: 17px !important;
  font-weight: 800 !important;
  margin: 22px 0 10px !important;
  color: var(--gm-text) !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
#bcx-pdp .section h4,
#bcx-pdp .section h5 {
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 16px 0 8px !important;
  color: var(--gm-text) !important;
  text-transform: none !important;
}
#bcx-pdp .section p {
  color: var(--gm-text-mid) !important;
  margin-bottom: 14px !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}
#bcx-pdp .section p strong { color: var(--gm-text) !important; }
#bcx-pdp .section ul,
#bcx-pdp .section ol {
  margin: 10px 0 16px 22px !important;
  padding: 0 !important;
}
#bcx-pdp .section li {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: var(--gm-text-mid) !important;
  margin-bottom: 6px !important;
}

/* Highlight box "Antes da compra", blindar */
#bcx-pdp .highlight-box {
  background: var(--gm-blue-light) !important;
  border-left: 4px solid var(--gm-blue) !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  margin: 18px 0 22px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--gm-text) !important;
  display: block !important;
}
#bcx-pdp .highlight-box strong { color: var(--gm-blue-dark) !important; }

/* Mobile typography */
@media (max-width: 700px) {
  #bcx-pdp .section h2 {
    font-size: 17px !important;
    padding-bottom: 8px !important;
    margin-bottom: 14px !important;
  }
  #bcx-pdp .section h3 {
    font-size: 15px !important;
    margin-top: 18px !important;
  }
  #bcx-pdp .section p,
  #bcx-pdp .section li { font-size: 13.5px !important; }
  #bcx-pdp .highlight-box {
    padding: 14px 16px !important;
    font-size: 13.5px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BADGES (4 itens 2x2 desktop, 1 col mobile)
   ═══════════════════════════════════════════════════════════════════ */
#bcx-pdp .trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #FAFAFA;
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
}
#bcx-pdp .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gm-text-mid);
  line-height: 1.3;
}
#bcx-pdp .trust-badge svg {
  color: var(--gm-blue);
  flex-shrink: 0;
}
#bcx-pdp .trust-badge strong { color: var(--gm-text); font-weight: 800; }

/* ═══════════════════════════════════════════════════════════════════
   PAYMENT installments chip variant
   ═══════════════════════════════════════════════════════════════════ */
#bcx-pdp .payment-icon.installments {
  color: var(--gm-blue);
  border-color: var(--gm-blue);
  background: var(--gm-blue-light);
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ-LIST wrapper (compatibilidade com fallback FAQ fake)
   ═══════════════════════════════════════════════════════════════════ */
#bcx-pdp .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   Reviews note (placeholder + reviews summary)
   ═══════════════════════════════════════════════════════════════════ */
#bcx-pdp .reviews-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gm-text-soft);
  line-height: 1.55;
}
#bcx-pdp .reviews-note a {
  color: var(--gm-blue);
  font-weight: 700;
  text-decoration: none;
}
#bcx-pdp .reviews-note a:hover { text-decoration: underline; }

/* Mobile trust badges 1 col */
@media (max-width: 700px) {
  #bcx-pdp .trust-badges {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  #bcx-pdp .trust-badge { font-size: 12.5px; }
}
