/* ===== WePink clone — grid responsivo + drawer proprio =====
   Cor de marca: #ff0080  */
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 900;
  font-display: swap; src: url("poppins-900.woff2") format("woff2");
}
:root { --wp-pink: #ff0080; --wp-ink: #000; }

/* ---------- GRID DA COLECAO: 2 col (mobile) / 3 col (desktop) ---------- */
#gallery-layout-container.vtex-search-result-3-x-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  padding: 16px 12px 32px !important;
  margin: 0 !important;
}
@media (min-width: 900px) {
  #gallery-layout-container.vtex-search-result-3-x-gallery {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 24px !important;
  }
}
/* cada item vira um card de ecommerce */
#gallery-layout-container .vtex-search-result-3-x-galleryItem {
  flex-basis: auto !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
}
#gallery-layout-container .vtex-product-summary-2-x-container {
  max-width: none !important;
  width: 100% !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding: 8px 8px 12px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .18s ease, transform .18s ease;
}
#gallery-layout-container .vtex-product-summary-2-x-container:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
/* imagem menor pra caber 2 por linha */
#gallery-layout-container .vtex-product-summary-2-x-imageNormal,
#gallery-layout-container .vtex-product-summary-2-x-image {
  height: auto !important;
  max-height: 200px !important;
  width: 100% !important;
  object-fit: contain !important;
}
@media (min-width: 900px) {
  #gallery-layout-container .vtex-product-summary-2-x-imageNormal,
  #gallery-layout-container .vtex-product-summary-2-x-image { max-height: 280px !important; }
}
/* nome do produto compacto */
#gallery-layout-container .vtex-product-summary-2-x-nameContainer {
  padding: 8px 4px 4px !important;
  min-height: 54px;
  align-items: flex-start !important;
}
#gallery-layout-container .vtex-product-summary-2-x-brandName {
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 600;
}
@media (min-width: 900px) {
  #gallery-layout-container .vtex-product-summary-2-x-brandName { font-size: 15px !important; }
}
/* frase custom menor no mobile */
#gallery-layout-container .wepink-store-theme-6-x-saCustomFieldsText {
  font-size: 11px !important; line-height: 1.3 !important; color: #666;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; padding: 0 4px;
}
/* precos */
#gallery-layout-container .vtex-product-price-1-x-listPriceValue { font-size: 11px !important; }
#gallery-layout-container .vtex-product-price-1-x-sellingPriceValue {
  font-size: 16px !important; font-weight: 700; color: var(--wp-ink);
}
#gallery-layout-container .vtex-product-price-1-x-installments { font-size: 10px !important; color: #777; }
/* badge/flag menor */
#gallery-layout-container .flag-item-wrapper { top: 8px !important; margin: 4px !important; }
#gallery-layout-container .flag-item-wrapper img { max-width: 46px !important; }
/* DOIS botoes lado a lado (igual ao original): "Comprar" largo + "+" quadrado */
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-button-product-summary { display: flex !important; }
#gallery-layout-container .vtex-flex-layout-0-x-flexRowContent--add-to-cart-button-product-summary {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  align-items: center !important;
}
/* zera altura herdada dos wrappers intermediarios pra nao esticar o "+" */
#gallery-layout-container .vtex-flex-layout-0-x-flexRowContent--add-to-cart-button-product-summary .vtex-flex-layout-0-x-flexCol,
#gallery-layout-container .vtex-flex-layout-0-x-flexRowContent--add-to-cart-button-product-summary .vtex-flex-layout-0-x-flexColChild {
  height: auto !important;
}
/* Comprar ocupa o espaco restante */
#gallery-layout-container .vtex-flex-layout-0-x-flexRowContent--add-to-cart-button-product-summary > .vtex-flex-layout-0-x-stretchChildrenWidth:first-child {
  flex: 1 1 auto !important;
  width: auto !important;
  margin: 0 !important;
}
/* botao secundario (branco com borda rosa) no espaco reservado a direita */
#gallery-layout-container .vtex-flex-layout-0-x-flexRowContent--add-to-cart-button-product-summary > .vtex-flex-layout-0-x-stretchChildrenWidth:last-child {
  flex: 0 0 62px !important;
  width: 62px !important;
  margin: 0 !important;
}
/* base comum dos dois botoes: altura e centralizacao */
#gallery-layout-container .vtex-flex-layout-0-x-flexRow--add-to-cart-button-product-summary .vtex-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  padding: 0 !important;
}
#gallery-layout-container .vtex-flex-layout-0-x-flexRow--add-to-cart-button-product-summary .vtex-button__label {
  line-height: 1 !important;
  padding: 0 !important;
}
/* PRIMEIRO botao = "Comprar" rosa cheio, texto branco */
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-go-to-product-page .vtex-button {
  background: var(--wp-pink) !important;
  border: 1.5px solid var(--wp-pink) !important;
  color: #fff !important;
}
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-go-to-product-page .vtex-add-to-cart-button-0-x-buttonText,
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-go-to-product-page .vtex-button__label {
  color: #fff !important;
}
/* SEGUNDO botao = branco, borda rosa, "+" e carrinho rosa (igual ao original) */
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-button-product-summary .vtex-button {
  background: #fff !important;
  border: 1.5px solid var(--wp-pink) !important;
  color: var(--wp-pink) !important;
}
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-button-product-summary .vtex-add-to-cart-button-0-x-buttonText {
  color: var(--wp-pink) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}
