/**
 * 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; }
/* overflow-x: clip em vez de hidden — clip NÃO quebra position:sticky de filhos
   (calderon 16/05/2026: topbar fixo na PDP estava subindo junto com scroll) */
html, body { overflow-x: clip; max-width: 100%; }
/* Fallback pra browsers antigos que não suportam clip — usa hidden mas perde sticky */
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
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;
  grid-template-areas:
    "gallery info-above"
    "gallery info-below";
  gap: 24px 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--gm-shadow-sm);
  margin-bottom: 24px;
}
.pdp-hero .gallery,
.pdp-hero .gallery-mobile { grid-area: gallery; }
.pdp-hero .info-above-fold { grid-area: info-above; align-self: start; }
.pdp-hero .info-below-fold { grid-area: info-below; align-self: start; }

/* ─── 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
   Só aparece após scroll (quando CTA principal sai da viewport).
   JS adiciona .is-visible em pdp.js via IntersectionObserver. */
.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);
  transform: translateY(100%);
  transition: transform 0.25s ease-out;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.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; }

/* ─── INFO-TAG MULTI-MODELO (chips lado a lado) ─── */
.info-tag-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.info-tag-multi .info-tag { margin-bottom: 0; }

/* ─── HERO COMPATIBILIDADE COMPACTA (multi-modelo) ─── */
.hero-compat {
  margin: 12px 0 14px;
  padding: 10px 12px;
  background: #E1F5EE;
  border-radius: 8px;
  border-left: 3px solid #0F6E56;
}
.hero-compat-label {
  font-size: 11px;
  font-weight: 600;
  color: #085041;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.hero-compat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.hero-compat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #085041;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 12px;
  border: 1px solid rgba(15, 110, 86, 0.15);
}
.hero-compat-chip strong { font-weight: 600; }
.hero-compat-chip-years {
  color: #5F5E5A;
  font-size: 11.5px;
}

/* ─── BLOCO COMPATIBILIDADE COM ANOS ─── */
.compat-section h2 { border-bottom-color: var(--gm-blue); }

/* Subtítulo do bloco multi-modelo */
.compat-sub {
  font-size: 14px;
  color: #5F5E5A;
  margin: -8px 0 16px;
}

/* Tabs por modelo */
.compat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid #E5E5E0;
  margin-bottom: 18px;
}
.compat-tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  color: #5F5E5A;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.compat-tab strong { font-weight: 500; }
.compat-tab:hover { color: var(--gm-text); }
.compat-tab.is-active {
  color: var(--gm-blue-dark);
  border-bottom-color: var(--gm-blue);
}
.compat-tab.is-active strong { font-weight: 600; }
.compat-tab-count {
  font-size: 11px;
  color: #B4B2A9;
  font-weight: 400;
}
.compat-tab.is-active .compat-tab-count { color: var(--gm-blue); }

.compat-panel { animation: bcxFadeIn .15s ease-out; }
.compat-panel[hidden] { display: none; }
@keyframes bcxFadeIn { from { opacity: 0; } to { opacity: 1; } }

.compat-no-range {
  padding: 16px;
  background: #F1EFE8;
  border-radius: 8px;
  color: #5F5E5A;
  font-size: 13px;
}

/* Mobile: tabs viram scroll horizontal */
@media (max-width: 640px) {
  .compat-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .compat-tab { white-space: nowrap; padding: 10px 14px; font-size: 13px; }
}

