/* =========================================
  VONDER LAV1300 - STYLE.CSS
   Base visual inspirada em marketplace mobile
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Roboto+Condensed:wght@700;900&display=swap');

:root {
  --azul:        #222222;
  --azul-escuro: #111111;
  --amarelo:     #ffcf33;
  --branco:      #FFFFFF;
  --bg:          #f5f5f5;
  --vermelho:    #FF0050;
  --verde:       #26aa99;
  --verde-leve:  #f0faf9;
  --laranja-shopee:#FF0050;
  --laranja-texto: #9f0032;
  --texto:       #333333;
  --cinza:       #757575;
  --cinza-leve:  #f8f8f8;
  --borda:       #ebebeb;
  --radius:      8px;
  --radius-lg:   15px;
  --shadow:      0 1px 3px rgba(0,0,0,.05);
  --rosa-shopee: #f53d2d;
  --ff:          'Roboto', sans-serif;
  --ff-c:        'Roboto Condensed', sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--ff);background:var(--bg);color:var(--texto);font-size:14px;line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;font-family:var(--ff)}

/* ─── TOP NAV ─── */
.top-nav{
  position:sticky;top:0;z-index:100;
  background:#fff;border-bottom:1px solid #efefef;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 8px;
  height:48px;
}
.top-nav-left{display:flex;align-items:center;gap:0}
.top-nav-right{display:flex;align-items:center;gap:0}
.nav-icon-btn{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;
  border-radius:50%;
  transition:background .15s;
  flex-shrink:0;
}
.nav-icon-btn:hover{background:#f5f5f5}
.nav-icon-btn:active{background:#efefef}
.top-nav-brand{
  font-size:15px;font-weight:800;
  color:#222;
  letter-spacing:-.2px;
  padding-left:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:170px;
}

/* ─── WRAPPER ─── */
.page-wrapper{max-width:480px;margin:0 auto;background:#f5f5f5;min-height:100vh}
.card{background:#fff;margin-bottom:6px;border-bottom:1px solid #eee;overflow:hidden;}

/* ─── GALLERY SWIPER ─── */
.gallery-wrap{
  position:relative;background:#fff;
}
.badge-off{
  position:absolute;top:10px;left:10px;z-index:10;
  background:var(--vermelho);color:#fff;
  font-size:11px;font-weight:700;padding:3px 8px;border-radius:4px;
  box-shadow:0 2px 6px rgba(238,77,45,.25);
}
.badge-brand{
  position:absolute;top:10px;right:10px;z-index:10;
  background:rgba(0,0,0,.65);color:#fff;
  font-size:9px;font-weight:700;padding:3px 8px;border-radius:4px;
  letter-spacing:.5px;backdrop-filter:blur(4px);
}

.gallery-swiper{
  width:100%;
  background:#fff;
}
.gallery-swiper .swiper-slide{
  display:flex;align-items:center;justify-content:center;
  background:#fff;
}
.gallery-swiper .swiper-slide img{
  width:100%;height:360px;
  object-fit:contain;
  padding:12px;
}
.gallery-swiper .swiper-pagination{
  bottom:8px !important;
}
.gallery-swiper .swiper-pagination-bullet{
  width:7px;height:7px;
  background:var(--texto);opacity:.2;
  transition:all .25s;
}
.gallery-swiper .swiper-pagination-bullet-active{
  opacity:1;background:var(--rosa-shopee);
  width:20px;border-radius:4px;
}

.gallery-thumbs{
  display:flex;gap:6px;padding:8px 12px 10px;
  overflow-x:auto;scrollbar-width:none;border-top:1px solid var(--borda);
  background:#fafafa;
}
.gallery-thumbs::-webkit-scrollbar{display:none}
.g-thumb{
  flex:0 0 52px;height:52px;
  border:2px solid transparent;border-radius:6px;overflow:hidden;
  cursor:pointer;transition:all .2s;background:#fff;
  box-shadow:0 1px 3px rgba(0,0,0,.06);
}
.g-thumb.active{border-color:var(--rosa-shopee);box-shadow:0 0 0 1px var(--rosa-shopee)}
.g-thumb:hover{border-color:#ccc}
.g-thumb img{width:100%;height:100%;object-fit:contain;padding:2px}

.gallery-counter{
  position:absolute;bottom:52px;right:12px;z-index:10;
  background:rgba(0,0,0,.55);color:#fff;
  font-size:11px;font-weight:600;
  padding:2px 8px;border-radius:10px;
  backdrop-filter:blur(4px);
}

/* ─── RATING BAR ─── */
.rating-bar{
  display:flex;align-items:center;gap:7px;
  padding:8px 12px;font-size:12px;border-top:1px solid var(--borda);
}
.stars-gold{color:#ffa500;font-size:13px;letter-spacing:1px}
.r-score{font-weight:700}
.r-count,.r-dot{color:var(--cinza)}
.r-sold{color:var(--vermelho);font-weight:600}

/* ─── PRODUTO CARD ─── */
.product-card{padding:14px 14px 8px}

.visitor-pill{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;color:var(--vermelho);font-weight:600;margin-bottom:8px;
  background:#fff5f5;padding:4px 10px;border-radius:20px;
}
.dot-live{
  width:7px;height:7px;border-radius:50%;background:var(--vermelho);
  animation:blink 1.2s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

.product-title{
  font-size:15px;font-weight:700;color:var(--texto);line-height:1.45;
  margin-bottom:12px;
}

/* ─── NEW FLASH SALE HEADER (Matching Screenshot) ─── */
.flash-sale-header {
  background: linear-gradient(135deg, #ff4d1b 0%, #ee2d00 100%);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.fs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-badge {
  background: #fff;
  color: var(--azul);
  font-size: 13px;
  font-weight: 900;
  padding: 2px 6px;
  border: 1px solid var(--azul);
  border-radius: 4px;
}
.fs-old-price.is-note {
  text-decoration: none;
  font-weight: 600;
}
.fs-price {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.fs-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
}
.fs-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.9;
}
.fs-old-price {
  text-decoration: line-through;
}
.fs-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fs-timer b {
  font-size: 13px;
  letter-spacing: 0.5px;
  background: rgba(0,0,0,.2);
  padding: 1px 5px;
  border-radius: 3px;
}

/* ─── FRETE ROW (Below Header) ─── */
.frete-row-new {
  background: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--borda);
}
.frn-icon { font-size: 20px; }
.frn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #26aa99;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.frn-content { flex: 1; }
.frn-badge {
  display: inline-block;
  background: #e8f5f3;
  color: #26aa99;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.frn-text { font-size: 13px; color: var(--texto); display: flex; justify-content: space-between; }
.frn-sub { font-size: 12px; color: var(--cinza); margin-top: 4px; }

/* ─── PROTECTION SECTION (Matching Screenshot) ─── */
.protection-section {
  padding: 14px;
  border-top: 8px solid var(--bg);
}
.protection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ph-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--laranja-texto);
}
.ph-icon { font-size: 18px; }
.ph-arrow { color: #ccc; font-size: 14px; }

.protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.pg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--texto);
}
.pg-item::before {
  content: '\2713';
  font-weight: 900;
  color: #555;
}

/* ─── REFINED OFFERS (Matching Screenshot) ─── */
.offers-section {
  padding: 14px;
  border-top: 8px solid var(--bg);
}
.offers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.offers-head span { font-size: 15px; font-weight: 700; }
.offers-head-arrow { color: #ccc; }

.offers-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.offers-scroll::-webkit-scrollbar { display: none; }

.offer-card {
  flex: 0 0 220px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  position: relative;
}
.oc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.oc-title { font-size: 14px; font-weight: 700; color: var(--texto); }
.oc-badge {
  background: var(--verde);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 10px;
}
.oc-desc { font-size: 12px; color: var(--cinza); margin-bottom: 10px; }
.oc-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f9f7;
  color: var(--verde);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── VIDEO SECTION (Veja Mais) ─── */
.video-section {
  padding: 14px;
  border-top: 8px solid var(--bg);
}
.video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #000;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-overlay-top {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: #a5e075;
  color: #000;
  padding: 8px 12px;
  font-family: var(--ff-c);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  width: 85%;
  line-height: 1.1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,111,83,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vid-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  margin-left: 4px;
}
.vid-cnh {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: #004dff;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}
.vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
}
.vid-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
}
.vid-progress-fill {
  width: 30%;
  height: 100%;
  background: #ff4d1b;
}

/* ─── KIT SELECTION (Dual Style) ─── */
.kit-selection { padding: 14px; }
.shirt-select-block {
  margin-bottom: 12px;
  background: #fafafa;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: border-color .2s;
}
.shirt-select-block:hover { border-color: #ddd; }
.ssb-label { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 8px; }
.ssb-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.ssb-color-swatches { display: flex; gap: 8px; }
.scs-u {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #ddd; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.scs-u[data-val="Amarela"] { background: #FFCC00; }
.scs-u[data-val="Azul"] { background: #003DA5; }
.scs-u.selected {
  border-color: var(--rosa-shopee);
  transform: scale(1.12);
  box-shadow: 0 2px 8px rgba(245,61,45,.2);
}
.ssb-size-select { flex: 1; }
.sn-u-select {
  width: 100%; padding: 9px 10px;
  border: 1.5px solid #eee; border-radius: 8px;
  font-size: 13px; font-weight: 700; background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.config-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.config-pill {
  min-height: 38px;
  padding: 0 14px;
  border: 1.5px solid #f0df9a;
  border-radius: 999px;
  background: #fff;
  color: #5c4600;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.config-pill:hover {
  border-color: #e5be2c;
}

.config-pill.selected {
  background: linear-gradient(135deg, #ffd84d 0%, #f0b90b 100%);
  border-color: #d9a400;
  color: #231c00;
  box-shadow: 0 6px 18px rgba(240, 185, 11, 0.24);
  transform: translateY(-1px);
}

.config-helper {
  margin-top: 10px;
  font-size: 12px;
  color: var(--cinza);
  line-height: 1.55;
}

/* ─── PRODUCT DESC CLEAN ─── */
.product-desc-clean { padding: 0 14px 14px; font-size: 14px; line-height: 1.65; color: #555; }
.product-desc-clean p { margin-bottom: 10px; }
.desc-photo { width: 100%; display: block; border-radius: 12px; margin: 12px 0 4px; }

/* ─── TRUST ROW CLEAN UP ─── */
.trust-row{
  display:flex;border-top:1px solid var(--borda);
}
.trust-col{
  flex:1;display:flex;flex-direction:column;align-items:center;
  padding:10px 4px;text-align:center;border-right:1px solid var(--borda);
  font-size:10px;color:var(--cinza-texto);font-weight:500;gap:3px;
}
.trust-col:last-child{border-right:none}
.trust-col .tc-icon{font-size:22px}

.size-alert{
  display:none;margin-top:8px;padding:7px 10px;
  background:#ffebee;border-left:3px solid var(--vermelho);
  color:var(--vermelho);font-size:12px;font-weight:700;border-radius:4px;
}

/* ─── CTA ─── */
.cta-area{padding:0 12px 12px;display:flex;flex-direction:column;gap:8px}
.s-buy{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;padding:16px 14px;
  background:linear-gradient(135deg,#ff6b3d 0%,#f53d2d 50%,#d42b1e 100%);
  color:#fff;
  font-size:17px;font-weight:900;border-radius:10px;
  border:none;cursor:pointer;text-decoration:none;
  box-shadow:0 6px 20px rgba(245,61,45,.45), 0 2px 6px rgba(0,0,0,.15);
  transition:filter .15s,transform .12s,box-shadow .15s;
  letter-spacing:.5px;
  text-transform:uppercase;
  position:relative;overflow:hidden;
  animation:s-buy-pulse 2.2s ease-in-out infinite;
}
.s-buy::after{
  content:'';position:absolute;top:0;left:-100%;width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  animation:s-buy-shimmer 2.2s ease-in-out infinite;
}
@keyframes s-buy-pulse{
  0%,100%{box-shadow:0 6px 20px rgba(245,61,45,.45),0 2px 6px rgba(0,0,0,.15);}
  50%{box-shadow:0 8px 28px rgba(245,61,45,.65),0 2px 8px rgba(0,0,0,.2);}
}
@keyframes s-buy-shimmer{
  0%{left:-100%}
  60%,100%{left:160%}
}
.s-buy:active{transform:scale(.96);filter:brightness(.92);animation:none}
.btn-buy{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;padding:14px;
  background:var(--vermelho);color:#fff;
  font-size:17px;font-weight:700;border-radius:var(--radius);
  border:none;cursor:pointer;text-decoration:none;
  box-shadow:0 4px 14px rgba(238,77,45,.3);
  transition:filter .15s,transform .1s;
}
.btn-buy:active{transform:scale(.98)}
.btn-pix{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;padding:12px;
  background:#fff;color:var(--verde);border:1.5px solid var(--verde);
  font-size:14px;font-weight:700;border-radius:var(--radius);cursor:pointer;
  text-decoration:none;transition:background .15s;
}
.btn-pix:hover{background:var(--verde-leve)}

/* ─── ESTOQUE ─── */
.stock-area{padding:0 12px 12px}
.stock-hd{display:flex;justify-content:space-between;font-size:12px;font-weight:700;color:#c0392b;margin-bottom:5px}
.stock-track{height:5px;background:#f5e6e3;border-radius:3px;overflow:hidden}
.stock-fill{height:100%;width:73%;background:var(--vermelho);border-radius:3px}
.stock-note{font-size:11px;color:var(--cinza);margin-top:3px}

/* ─── TRUST BADGES ─── */
.trust-row{
  display:flex;border-top:1px solid var(--borda);
}
.trust-col{
  flex:1;display:flex;flex-direction:column;align-items:center;
  padding:10px 4px;text-align:center;border-right:1px solid var(--borda);
  font-size:10px;color:var(--cinza-texto);font-weight:500;gap:3px;
}
.trust-col:last-child{border-right:none}
.trust-col .tc-icon{font-size:22px}

/* ─── CUPONS ─── */
.coupon-area{padding:10px 12px}
.coupon-ttl{font-size:12px;font-weight:700;color:var(--texto);margin-bottom:8px}
.coupon-list{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none}
.coupon-list::-webkit-scrollbar{display:none}
.coupon-card{
  flex:0 0 auto;min-width:140px;
  background:linear-gradient(135deg,var(--azul) 0%,#1565C0 100%);
  color:#fff;border-radius:6px;padding:8px 12px;
}
.coupon-card.green{background:linear-gradient(135deg,#1a7a6e 0%,var(--verde) 100%)}
.coupon-card .cc-desc{font-size:11px;opacity:.85;margin-bottom:2px}
.coupon-card .cc-val{font-size:13px;font-weight:900}
.coupon-badge{
  display:inline-block;background:var(--amarelo);color:var(--azul-escuro);
  font-size:9px;font-weight:900;padding:1px 5px;border-radius:10px;margin-top:3px;
}

/* ─── STORE BAR ─── */
.store-strip{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-top:1px solid var(--borda);
}
.store-circle{
  width:40px;height:40px;flex-shrink:0;border-radius:50%;
  background:var(--azul);display:flex;align-items:center;justify-content:center;font-size:19px;
}
.store-text .sn{font-size:13px;font-weight:700;color:var(--texto)}
.store-text .ss{font-size:11px;color:var(--cinza)}
.store-nums{margin-left:auto;display:flex;gap:10px;text-align:center}
.sn-stat strong{display:block;font-size:13px;font-weight:900;color:var(--texto)}
.sn-stat span{font-size:10px;color:var(--cinza)}

/* ─── SEÇÕES ─── */
.section-head{
  display:flex;align-items:center;gap:6px;
  padding:12px 12px 10px;font-size:13px;font-weight:700;
  color:var(--texto);text-transform:uppercase;letter-spacing:.3px;
  border-bottom:1px solid var(--borda);
}
.section-head::before{content:'';width:4px;height:16px;background:var(--vermelho);border-radius:2px;flex-shrink:0}

/* ─── BENEFITS GRID ─── */
.benefits-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:8px;padding:12px;
}
.benefit-card{
  background:var(--cinza-leve);border:1px solid var(--borda);
  border-radius:var(--radius);padding:10px;text-align:center;
}
.benefit-card .bc-icon{font-size:24px;margin-bottom:5px}
.benefit-card h4{font-size:11px;font-weight:700;color:var(--texto);margin-bottom:3px}
.benefit-card p{font-size:11px;color:var(--cinza);line-height:1.4}

/* ─── INLINE CTA ─── */
.inline-cta{
  margin:4px 0 12px;background:var(--azul);
  border-radius:var(--radius);padding:14px;text-align:center;
}
.inline-cta .ict{color:var(--amarelo);font-family:var(--ff-c);font-size:16px;font-weight:900;margin-bottom:5px}
.inline-cta p{color:rgba(255,255,255,.8);font-size:12px;margin-bottom:10px}
.btn-inline{
  display:inline-flex;align-items:center;gap:6px;
  padding:11px 22px;background:var(--vermelho);color:#fff;
  font-size:14px;font-weight:700;border-radius:var(--radius);
  text-decoration:none;cursor:pointer;border:none;
}

/* ─── SPECS LIST ─── */
.specs-list{padding:4px 12px 12px}
.spec-row{
  display:flex;align-items:flex-start;gap:10px;
  padding:9px 0;border-bottom:1px solid var(--borda);font-size:13px;
}
.spec-row:last-child{border-bottom:none}
.spec-row .sr-icon{font-size:16px;flex-shrink:0;margin-top:2px}
.spec-row .sr-lbl{font-size:11px;color:var(--cinza);margin-bottom:1px}
.spec-row .sr-val{font-weight:600;color:var(--texto)}

/* ─── MINI SPEC ICONS 4-GRID ─── */
.spec-icons-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:6px;padding:12px;
}
.sic{
  text-align:center;padding:8px 4px;
  background:var(--cinza-leve);border:1px solid var(--borda);border-radius:8px;
}
.sic .sic-i{font-size:16px;font-weight:900;margin-bottom:3px}
.sic .sic-l{font-size:9px;color:var(--cinza);font-weight:600;text-transform:uppercase;letter-spacing:.3px}
.sic .sic-v{font-size:12px;font-weight:900;color:var(--texto)}

/* ─── TABELA TAMANHOS ─── */
.size-table{width:100%;border-collapse:collapse;font-size:12px;margin-top:4px}
.size-table th{background:var(--azul);color:#fff;padding:8px 4px;text-align:center;font-weight:700}
.size-table td{padding:8px 4px;text-align:center;border-bottom:1px solid var(--borda)}
.size-table tr:nth-child(even) td{background:#f8f9ff}
.size-table-wrap{padding:12px}

/* ─── FAQ ─── */
.faq-wrap{padding:4px 12px 12px}
.faq-item{border-bottom:1px solid var(--borda)}
.faq-item:last-child{border-bottom:none}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 0;font-size:13px;font-weight:600;color:var(--texto);cursor:pointer;gap:8px;
}
.faq-ic{font-size:18px;font-weight:700;color:var(--cinza);flex-shrink:0;transition:transform .25s}
.faq-a{display:none;padding:0 0 12px;font-size:13px;color:var(--cinza);line-height:1.65}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-ic{transform:rotate(45deg);color:var(--vermelho)}

/* ─── AVALIAÇÕES ─── */
.rev-summary{display:flex;gap:14px;padding:12px;align-items:center}
.revs-score{text-align:center;flex-shrink:0}
.revs-big{font-size:44px;font-weight:900;color:var(--texto);line-height:1}
.revs-stars{color:#ffa500;font-size:15px;letter-spacing:1px}
.revs-count{font-size:11px;color:var(--cinza)}
.revs-bars{flex:1;display:flex;flex-direction:column;gap:4px}
.rb-row{display:flex;align-items:center;gap:5px;font-size:11px}
.rb-lbl{width:12px;text-align:right;color:var(--cinza)}
.rb-track{flex:1;height:5px;background:#eee;border-radius:3px;overflow:hidden}
.rb-fill{height:100%;background:#ffa500;border-radius:3px}
.rb-pct{width:26px;text-align:right;color:var(--cinza)}
.rev-recommend{
  text-align:center;padding:0 12px 10px;
  font-size:12px;font-weight:700;color:var(--verde);
  border-bottom:1px solid var(--borda);
}

.review-source-note {
  padding: 10px 12px 0;
  font-size: 11px;
  color: var(--cinza);
  text-align: center;
}

.rev-card{padding:12px;border-bottom:1px solid var(--borda)}
/* ─── STORE STATS CARD ─── */
.store-stats-card { padding: 16px; margin-top: 10px; }
.ssc-top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #f2f2f2; padding-bottom: 15px; }
.ssc-logo-wrap { width: 56px; height: 56px; border-radius: 50%; border: 2px solid #eee; overflow: hidden; flex-shrink: 0; }
.ssc-logo { width: 100%; height: 100%; object-fit: cover; }
.ssc-info { flex: 1; }
.ssc-name { font-size: 16px; font-weight: 700; color: #333; display: flex; align-items: center; gap: 6px; }
.ssc-red-dot { width: 12px; height: 12px; background: #f0b90b; border-radius: 50%; display: inline-block; }
.ssc-official { font-size: 13px; color: #c08b00; font-weight: 600; margin-top: 2px; }

.ssc-grid { display: flex; align-items: center; justify-content: space-between; }
.ssc-item { text-align: center; flex: 1; }
.ssc-val { font-size: 18px; font-weight: 900; color: #333; margin-bottom: 4px; }
.ssc-lbl { font-size: 9px; color: #999; font-weight: 700; letter-spacing: 0.5px; }
.ssc-divider { width: 1px; height: 30px; background: #eee; }

.review-item{padding:14px;border-bottom:1px solid #f2f2f2;display:flex;flex-direction:column;gap:8px}
.rh{display:flex;align-items:center;gap:12px;margin-bottom:2px}
.r-ava{
  width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:700;color:#fff;font-family:var(--ff);flex-shrink:0;
}
.ava-m{background:#003DA5;}
.ava-f{background:#f53d2d;}
.rh-name{font-size:14px;font-weight:700;color:var(--texto)}
.rh-verified{font-size:11px;color:var(--verde);margin-top:1px}
.rh-date{font-size:11px;color:var(--cinza);margin-left:auto}
.r-stars{color:#ffcc00;font-size:12px;letter-spacing:1px}
.r-variant{font-size:11px;color:var(--cinza);background:#f8f8f8;display:inline-block;padding:2px 8px;border-radius:4px;margin:2px 0}
.r-text{font-size:13px;line-height:1.55;color:#444}
.r-photos{display:flex;gap:6px;margin-top:6px}
.r-photo{
  width:60px;height:60px;border-radius:6px;
  border:1px solid var(--borda);background:var(--cinza-leve);
  display:flex;align-items:center;justify-content:center;font-size:20px;color:#ccc;
  object-fit:cover;
}
.r-likes{display:flex;flex-direction:column;gap:6px;font-size:12px;color:var(--cinza);margin-top:8px;cursor:pointer}

/* ─── CTA FINAL ─── */
.cta-final{padding:12px;text-align:center;border-top:1px solid var(--borda)}
.cta-final small{display:block;font-size:11px;color:var(--cinza);margin-top:6px}

/* ─── FOOTER ─── */
footer{
  background:#1a1a1a;color:rgba(255,255,255,.65);
  padding:20px 14px 90px;text-align:center;margin-top:8px;
}
.f-logo{
  width:auto;height:auto;background:none;border-radius:0;
  display:flex;align-items:center;justify-content:center;
  font-size:19px;margin:0 auto 8px;
}
.f-logo img{display:block}
.f-name{color:#fff;font-weight:700;font-size:14px;margin-bottom:2px}
.f-cnpj{font-size:11px;opacity:.55;margin-bottom:8px}
.f-addr{font-size:11px;opacity:.55;line-height:1.7;margin-bottom:12px}
.f-pay{display:flex;justify-content:center;flex-wrap:wrap;gap:6px;margin-bottom:12px}
.f-pay-tag{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
  color:#fff;font-size:11px;font-weight:700;padding:4px 9px;border-radius:4px;
}
.f-pay-tag.pix{background:#26aa99;border-color:#26aa99}
.f-links{display:flex;justify-content:center;flex-wrap:wrap;gap:3px 10px;font-size:11px;margin-bottom:10px}
.f-links a{color:rgba(255,255,255,.5);text-decoration:underline}
.f-links a:hover{color:var(--amarelo)}
.f-secure{display:flex;justify-content:center;align-items:center;gap:5px;font-size:11px;opacity:.45;margin-bottom:8px}
.f-copy{font-size:10px;opacity:.35}

/* ─── STICKY FOOTER (Shopee Style) ─── */
.sticky-footer-new {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 8px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.07);
}

/* Left side: Loja + Chat grouped */
.sf-left-btns {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.sf-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--ff);
  line-height: 1;
  min-width: 48px;
}
.sf-icon-btn svg { display: block; }
.sf-divider {
  width: 1px;
  height: 28px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* Buy button */
.sf-buy-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b3d 0%, #f53d2d 50%, #d42b1e 100%);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.1s, filter 0.15s, box-shadow 0.15s;
  box-shadow: 0 5px 16px rgba(245,61,45,.45), 0 2px 5px rgba(0,0,0,.15);
  min-height: 48px;
  position: relative;
  overflow: hidden;
  animation: sf-buy-pulse 2.2s ease-in-out infinite;
}
.sf-buy-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: s-buy-shimmer 2.2s ease-in-out infinite;
}
@keyframes sf-buy-pulse {
  0%, 100% { box-shadow: 0 5px 16px rgba(245,61,45,.45), 0 2px 5px rgba(0,0,0,.15); }
  50%       { box-shadow: 0 7px 24px rgba(245,61,45,.65), 0 2px 7px rgba(0,0,0,.2); }
}
.sf-buy-btn:active { transform: scale(0.96); filter: brightness(.92); animation: none; }
.sf-buy-price {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.sf-buy-label {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: .2px;
}

/* ─── RATING MOVED ─── */
.rating-bar-moved { margin-bottom: 0px !important; border-top: none !important; }
.rating-bar-moved .rating-bar { border-top: none; }

/* ─── MODAL TAMANHO ─── */
.modal-bg{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:10000;
  align-items:flex-end;justify-content:center;
}
.modal-bg.open{display:flex}
.modal-sheet{
  background:#fff;border-radius:14px 14px 0 0;
  padding:14px 14px 32px;width:100%;max-width:480px;max-height:88vh;overflow-y:auto;
}
.modal-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.modal-ttl{font-size:15px;font-weight:700;color:var(--texto)}
.modal-cls{
  width:28px;height:28px;border-radius:50%;background:var(--bg);
  border:none;font-size:15px;color:var(--cinza);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}

/* ─── PÁGINAS LEGAIS ─── */
.legal-nav{background:var(--azul);padding:12px 14px;display:flex;align-items:center;gap:8px}
.legal-nav a{color:var(--amarelo);font-size:13px;font-weight:700}
.legal-nav span{color:rgba(255,255,255,.35)}
.legal-body{max-width:600px;margin:0 auto;padding:18px 14px 80px;background:#fff;min-height:100vh}
.legal-body h1{font-size:20px;font-weight:900;color:var(--azul);margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid var(--amarelo)}
.legal-body h2{font-size:14px;font-weight:700;color:var(--azul);margin:14px 0 5px}
.legal-body p,.legal-body li{font-size:13px;line-height:1.7;color:var(--texto);margin-bottom:5px}
.legal-body ul{padding-left:16px}

/* ─── VEJA MAIS! — SEÇÃO DE VÍDEO ─── */
.video-card {
  overflow: hidden;
}
.video-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--borda);
}
.vs-bar {
  width: 4px;
  height: 18px;
  background: var(--rosa-shopee);
  border-radius: 2px;
  flex-shrink: 0;
}
.vs-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--texto);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.video-embed-wrap {
  width: 100%;
  position: relative;
  background: #000;
}
.video-embed-wrap iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
  display: block;
}

.video-static-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.video-static-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-static-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(19,16,24,.86) 100%);
}

.video-static-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #ffcf33;
  color: #231c00;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  letter-spacing: .4px;
}

.video-static-copy {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  max-width: 88%;
}
/* Placeholder enquanto o link não é inserido */
.video-placeholder-box {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, #111 0%, #1e1e1e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.vpb-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,61,45,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  padding-left: 4px;
}
.vpb-text {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

/* ─── TIKTOK CTA BANNER ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&display=swap');

.tiktok-cta {
  background: #010101;
  border-radius: 10px;
  padding: 18px 16px 16px;
  text-align: left;
  margin: 0 0 12px;
}
.tiktok-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #ffcf33;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tiktok-title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.tiktok-highlight {
  color: #ffcf33;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}
.tiktok-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-bottom: 14px;
}
.tiktok-btn {
  background: linear-gradient(135deg, #ffd84d 0%, #f0b90b 50%, #d18d00 100%);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 13px 16px;
  box-shadow: 0 5px 16px rgba(240,185,11,.35);
  transition: filter .15s, transform .12s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.tiktok-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: s-buy-shimmer 2.4s ease-in-out infinite;
}
.tiktok-btn:hover { filter: brightness(1.08); box-shadow: 0 7px 22px rgba(240,185,11,.4); }
.tiktok-btn:active { transform: scale(0.96); filter: brightness(.92); }

/* Video card inside product card (no extra margin) */
.video-card--inner {
  margin-top: 8px;
  border-top: 8px solid var(--bg);
  background: #fff;
}

/* ─── AVATAR SVG ─── */
.r-ava-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.r-ava-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── MINI GUIA DE TAMANHOS (inline) ─── */
.size-mini-block {
  border-top: 8px solid var(--bg);
  padding: 14px 14px 10px;
}
.smb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.smb-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--texto);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.smb-sub {
  font-size: 11px;
  color: var(--cinza);
}
.smb-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.smb-table {
  min-width: 280px;
}
.smb-table th {
  font-size: 11px;
  padding: 6px 8px;
}
.smb-table td {
  font-size: 12px;
  padding: 7px 8px;
}

/* ─── UTILS ─── */
.pb-sticky{padding-bottom:70px}

/* ─── RESPONSIVE MOBILE ─── */
@media(max-width:380px){
  .fs-price { font-size: 22px; }
  .gallery-swiper .swiper-slide img { height: 300px; }
  .g-thumb { flex: 0 0 44px; height: 44px; }
  .spec-icons-grid { grid-template-columns: repeat(2,1fr); }
  .offer-card { flex: 0 0 200px; }
  .ssc-val { font-size: 16px; }
}

@media(min-width:480px){
  .sticky-cta{left:50%;transform:translateX(-50%);max-width:480px}
  .sticky-footer-new{
    left:50%;transform:translateX(-50%);max-width:480px;
    border-radius:12px 12px 0 0;
  }
}

/* ─── PERSONALIZAR CAMISA ─── */
.personalize-wrapper {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
}
.pers-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
}
.pers-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.pers-fields {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.pers-input {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--ff);
  outline: none;
  transition: border-color 0.2s;
}
.pers-input:focus {
  border-color: var(--rosa-shopee);
}
.pers-number {
  flex: 0 0 80px;
}
.pers-fields.hidden {
  display: none !important;
}