/* o icone de carrinho ja vem do tema (a direita do "+"); so centralizar */
#gallery-layout-container .vtex-flex-layout-0-x-flexCol--add-to-cart-button-product-summary .vtex-add-to-cart-button-0-x-buttonDataContainer {
  align-items: center !important;
}

/* ---------- ANNOUNCEMENT BAR (carrossel proprio) ---------- */
[class*="flexRow--t-header-topbar"] { background: var(--wp-pink) !important; }
.wp-topbar {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  max-width: 640px; margin: 0 auto; padding: 9px 8px; color: #fff;
}
.wp-tb-viewport { flex: 1 1 auto; overflow: hidden; }
.wp-tb-track { display: flex; transition: transform .45s ease; }
.wp-tb-slide {
  flex: 0 0 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: clamp(11px, 3.2vw, 14px); font-weight: 600; color: #fff; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 4px;
}
.wp-tb-ic { display: inline-flex; flex: 0 0 auto; }
.wp-tb-ic svg { width: 16px; height: 16px; display: block; }
.wp-tb-txt { overflow: hidden; text-overflow: ellipsis; }
.wp-tb-arrow {
  flex: 0 0 auto; background: none; border: 0; padding: 4px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; opacity: .9;
}
.wp-tb-arrow svg { width: 18px; height: 18px; }
.wp-tb-arrow:active { opacity: .6; }

/* ========== CORRECOES PDP (Fase 7) ========== */
/* galeria propria (track deslizante) */
.wp-gallery { width: 100%; padding: 8px 0 4px; }
.wp-gal-viewport { width: 100%; overflow: hidden; touch-action: pan-y; }
.wp-gal-track { display: flex; will-change: transform; }
.wp-gal-slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; }
.wp-gal-slide img { width: 100%; max-width: 460px; height: auto; object-fit: contain; aspect-ratio: 1/1; -webkit-user-drag: none; user-select: none; }
.wp-gal-dots { display: flex; gap: 7px; justify-content: center; padding: 12px 0 2px; }
.wp-gal-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #d8d8d8; padding: 0; cursor: pointer; transition: all .2s; }
.wp-gal-dot.is-active { background: var(--wp-pink); width: 22px; border-radius: 5px; }