/* Multi-modelo: chips verdes acima do grid (Opção D) */
.compat-multi {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #E1F5EE;
  border-radius: 8px;
  border-left: 3px solid #0F6E56;
}
.compat-multi-label {
  font-size: 12px;
  font-weight: 600;
  color: #085041;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.compat-multi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.compat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #085041;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid rgba(15, 110, 86, 0.15);
}
.compat-chip strong { font-weight: 600; }
.compat-chip-years {
  color: #5F5E5A;
  font-size: 12px;
}
.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);
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 16px);
  align-items: center;
  gap: 4px;
  margin: 0;
}
.install-card.active .badge-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.install-card { overflow: visible; }
.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 mobile escondido (calderon 16/05/2026 — "← Voltar" sem função) */
  .breadcrumb-wrap, .breadcrumb { display: none !important; }

  .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: 3 colunas compactas no mobile (calderon 17/05/2026, "deixar os 3 blocos visíveis") */
  .install-section .install-intro { font-size: 13px; margin-bottom: 14px; }
  .install-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow: visible !important;
  }
  .install-card {
    flex: initial !important;
    padding: 12px 6px 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 10px;
  }
  .install-card .icon { width: 32px; height: 32px; margin: 0 auto 6px; }
  .install-card .icon svg { width: 18px; height: 18px; }
  .install-card .level { font-size: 9px; }
  .install-card .title { font-size: 12px; margin-bottom: 4px; }
  .install-card .desc { font-size: 10px; line-height: 1.35; min-height: 0; }
  /* Mobile: badge vira pílula INLINE dentro do card no topo, sem absolute
     (calderon 17/05/2026, evita corte por overflow do card pequeno) */
  .install-card .badge-active,
  #bcx-pdp .install-card .badge-active {
    font-size: 8px !important;
    padding: 2px 6px !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: inline-flex !important;
    margin: 0 auto 4px !important;
    max-width: 100% !important;
  }
  .install-card .badge-active svg { width: 10px; height: 10px; }
  .install-card .diff-bar { gap: 3px; margin-top: 6px; }
  .install-card .diff-dot { width: 6px; height: 6px; }

  /* 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; } /* JS controla .is-visible pra animar entrada após scroll */
}
@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 com info-above + info-below empilhados à direita */
#bcx-pdp .pdp-hero {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  grid-template-areas:
    "gallery info-above"
    "gallery info-below" !important;
  gap: 24px 36px !important;
}
#bcx-pdp .pdp-hero .gallery,
#bcx-pdp .pdp-hero .gallery-mobile { grid-area: gallery !important; }
#bcx-pdp .pdp-hero .info-above-fold { grid-area: info-above !important; align-self: start !important; }
#bcx-pdp .pdp-hero .info-below-fold { grid-area: info-below !important; align-self: start !important; }

/* Galeria desktop, força grid thumbs + main + alinhamento topo */
#bcx-pdp .gallery {
  display: grid !important;
  grid-template-columns: 80px 1fr !important;
  grid-auto-flow: column !important;
  gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
}
#bcx-pdp .gallery-thumbs {
  display: flex !important;
  flex-direction: column !important;
  width: 80px !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}
#bcx-pdp .gallery-main {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 380px !important;
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
#bcx-pdp .gallery-main img.product-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !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;
  position: relative !important;
  overflow: visible !important;
}
/* Força tag ESTE PRODUTO centralizada no top do card ativo (calderon 17/05/2026)
   especificidade alta porque #bcx-pdp .install-card sobrescrevia o position relativo.
   DESKTOP-ONLY (mobile usa badge inline static, ver @media max-width:700px acima) */
@media (min-width: 701px) {
  #bcx-pdp .install-card .badge-active {
    position: absolute !important;
    top: -11px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    width: max-content !important;
    max-width: calc(100% - 16px) !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: estrutura ML — info-above → foto → info-below (calderon 17/05/2026) */
@media (max-width: 700px) {
  #bcx-pdp .pdp-hero {
    display: flex !important;
    flex-direction: column !important;
    grid-template-areas: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  #bcx-pdp .info-above-fold { order: 1 !important; background: #fff; padding: 14px 16px 8px; }
  #bcx-pdp .gallery-mobile     { order: 2 !important; display: block !important; }
  #bcx-pdp .info-below-fold { order: 3 !important; background: #fff; padding: 4px 16px 18px; }
  #bcx-pdp .gallery { display: none !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;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX ZOOM PDP (calderon 17/05/2026)
   Modal full-screen ao clicar na imagem da galeria.
   ═══════════════════════════════════════════════════════════════════ */
.bcx-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease;
  cursor: zoom-out;
}
.bcx-lightbox.is-open { opacity: 1; }
.bcx-lightbox-stage {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bcx-lightbox-img {
  max-width: 92vw; max-height: 92vh;
  width: auto; height: auto;
  cursor: zoom-in;
  transition: transform 0.25s ease;
  transform-origin: center center;
  user-select: none; -webkit-user-drag: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bcx-lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.15s;
  z-index: 2;
}
.bcx-lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* Cursor zoom-in nas imagens da galeria pra indicar clicabilidade */
#bcx-pdp .gallery-main img.product-photo,
#bcx-pdp .gallery-mobile-slide img.product-photo {
  cursor: zoom-in;
}

/* ═══════════════════════════════════════════════════════════════════
   PDP ML style v2 (calderon 17/05/2026) — boosts de conversão
   ═══════════════════════════════════════════════════════════════════ */

/* Selos hero (Mais vendido + % OFF) acima dos chips de modelo */
.hero-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.3px;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase;
}
.hero-badge-best { background: #FEF3C7; color: #92400E; }
.hero-badge-best svg { color: #F59E0B; }
.hero-badge-sale { background: #047857; color: #fff; }

/* Estoque com bolinha verde pulse + urgência (psicologia escassez) */
.stock-row.stock-in {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #047857;
  margin: 10px 0 14px;
}
.stock-row.stock-in strong { color: #047857; font-weight: 700; }
.stock-row.stock-in span { color: #475569; font-weight: 500; }
.stock-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #10B981; border-radius: 50%;
  position: relative; flex-shrink: 0;
  animation: bcx-pulse 2s infinite;
}
@keyframes bcx-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.stock-urgency {
  color: #DC2626 !important; font-weight: 700 !important;
  background: #FEE2E2; padding: 2px 8px; border-radius: 4px;
  font-size: 12px;
}

/* Stack de 2 CTAs Mercado Livre style: Comprar Agora (verde) + Adicionar ao Carrinho (azul) */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cta-buy-now {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 18px;
  background: #047857;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.cta-buy-now:hover { background: #065F46; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(4,120,87,0.25); }
.cta-buy-now:active { transform: translateY(0); }
.cta-buy-now svg { flex-shrink: 0; }
/* "Adicionar ao carrinho" agora vira CTA secundário (visual menos forte que Comprar agora) */
.cta-stack .cta-buy {
  background: var(--gm-blue, #2563EB);
  /* mantém estilo existente .cta-buy */
}

/* Hero compat label com ícone check verde + ícone alinhado */
.hero-compat-label {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.hero-compat-label svg { color: #047857; flex-shrink: 0; }

/* Mobile: gap menor entre seções pra rolagem ficar fluida */
@media (max-width: 700px) {
  #bcx-pdp .hero-badges { margin-bottom: 8px; }
  #bcx-pdp .hero-badge { font-size: 10px; padding: 3px 9px; }
  #bcx-pdp .stock-row.stock-in { font-size: 12.5px; margin: 8px 0 12px; }
  #bcx-pdp .stock-urgency { font-size: 11px; padding: 2px 7px; }
  #bcx-pdp .cta-whatsapp-secondary { font-size: 13px; padding: 11px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PDP MOBILE polish (calderon 16/05/2026):
   1. Esconder filtros vehicle + barra de busca no topo (foco no produto)
      Continua aparecendo em home/categoria/busca/cart.
   2. Reduzir slide pra 80vw + peek 20vw na direita (mais visível que 88/12).
   3. Subir "balões" .info-tag/.hero-compat colando no slider, padding-top
      do .info reduzido pra colar nos dots.
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Esconde filtros vehicle + busca + tarja PIX SÓ na PDP single mobile.
   Usa .bcx-is-product (filter body_class no bcx-setup.php) pra não depender
   da classe nativa do WC, que pode variar com cache de plugin. */
@media (max-width: 860px) {
  body.bcx-is-product .gm-search-bar,
  body.bcx-is-product .breadcrumb-wrap,
  body.single-product .gm-search-bar,
  body.single-product .breadcrumb-wrap { display: none !important; }
}

/* 2 + 3. Slider mais estreito (peek maior) + balões colados no slider */
@media (max-width: 700px) {
  /* Slide mais estreito mostra mais da próxima foto */
  #bcx-pdp .gallery-mobile-slide { flex: 0 0 80vw !important; }
  #bcx-pdp .gallery-mobile-track { padding-right: 20vw !important; }

  /* Info cola no slider (sem padding-top excessivo) e mostra balões primeiro */
  #bcx-pdp .info {
    padding-top: 4px !important;
  }
  #bcx-pdp .gallery-mobile { padding-bottom: 4px !important; }
  #bcx-pdp .gallery-mobile-track { margin-bottom: 6px !important; }

  /* Balões (multi-modelo) maiores e mais visíveis no topo */
  #bcx-pdp .info > .info-tag,
  #bcx-pdp .info > .info-tag-multi {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }
  #bcx-pdp .info-tag {
    font-size: 11px !important;
    padding: 4px 11px !important;
    font-weight: 700 !important;
  }
  /* Hero compat verde também sobe um pouco */
  #bcx-pdp .hero-compat {
    margin: 8px 0 12px !important;
    padding: 8px 10px !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 antigo (substituído por .trust-grid do mockup) */
#bcx-pdp .trust-badges { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   3 ajustes finais (calderon 15/05/2026 manhã)
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Esconder setinhas nativas do input type=number (spinner duplo dentro do "1") */
#bcx-pdp .qty-input input[type="number"]::-webkit-inner-spin-button,
#bcx-pdp .qty-input input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
#bcx-pdp .qty-input input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

/* 2. Esconder "DESDE 1984" da galeria (pode confundir com ano do carro) */
#bcx-pdp .gallery-seal { display: none !important; }

/* 3. Esconder círculo oval de zoom no canto inferior direito da imagem */
#bcx-pdp .gallery-zoom { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════
   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; }
}

/* ═══════════════════════════════════════════════════════════════════
   Variações de produto (variable.php WC) — calderon 16/05/2026
   ═══════════════════════════════════════════════════════════════════ */
.bcx-pdp-info .variations_form,
.bcx-pdp-info .variations {
  margin: 16px 0;
  width: 100%;
}
.bcx-pdp-info table.variations {
  border: none;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.bcx-pdp-info table.variations tr {
  display: block;
  margin-bottom: 12px;
}
.bcx-pdp-info table.variations td,
.bcx-pdp-info table.variations th {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
}
.bcx-pdp-info table.variations th.label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 6px;
  padding-bottom: 4px;
}
.bcx-pdp-info table.variations td.value {
  position: relative;
}
/* Select estilizado custom (look BCX) */
.bcx-pdp-info table.variations select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 12px 38px 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%235BB0E5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 14px center;
  cursor: pointer;
  min-height: 48px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bcx-pdp-info table.variations select:hover {
  border-color: #5BB0E5;
}
.bcx-pdp-info table.variations select:focus {
  outline: none;
  border-color: #5BB0E5;
  box-shadow: 0 0 0 3px rgba(91,176,229,0.15);
}
.bcx-pdp-info .reset_variations {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #94A3B8;
  text-decoration: underline;
}
.bcx-pdp-info .reset_variations:hover { color: #DC2626; }

/* Container preço/stock da variação selecionada */
.bcx-pdp-info .woocommerce-variation {
  margin: 12px 0;
  padding: 12px 14px;
  background: #F8FAFC;
  border-left: 3px solid #5BB0E5;
  border-radius: 6px;
}
.bcx-pdp-info .woocommerce-variation-price {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
}
.bcx-pdp-info .woocommerce-variation-availability {
  font-size: 13px;
  font-weight: 600;
  color: #047857;
  margin-top: 4px;
}
.bcx-pdp-info .woocommerce-variation-availability .out-of-stock {
  color: #DC2626;
}
.bcx-pdp-info .woocommerce-variation-description {
  font-size: 13px;
  color: #475569;
  margin-top: 8px;
  line-height: 1.5;
}

/* Botão fica disabled visualmente até variação ser selecionada */
.bcx-pdp-info .variations_form .single_add_to_cart_button.disabled,
.bcx-pdp-info .variations_form .single_add_to_cart_button.wc-variation-selection-needed {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOCO "APROVEITE COMBO" v2.0 — upsell com checkbox + variation + bulk add
   Substitui o legacy .cross-sell-section. (calderon 17/05/2026)
   ═══════════════════════════════════════════════════════════════════ */
.bcx-cj-section {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 20px 0;
}
.bcx-cj-head {
  border-bottom: 3px solid #10B981;
  padding-bottom: 10px;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.bcx-cj-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #D1FAE5; color: #047857;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px;
  padding: 4px 8px; border-radius: 4px; text-transform: uppercase;
}
.bcx-cj-badge svg { color: currentColor; }
.bcx-cj-title {
  font-size: 19px; font-weight: 800;
  color: #0F172A; letter-spacing: -0.3px;
  line-height: 1.3; margin: 0;
}
.bcx-cj-title em { font-style: normal; color: #047857; font-weight: 900; }
.bcx-cj-sub { font-size: 13px; color: #64748B; margin: 0 0 16px; }

.bcx-cj-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 1100px) { .bcx-cj-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px)  { .bcx-cj-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .bcx-cj-grid { grid-template-columns: repeat(2, 1fr); } }

.bcx-cj-card {
  position: relative;
  border: 1.5px solid #E2E8F0; border-radius: 10px;
  background: #fff; padding: 14px 12px 12px;
  transition: all .15s ease;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  min-width: 0;
}
/* Info wrapper (envolve tag+name+var+price+view). Desktop: column flex transparente.
   Mobile: vira a coluna direita do card flex-row (foto à esquerda). */
.bcx-cj-info {
  display: flex; flex-direction: column; gap: 8px;
  flex: 1; min-width: 0;
}
.bcx-cj-card.is-checked {
  border-color: #10B981; background: #F0FDF7;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.1);
}
.bcx-cj-card.is-locked {
  cursor: default; border-color: #047857; background: #ECFDF5;
  box-shadow: 0 0 0 2px rgba(4,120,87,0.15);
}
.bcx-cj-card.needs-variation { border-color: #F59E0B; background: #FFFBEB; }
.bcx-cj-card.is-unavailable {
  opacity: 0.55; cursor: not-allowed; background: #F8FAFC;
}
.bcx-cj-card:hover:not(.is-locked):not(.is-unavailable) { border-color: #5BB0E5; }
.bcx-cj-card.is-checked:hover:not(.is-locked) { border-color: #047857; }

.bcx-cj-check {
  position: absolute; top: 8px; left: 8px;
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid #CBD5E1; background: #fff;
  display: grid; place-items: center;
  transition: all .12s ease; z-index: 2;
  color: transparent;
}
.bcx-cj-card.is-checked .bcx-cj-check { background: #10B981; border-color: #10B981; color: #fff; }
.bcx-cj-card.is-locked .bcx-cj-check { background: #047857; border-color: #047857; color: #fff; }

.bcx-cj-tag {
  position: absolute; top: 8px; right: 8px;
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.5px;
  padding: 3px 7px; border-radius: 4px; text-transform: uppercase;
  color: #fff;
  max-width: calc(100% - 44px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bcx-cj-tag.bcx-tag-main      { background: #047857; }
.bcx-cj-tag.bcx-tag-popular   { background: #047857; }
.bcx-cj-tag.bcx-tag-also      { background: #2563EB; }
.bcx-cj-tag.bcx-tag-bestseller{ background: #EA580C; }
.bcx-cj-tag.bcx-tag-var       { background: #F59E0B; }

.bcx-cj-thumb {
  width: 100%; aspect-ratio: 1/1;
  background: #F1F5F9; border-radius: 8px;
  display: grid; place-items: center;
  color: #94A3B8; overflow: hidden;
}
.bcx-cj-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bcx-cj-name {
  font-size: 12px; font-weight: 600; color: #0F172A;
  line-height: 1.35; min-height: 32px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcx-cj-variation-wrap { position: relative; }
.bcx-cj-variation-label {
  font-size: 10px; color: #B45309; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.4px;
  margin-bottom: 3px; display: block;
}
.bcx-cj-variation {
  width: 100%; padding: 7px 28px 7px 8px;
  border: 1.5px solid #F59E0B; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #0F172A;
  background: #fff; font-family: inherit; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B45309' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; background-size: 14px;
}
.bcx-cj-card.is-checked .bcx-cj-variation { border-color: #10B981; }
.bcx-cj-card.is-checked .bcx-cj-variation-label { color: #047857; }
.bcx-cj-pulse { animation: bcxCjPulse 0.6s ease 2; }
@keyframes bcxCjPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(245,158,11,0.15); }
  50%     { box-shadow: 0 0 0 4px rgba(245,158,11,0.45); }
}
.bcx-cj-toast {
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  margin-bottom: 8px; background: #B45309; color: #fff;
  padding: 6px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  opacity: 0; transition: opacity .2s; pointer-events: none;
  z-index: 10;
}
.bcx-cj-toast::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #B45309;
}
.bcx-cj-toast.show { opacity: 1; }

.bcx-cj-unavail-msg {
  font-size: 11.5px; color: #94A3B8; font-style: italic;
  padding: 6px 0;
}

.bcx-cj-price-row { display: flex; flex-direction: column; gap: 2px; }
.bcx-cj-price { font-size: 13.5px; font-weight: 800; color: #0F172A; font-variant-numeric: tabular-nums; }
.bcx-cj-pix { font-size: 11px; color: #047857; font-weight: 600; font-variant-numeric: tabular-nums; }
.bcx-cj-view {
  font-size: 10.5px; color: #2563EB; text-decoration: underline;
  font-weight: 600; margin-top: auto;
}

.bcx-cj-foot {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  background: #F8FAFC; border: 1px dashed #E2E8F0;
  border-radius: 10px; padding: 12px 16px;
}
.bcx-cj-count { font-size: 12.5px; color: #64748B; font-weight: 600; line-height: 1.3; }
.bcx-cj-count-num { color: #0F172A; font-weight: 800; display: block; font-size: 14px; }
.bcx-cj-totals { text-align: center; }
.bcx-cj-total-cash {
  display: block; font-size: 12.5px; color: #64748B;
  text-decoration: line-through; font-variant-numeric: tabular-nums;
}
.bcx-cj-total-pix {
  display: block; font-size: 22px; font-weight: 900; color: #047857;
  font-variant-numeric: tabular-nums; letter-spacing: -0.4px; line-height: 1.1;
}
.bcx-cj-eco {
  display: block; font-size: 10.5px; color: #047857;
  font-weight: 700; margin-top: 2px;
}
.bcx-cj-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; background: #10B981; color: #fff;
  border: 0; border-radius: 10px;
  font-size: 14.5px; font-weight: 900; cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(16,185,129,0.32);
  transition: all .15s ease; white-space: nowrap;
  font-family: inherit;
}
.bcx-cj-cta:hover { background: #047857; box-shadow: 0 6px 18px rgba(16,185,129,0.4); }
.bcx-cj-cta:active { transform: translateY(1px); }
.bcx-cj-cta:disabled { background: #CBD5E1; box-shadow: none; cursor: not-allowed; color: #64748B; }
.bcx-cj-cta.is-loading { opacity: 0.7; cursor: progress; }
.bcx-cj-cta svg { color: currentColor; }

/* ─── MOBILE ≤640px: flex row simples + foto full-height (calderon 17/05/2026 v3) ── */
@media (max-width: 640px) {
  /* Card vira flex ROW (foto à esquerda, info à direita) */
  .bcx-cj-card {
    flex-direction: row !important;
    align-items: stretch;
    gap: 14px;
    padding: 12px;
    min-height: 120px;
  }

  /* Foto ocupa altura cheia do card, largura fixa */
  .bcx-cj-card .bcx-cj-thumb {
    width: 110px;
    flex-shrink: 0;
    aspect-ratio: unset !important;
    align-self: stretch;
    height: auto;
    min-height: 110px;
    background: #F8FAFC;
    border-radius: 8px;
  }
  .bcx-cj-card .bcx-cj-thumb img {
    object-fit: contain !important;
    padding: 6px;
    width: 100%; height: 100%;
  }

  /* Info: column, ocupa restante, deixa espaço pra check à direita */
  .bcx-cj-info {
    gap: 5px;
    padding-right: 40px;
    justify-content: center;
  }

  /* Tag dentro do info, no topo, fluxo normal (não absolute) */
  .bcx-cj-info > .bcx-cj-tag {
    position: static;
    align-self: flex-start;
    width: fit-content;
    font-size: 9px;
    letter-spacing: 0.4px;
    padding: 3px 7px;
    margin: 0;
    max-width: 100%;
  }

  /* Nome maior, mais legível */
  .bcx-cj-card .bcx-cj-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    min-height: 0;
    -webkit-line-clamp: 2;
    margin: 2px 0;
  }

  /* Preço com hierarquia: Pix grande verde + cash riscado pequeno */
  .bcx-cj-card .bcx-cj-price-row {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
  }
  .bcx-cj-card .bcx-cj-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
  }
  .bcx-cj-card .bcx-cj-pix {
    font-size: 15px;
    font-weight: 900;
    color: #047857;
    letter-spacing: -0.2px;
  }

  /* "Ver detalhes" pequeno embaixo, com seta */
  .bcx-cj-card .bcx-cj-view {
    font-size: 11px;
    color: #2563EB;
    text-decoration: underline;
    width: fit-content;
    margin-top: 2px;
  }
  .bcx-cj-card .bcx-cj-view::after { content: ' ›'; font-weight: 700; }

  /* Check absolute no centro vertical da direita do card */
  .bcx-cj-card .bcx-cj-check {
    top: 50% !important;
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%);
    width: 30px; height: 30px;
    border-radius: 8px;
    border-width: 2px;
  }

  /* Variação ocupa linha cheia dentro do info */
  .bcx-cj-card .bcx-cj-variation-wrap { margin: 2px 0; }

  /* ── HERO (produto principal): mesma estrutura, mas cinza, foto branca, sem check ── */
  .bcx-cj-card.is-locked {
    background: #F1F5F9;
    border-color: #CBD5E1;
    box-shadow: none;
    cursor: default;
  }
  .bcx-cj-card.is-locked .bcx-cj-thumb {
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  }
  .bcx-cj-card.is-locked .bcx-cj-info {
    padding-right: 0; /* sem check, info usa toda a largura */
  }
  .bcx-cj-card.is-locked .bcx-cj-tag.bcx-tag-main {
    background: #475569;
    color: #fff;
    font-size: 9px;
  }
  .bcx-cj-card.is-locked .bcx-cj-pix {
    font-size: 17px;
  }

  /* ── Cabeçalho do bloco mais compacto ── */
  .bcx-cj-section { padding: 16px 14px; margin: 16px 0; border-radius: 12px; }
  .bcx-cj-head { padding-bottom: 12px; margin-bottom: 4px; gap: 10px; }
  .bcx-cj-badge { font-size: 9.5px; padding: 4px 7px; }
  .bcx-cj-title { font-size: 16px; line-height: 1.25; }
  .bcx-cj-sub { font-size: 12px; margin: 6px 0 16px; line-height: 1.5; color: #64748B; }

  /* Grid 1 coluna empilhada */
  .bcx-cj-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }

  /* ── Footer empilhado vertical ── */
  .bcx-cj-foot {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
  }
  .bcx-cj-count {
    text-align: center;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .bcx-cj-count-num { font-size: 13px; }
  .bcx-cj-total-cash { font-size: 12px; }
  .bcx-cj-total-pix { font-size: 22px; letter-spacing: -0.5px; }
  .bcx-cj-eco { font-size: 11px; margin-top: 3px; }
  .bcx-cj-cta {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 4px;
  }
}

/* PURGE legacy media query antigo abaixo (mantido inerte via min-width 99999px que nunca dispara) */
@media (min-width: 99999px) {
  .bcx-cj-section { padding: 16px 14px; margin: 16px 0; border-radius: 12px; }
  .bcx-cj-head { padding-bottom: 12px; margin-bottom: 4px; gap: 10px; }
  .bcx-cj-badge { font-size: 9.5px; padding: 4px 7px; }
  .bcx-cj-title { font-size: 16px; line-height: 1.25; }
  .bcx-cj-sub { font-size: 12px; margin: 6px 0 16px; line-height: 1.5; color: #64748B; }

  /* Grid vira 1 coluna empilhada com gap respirável */
  .bcx-cj-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }

  /* ═══════════════════════════════════════════════════════════════
     HERO (produto principal): foto 96px full-height + info ao lado
     Fundo cinza neutro, sem peso visual competindo com upsells.
     ═══════════════════════════════════════════════════════════════ */
  .bcx-cj-card.is-locked {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    box-shadow: none;
    cursor: default;
    align-items: stretch;
    border-radius: 10px;
  }
  .bcx-cj-card.is-locked .bcx-cj-thumb {
    width: 96px;
    height: 96px;
    aspect-ratio: unset;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  }
  .bcx-cj-card.is-locked .bcx-cj-thumb img {
    object-fit: contain;
    padding: 6px;
  }
  .bcx-cj-card.is-locked .bcx-cj-tag.bcx-tag-main {
    position: static;
    align-self: flex-start;
    background: #475569;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 3px 7px;
    margin-bottom: 6px;
    width: fit-content;
  }
  .bcx-cj-card.is-locked .bcx-cj-name {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
    min-height: 0;
    margin-bottom: 8px;
    -webkit-line-clamp: 3;
  }
  .bcx-cj-card.is-locked .bcx-cj-price-row {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
  }
  .bcx-cj-card.is-locked .bcx-cj-price {
    text-decoration: line-through;
    opacity: 0.55;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
  }
  .bcx-cj-card.is-locked .bcx-cj-pix {
    font-size: 16px;
    font-weight: 900;
    color: #047857;
    letter-spacing: -0.3px;
  }
  /* Hero usa flex column pra distribuir verticalmente */
  .bcx-cj-card.is-locked > *:not(.bcx-cj-thumb):not(.bcx-cj-tag) {
    /* nada extra, defaults do grid funcionam */
  }

  /* ═══════════════════════════════════════════════════════════════
     ROWS (upsells): foto FULL-HEIGHT + info expandida + check direito
     Padrão ML/Amazon. Linha inteira clicável (≥88px de altura).
     ═══════════════════════════════════════════════════════════════ */
  .bcx-cj-card:not(.is-locked) {
    display: grid;
    grid-template-columns: 88px 1fr 36px;
    gap: 0 14px;
    padding: 10px;
    align-items: stretch;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  /* Foto ocupa coluna 1, altura cheia do card */
  .bcx-cj-card:not(.is-locked) .bcx-cj-thumb {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 88px;
    height: 100%;
    min-height: 88px;
    aspect-ratio: unset;
    align-self: stretch;
    background: #F8FAFC;
    border-radius: 6px;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-thumb img {
    object-fit: contain;
    padding: 6px;
  }
  /* Tag, nome, preço, variação, view: tudo na coluna mid */
  .bcx-cj-card:not(.is-locked) > .bcx-cj-tag {
    position: static;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    width: fit-content;
    margin-bottom: 4px;
    font-size: 9px;
    padding: 3px 6px;
    letter-spacing: 0.4px;
    max-width: 100%;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-name {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: #0F172A;
    min-height: 0;
    margin: 0 0 6px;
    -webkit-line-clamp: 2;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-variation-wrap {
    grid-column: 2;
    grid-row: 3;
    margin: 4px 0;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-price-row {
    grid-column: 2;
    grid-row: 4;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-price {
    text-decoration: line-through;
    opacity: 0.55;
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-pix {
    font-size: 14px;
    font-weight: 900;
    color: #047857;
    letter-spacing: -0.2px;
  }
  /* "Ver detalhes" vira link inline pequeno, depois do preço */
  .bcx-cj-card:not(.is-locked) .bcx-cj-view {
    grid-column: 2;
    grid-row: 5;
    text-align: left;
    margin-top: 4px;
    font-size: 11px;
    color: #2563EB;
    text-decoration: underline;
    width: fit-content;
  }
  .bcx-cj-card:not(.is-locked) .bcx-cj-view::after {
    content: ' ›';
    font-weight: 700;
  }
  /* Checkbox vira coluna direita, vertical-center */
  .bcx-cj-card:not(.is-locked) .bcx-cj-check {
    position: static;
    grid-column: 3;
    grid-row: 1 / -1;
    width: 30px;
    height: 30px;
    align-self: center;
    justify-self: center;
    border-radius: 8px;
    border-width: 2px;
  }
  .bcx-cj-card:not(.is-locked).is-checked .bcx-cj-check {
    background: #10B981;
    border-color: #10B981;
  }

  /* Estado "needs-variation": borda + variação selector destacados */
  .bcx-cj-card.needs-variation .bcx-cj-variation {
    padding: 8px 28px 8px 10px;
    font-size: 12px;
    font-weight: 600;
  }

  /* ═══════════════════════════════════════════════════════════════
     FOOTER (totais + CTA): empilhado, centralizado, generoso
     ═══════════════════════════════════════════════════════════════ */
  .bcx-cj-foot {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
  }
  .bcx-cj-count {
    text-align: center;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .bcx-cj-count-num { font-size: 13px; }
  .bcx-cj-totals { padding: 4px 0; }
  .bcx-cj-total-cash { font-size: 12px; }
  .bcx-cj-total-pix { font-size: 22px; letter-spacing: -0.5px; }
  .bcx-cj-eco { font-size: 11px; margin-top: 3px; }
  .bcx-cj-cta {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 4px;
  }
}

/* Refinamento ≤380px (iPhone SE etc): foto e info menores */
@media (max-width: 380px) {
  .bcx-cj-section { padding: 14px 12px; }
  .bcx-cj-card { gap: 10px; padding: 10px; }
  .bcx-cj-card .bcx-cj-thumb { width: 92px !important; min-height: 92px !important; }
  .bcx-cj-card .bcx-cj-name { font-size: 12.5px; }
  .bcx-cj-card .bcx-cj-pix { font-size: 14px; }
  .bcx-cj-card.is-locked .bcx-cj-pix { font-size: 16px; }
  .bcx-cj-info { padding-right: 36px; gap: 4px; }
  .bcx-cj-card .bcx-cj-check { right: 8px !important; width: 26px; height: 26px; }
}