/* breadcrumb proprio */
.wp-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 10px 18px 2px; font-size: 12px; color: #8f8f8f; }
.wp-breadcrumb a { color: #8f8f8f; text-decoration: none; }
.wp-breadcrumb a:hover { color: var(--wp-pink); }
.wp-breadcrumb .wp-bc-cur { color: var(--wp-pink); }

/* estrelas proprias */
.wp-stars { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; }
.wp-stars-wrap { position: relative; display: inline-block; line-height: 0; }
.wp-stars-bg, .wp-stars-fg { display: inline-flex; }
.wp-stars-bg svg { fill: #e0e0e0; }
.wp-stars-fg { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }
.wp-stars-fg svg { fill: #ffb400; }
.wp-stars-wrap svg { width: 16px; height: 16px; }
.wp-stars-txt { font-size: 13px; color: #666; }
.wp-stars-txt b { color: var(--wp-ink); }

/* tabs proprias (Descricao/Notas/Modo de usar) */
.wp-desc { padding: 8px 18px 20px; }
.wp-desc-tabs { display: flex; gap: 6px; border-bottom: 1px solid #eee; margin-bottom: 16px; }
.wp-desc-tab { flex: 1; background: none; border: 0; border-bottom: 2px solid transparent; padding: 12px 4px; font-size: 14px; font-weight: 600; color: #999; cursor: pointer; }
.wp-desc-tab.is-on { color: var(--wp-pink); border-bottom-color: var(--wp-pink); font-weight: 700; }
.wp-desc-pane { display: none; font-size: 14px; line-height: 1.6; color: #555; }
.wp-desc-pane.is-on { display: block; }
.wp-desc-pane p { margin: 0 0 10px; }
.wp-desc-pane ul { padding-left: 18px; margin: 0; }
.wp-desc-pane li { margin-bottom: 6px; }
/* o conteudo capturado pode trazer cor branca (era sobre fundo rosa) -> forca legivel */
.wp-desc-pane [class*="white-color"], .wp-desc-pane * { color: inherit !important; }
.wp-desc-pane [class*="wrapper"], .wp-desc-pane [class*="container"] { background: transparent !important; padding: 0 !important; }

/* compre junto */
.wp-bt { padding: 22px 18px; border-top: 8px solid #f5f5f5; }
.wp-bt-title { font-size: 16px; font-weight: 800; color: var(--wp-pink); margin: 0 0 16px; }
.wp-bt-row { display: flex; align-items: center; gap: 10px; }
.wp-bt-prod { flex: 1; text-align: center; }
.wp-bt-prod img { width: 100%; max-width: 120px; height: auto; object-fit: contain; background: #faf7f8; border-radius: 8px; }
.wp-bt-prod span { display: block; font-size: 11px; color: #555; margin-top: 6px; line-height: 1.2; }
.wp-bt-plus { font-size: 22px; color: #bbb; font-weight: 300; }
.wp-bt-foot { margin-top: 16px; text-align: center; }
.wp-bt-total { font-size: 14px; color: #444; margin-bottom: 10px; }
.wp-bt-total b { color: var(--wp-ink); font-size: 16px; }
.wp-bt-btn { width: 100%; background: var(--wp-pink); color: #fff; border: 0; border-radius: 8px; padding: 14px; font-size: 14px; font-weight: 800; text-transform: uppercase; cursor: pointer; }

/* avaliacoes + ranking + carrossel */
.wp-reviews { padding: 26px 0; border-top: 8px solid #f5f5f5; }
/* ranking (estilo pagina oficial) */
.wp-rk { text-align: center; padding: 0 18px 6px; }
.wp-rk-head { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.wp-rk-num { font-size: 46px; font-weight: 800; color: var(--wp-ink); letter-spacing: -1px; }
.wp-rk-of { font-size: 16px; color: #999; font-weight: 600; }
.wp-rk-stars { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 4px 0 18px; }
.wp-rk-stars .wp-stars-wrap svg { width: 20px; height: 20px; }
.wp-rk-cnt { font-size: 13px; color: #999; }
.wp-rk-bars { max-width: 300px; margin: 0 auto; }
.wp-rk-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.wp-rk-lbl { display: inline-flex; align-items: center; gap: 2px; font-size: 12px; color: #777; width: 22px; }
.wp-rk-lbl svg { width: 12px; height: 12px; }
.wp-rk-bar { flex: 1; height: 9px; background: #eee; border-radius: 6px; overflow: hidden; }
.wp-rk-fill { display: block; height: 100%; background: #ffb400; border-radius: 6px; }
.wp-rk-base { font-size: 12px; color: #999; margin: 20px 0 10px; }
.wp-rk-ra { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #666; }
.wp-rk-ra svg { width: 18px; height: 18px; }
.wp-rk-ra-b { color: #333; font-weight: 800; }
.wp-rk-ra-a { color: #8bc63f; font-weight: 800; }
/* carrossel de cards */
.wp-rv-carousel { display: flex; gap: 12px; overflow-x: auto; padding: 22px 18px 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.wp-rv-carousel::-webkit-scrollbar { height: 0; }
.wp-rv-card { flex: 0 0 78%; max-width: 280px; scroll-snap-align: start; border: 1px solid #eee; border-radius: 12px; padding: 14px; background: #fff; }
.wp-rv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.wp-rv-name { font-size: 14px; font-weight: 700; color: var(--wp-ink); }
.wp-rv-stars { color: #ffb400; font-size: 13px; letter-spacing: 1px; }
.wp-rv-stars .wp-rv-off { color: #e0e0e0; }
.wp-rv-txt { font-size: 13px; color: #555; line-height: 1.5; margin: 0; }

/* espacamento esquerdo do hero (titulo, subtitulo, estrelas colados na borda) */
.wp-stars { padding-left: 16px; }
.wp-reviews .wp-rv-carousel { padding-left: 16px; }
.wp-reviews .wp-rv-carousel .wp-rv-card:first-child { margin-left: 0; }
[class*="flexColChild--pdp-name"], [class*="flexCol--pdp-name"],
[class*="flexRowContent--product-name"] { padding-left: 16px !important; padding-right: 16px !important; }
/* garante que o bloco inteiro de nome/preco/estrelas tenha respiro */
[class*="vtex-store-components-3-x-productNameContainer"] { padding-left: 16px; }

/* ---------- MENU HAMBURGUER (layout oficial) ---------- */
#wp-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 2147483040; }
#wp-menu-overlay.open { opacity: 1; visibility: visible; }
#wp-menu { position: fixed; top: 0; left: 0; height: 100%; width: 88%; max-width: 360px; background: #fff; transform: translateX(-100%); transition: transform .28s ease; z-index: 2147483041; display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(0,0,0,.15); overflow-y: auto; }
#wp-menu.open { transform: translateX(0); }

/* topo rosa */
.wpm-top { background: var(--wp-pink); color: #fff; padding: 16px 18px 18px; }
.wpm-top-head { display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 18px; }
.wpm-logo { font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -.5px; }
.wpm-close { position: absolute; right: 0; top: 0; background: none; border: 0; cursor: pointer; color: #fff; padding: 2px; }
.wpm-close svg { width: 22px; height: 22px; }
.wpm-quick { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 16px; }
.wpm-q { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; text-decoration: none; font-size: 11px; text-align: center; line-height: 1.15; }
.wpm-q-ic svg { width: 22px; height: 22px; }
.wpm-search { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 24px; padding: 11px 16px; }
.wpm-search .wpm-s-ic { color: var(--wp-pink); display: inline-flex; }
.wpm-search .wpm-s-ic svg { width: 18px; height: 18px; }
.wpm-search input { flex: 1; border: 0; outline: 0; font-size: 14px; color: #333; background: none; }

/* ver todos */
.wpm-all { display: flex; align-items: center; justify-content: flex-end; gap: 4px; padding: 16px 20px 12px; font-size: 13px; color: var(--wp-ink); text-decoration: underline; font-weight: 500; }
.wpm-all svg { width: 14px; height: 14px; stroke-width: 2.4; }

/* categorias */
.wpm-nav { padding: 0 0 20px; }
.wpm-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; font-size: 15px; color: #3d3d3d; text-decoration: none; border-top: 1px solid #f0f0f0; }
.wpm-item:last-child { border-bottom: 1px solid #f0f0f0; }
.wpm-ic { color: var(--wp-pink); display: inline-flex; flex: 0 0 auto; }
.wpm-ic svg { width: 22px; height: 22px; }
.wpm-nm { flex: 1; font-weight: 500; }
.wpm-chev { color: #c9c9c9; display: inline-flex; }
.wpm-chev svg { width: 18px; height: 18px; stroke-width: 2.2; }
.wpm-item:active { background: #fff0f7; }

/* ---------- DRAWER DE FILTRO ---------- */
#wp-filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 2147483000; }
#wp-filter-overlay.open { opacity: 1; visibility: visible; }
#wp-filter { position: fixed; top: 0; right: 0; height: 100%; width: 88%; max-width: 380px; background: #fff; transform: translateX(100%); transition: transform .28s ease; z-index: 2147483001; display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,.15); }
#wp-filter.open { transform: translateX(0); }
.wpf-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid #eee; }
.wpf-head h3 { margin: 0; font-size: 17px; font-weight: 700; color: var(--wp-ink); }
.wpf-close { background: none; border: 0; font-size: 26px; cursor: pointer; color: #333; line-height: 1; }
.wpf-body { flex: 1; overflow-y: auto; padding: 18px; }
.wpf-sec { margin-bottom: 24px; }
.wpf-t { font-size: 14px; font-weight: 700; color: var(--wp-ink); margin-bottom: 12px; }
.wpf-price #wpf-pv { display: block; font-size: 14px; color: var(--wp-pink); font-weight: 700; margin-bottom: 8px; }
.wpf-price input[type=range] { width: 100%; accent-color: var(--wp-pink); margin: 4px 0; }
.wpf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
/* busca dentro do filtro */
.wpf-search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--wp-line); border-radius: 24px; padding: 10px 14px; }
.wpf-search .wpf-s-ic { color: var(--wp-pink); display: inline-flex; }
.wpf-search .wpf-s-ic svg { width: 16px; height: 16px; }
.wpf-search input { flex: 1; border: 0; outline: 0; font-size: 14px; background: none; }
.wpf-results { margin-top: 10px; max-height: 260px; overflow-y: auto; }
.wpf-res-item { display: flex; align-items: center; gap: 10px; padding: 8px 4px; border-bottom: 1px solid #f2f2f2; cursor: pointer; text-decoration: none; }
.wpf-res-item img { width: 44px; height: 44px; object-fit: contain; background: #faf7f8; border-radius: 6px; flex: 0 0 44px; }
.wpf-res-nm { flex: 1; font-size: 13px; color: #333; line-height: 1.2; }
.wpf-res-pr { font-size: 14px; font-weight: 800; color: var(--wp-pink); white-space: nowrap; }
.wpf-res-empty { font-size: 13px; color: #999; padding: 10px 4px; }
.wpf-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #ddd; border-radius: 20px; padding: 7px 12px; font-size: 13px; cursor: pointer; }
.wpf-chip input { accent-color: var(--wp-pink); }
.wpf-avail { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #444; }
.wpf-avail input { width: 18px; height: 18px; accent-color: var(--wp-pink); }
.wpf-foot { display: flex; gap: 10px; padding: 16px 18px; border-top: 1px solid #eee; }
.wpf-clear { flex: 1; background: #fff; border: 1.5px solid var(--wp-pink); color: var(--wp-pink); border-radius: 8px; padding: 13px; font-weight: 700; font-size: 14px; cursor: pointer; }
.wpf-apply { flex: 2; background: var(--wp-pink); border: 0; color: #fff; border-radius: 8px; padding: 13px; font-weight: 800; font-size: 14px; text-transform: uppercase; cursor: pointer; }

/* ---------- FIX faixa branca acima do banner (sticky congelado) ---------- */
.vtex-sticky-layout-0-x-wrapper { height: auto !important; }
.vtex-sticky-layout-0-x-container { position: static !important; top: auto !important; }

/* ---------- BANNER ANIVERSARIO (bg gerado + texto overlay) ---------- */
.wp-banner-aniv { position: relative; width: 100%; line-height: 0; }
.wp-banner-img { display: block; width: 100%; height: auto; border-radius: 0; }
.wp-banner-text {
  position: absolute; top: 50%; left: 4.5%; transform: translateY(-50%);
  width: 52%; line-height: 1.05; color: #fff; text-align: left;
  font-family: "Montserrat", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-shadow: 0 1px 6px rgba(120,0,55,.35);
}
.wp-banner-h1 {
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900; letter-spacing: -.5px;
  font-size: clamp(17px, 6vw, 50px); margin-bottom: 1px;
}
.wp-banner-h2 {
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700; opacity: .98;
  font-size: clamp(9px, 3.1vw, 24px); margin-bottom: clamp(5px, 1.5vw, 14px);
}
.wp-banner-h3 {
  font-weight: 500; opacity: .95;
  font-size: clamp(8px, 2.5vw, 17px); line-height: 1.3;
}
.wp-banner-h4 {
  font-weight: 500; opacity: .95;
  font-size: clamp(8px, 2.5vw, 17px); line-height: 1.3; margin-top: 1px;
}
.wp-banner-h4 b { font-weight: 800; }
@media (min-width: 900px) {
  .wp-banner-text { left: 6%; width: 46%; }
}

/* ---------- DRAWER PROPRIO (minicart) ---------- */
#wp-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 2147483000;
}
#wp-drawer-overlay.open { opacity: 1; visibility: visible; }
#wp-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 90%; max-width: 400px;
  background: #fff; transform: translateX(100%); transition: transform .28s ease;
  z-index: 2147483001; display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.15); font-family: inherit;
}
#wp-drawer.open { transform: translateX(0); }
#wp-drawer .wpd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 14px; border-bottom: 1px solid #eee;
}
#wp-drawer .wpd-head h3 { margin: 0; font-size: 18px; font-weight: 800; color: var(--wp-ink); display: flex; align-items: center; gap: 9px; }
#wp-drawer .wpd-cart-ic { width: 22px; height: 22px; color: var(--wp-pink); }
#wp-drawer .wpd-close { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: #333; }
#wp-drawer .wpd-body { flex: 1; overflow-y: auto; padding: 8px 18px; }
#wp-drawer .wpd-empty { text-align: center; color: #999; padding: 60px 20px; font-size: 15px; }
.wpd-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid #f2f2f2; }
.wpd-item img { width: 80px; height: 80px; object-fit: contain; border-radius: 8px; background: #faf7f8; flex: 0 0 80px; }
.wpd-item-info { flex: 1; min-width: 0; position: relative; padding-right: 26px; }
.wpd-item-x { position: absolute; top: -2px; right: 0; width: 22px; height: 22px; border-radius: 50%; border: 0; background: #ededed; color: #999; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.wpd-item-x svg { width: 12px; height: 12px; }
.wpd-item-name { font-size: 14px; font-weight: 700; color: #2f2f2f; margin: 0 0 14px; line-height: 1.3; }
.wpd-item-bot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.wpd-qty { display: inline-flex; align-items: center; gap: 12px; }
.wpd-qty button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: var(--wp-pink); color: #fff; font-size: 17px; font-weight: 700; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.wpd-qty span { min-width: 16px; text-align: center; font-size: 15px; font-weight: 700; color: var(--wp-pink); }
.wpd-item-prices { text-align: right; }
.wpd-item-list { display: block; font-size: 12px; color: #aaa; text-decoration: line-through; }
.wpd-item-price { font-size: 16px; font-weight: 800; color: var(--wp-pink); }
#wp-drawer .wpd-foot { border-top: 1px solid #eee; padding: 16px 18px 22px; }
.wpd-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: #444; }
.wpd-row.total { font-size: 17px; font-weight: 800; color: var(--wp-ink); margin: 10px 0 16px; }
.wpd-row .disc { color: var(--wp-pink); }
.wpd-cta { display: block; width: 100%; text-align: center; background: var(--wp-pink); color: #fff;
  border: 0; border-radius: 10px; padding: 15px; font-size: 15px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .5px; cursor: pointer; text-decoration: none; }
.wpd-cont { display: block; width: 100%; text-align: center; background: #fff; color: var(--wp-ink);
  border: 1.5px solid var(--wp-pink); border-radius: 10px; padding: 13px; font-size: 14px; font-weight: 700;
  margin-top: 10px; cursor: pointer; text-decoration: none; }

/* order-bumps (4 Kits 30% OFF) no drawer */
.wpo { margin-bottom: 14px; }
.wpo-title { font-size: 13px; font-weight: 800; color: var(--wp-ink); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 8px; }
.wpo-carousel { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.wpo-carousel::-webkit-scrollbar { height: 0; }
.wpo-card { flex: 0 0 84%; max-width: 300px; scroll-snap-align: start; display: flex; align-items: center; gap: 10px; border: 1.5px solid #eee; border-radius: 10px; padding: 8px 10px; cursor: pointer; background: #fff; transition: border-color .15s, background .15s; }
.wpo-card.on { border-color: var(--wp-pink); background: #fff0f7; }
.wpo-card input { width: 20px; height: 20px; accent-color: var(--wp-pink); flex: 0 0 auto; }
.wpo-card img { width: 46px; height: 46px; object-fit: contain; background: #faf7f8; border-radius: 6px; flex: 0 0 46px; }
.wpo-info { min-width: 0; flex: 1; }
.wpo-nm { display: block; font-size: 12px; font-weight: 600; color: #333; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wpo-pr { margin-top: 3px; }
.wpo-de { font-size: 11px; color: #aaa; text-decoration: line-through; margin-right: 5px; }
.wpo-por { font-size: 14px; font-weight: 800; color: var(--wp-pink); }
.wpo-off { font-size: 10px; font-weight: 700; color: #fff; background: var(--wp-pink); border-radius: 4px; padding: 1px 5px; margin-left: 3px; }

/* badge de contagem no icone do carrinho — circulo pequeno no canto */
.wp-cart-badge {
  position: absolute; top: -5px; right: -5px;
  box-sizing: border-box;
  width: 16px; height: 16px; min-width: 16px; padding: 0;
  background: var(--wp-pink); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 1;
  border: 1.5px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
/* 2+ digitos: vira pilula estreita mas ainda compacta */
.wp-cart-badge.wp-cart-badge--wide { width: auto; min-width: 16px; padding: 0 4px; border-radius: 8px; }
