/* ============================================================
   STYLE.CSS — Premium™ Edredom Térmico (migração para template Casa Dollce)
   Estrutura: tokens do template + adaptações para os componentes novos
   (color swatches, benefits-grid-4, trust-cards, payments-section,
   rating-bars, breadcrumb, footer-mini, about-grid--reverse).
   ============================================================ */

/* ============== RESET & VARIÁVEIS ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta alinhada ao Premium™ Edredom (lilás/lavanda + CTA verde como o original).
     "Conforto que abraça" pede tons frios e suaves, não madeira/cobre. */
  --ink:        #2a1f3d;            /* roxo-escuro p/ texto principal */
  --ink-2:      #3d2f55;            /* secundário */
  --muted:      #6e6383;            /* texto descritivo, tom roxo apagado */
  --muted-2:    #9a8fb2;
  --border:     #e3d8ee;            /* borda lilás clara */
  --border-2:   #efe6f6;
  --surface:    #f6f1fa;            /* lilás muito claro (fundos de seção) */
  --surface-2:  #fbf7fd;
  --white:      #ffffff;
  --beige:      #ede2f5;            /* lavanda suave (about/delivery) */
  --lilac:      #d8c4ec;            /* lilás médio (decorações) */
  --lilac-deep: #b89ad6;            /* lilás mais saturado */

  --red:        #d63384;            /* rose/magenta para tags de % off */
  --red-soft:   #fce7f3;

  --green:      #16a34a;            /* CTA "COMPRAR AGORA" — verde vibrante */
  --green-2:    #15803d;            /* hover */
  --green-soft: #ecfdf5;

  --copper:     #7c3aed;            /* renomeado conceitualmente: accent roxo das headlines */

  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 4px rgba(60,30,90,.07);
  --shadow:     0 2px 12px rgba(60,30,90,.09);
  --shadow-lg:  0 4px 28px rgba(60,30,90,.14);

  /* === Aliases para o checkout.css (vindo do legacy Zatti) ===
     Mapeiam tokens antigos pra paleta Premium™ lilás+verde+rosa */
  --primary:       #7c3aed;          /* roxo vibrante (CTA accent) */
  --primary-hover: #6b21d6;
  --primary-tint:  #f3ebff;          /* lilás bem claro */
  --text:          #2a1f3d;          /* = --ink */
  --text-soft:     #4d3f64;
  --text-muted:    #6e6383;          /* = --muted */
  --bg-soft:       #f6f1fa;          /* = --surface */
  --success:       #16a34a;          /* = --green */
  --success-soft:  #ecfdf5;
  --danger:        #d63384;
  --danger-soft:   #fce7f3;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink-2);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
  padding-bottom: 72px;
  width: 100%;
  max-width: 100vw;
}
html { overflow-x: hidden; max-width: 100vw; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select { font-family: inherit; }

.container  { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); }
.emphasis    { color: var(--copper); font-style: normal; }

/* ============== ANNOUNCEMENT BAR (gradiente lilás como o original) ============== */
.ann-bar { background: linear-gradient(90deg, #6b3aa8 0%, #8b5cf6 50%, #6b3aa8 100%); color: var(--white); height: 38px; overflow: hidden; display: block; width: 100%; max-width: 100vw; position: relative; }
.ann-track { display: flex; white-space: nowrap; animation: scrollAnn 30s linear infinite; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.ann-track span { font-size: 11px; font-weight: 500; padding: 0 28px; flex-shrink: 0; letter-spacing: .4px; }
.ann-track .sep { color: rgba(255,255,255,.2); }
@keyframes scrollAnn {
  0%   { transform: translate(0, -50%); }
  100% { transform: translate(-50%, -50%); }
}

/* ============== HEADER ============== */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 16px; height: 62px; }
.logo { display: flex; align-items: center; }
.logo img { max-height: 42px; width: auto; }
.header-menu, .header-cart { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 8px; color: var(--ink); padding: 8px 12px; border-radius: var(--radius); transition: background .18s; }
.header-menu { left: 0; }
.header-cart { right: 0; }
.header-menu:hover, .header-cart:hover { background: var(--surface); }
.header-menu svg, .header-cart svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.header-cart-wrap { position: relative; display: flex; }
.header-cart-badge { position: absolute; top: -6px; right: -8px; background: var(--green); color: var(--white); font-size: 9px; font-weight: 800; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; line-height: 1; opacity: 0; transform: scale(.6); transition: opacity .18s, transform .18s; box-shadow: 0 1px 4px rgba(22,163,74,.3); }
.header-cart-badge.has-items { opacity: 1; transform: scale(1); }
.header-cart-label, .header-menu-label { font-size: 12px; font-weight: 600; color: var(--ink); }
@media (max-width: 768px) { .header-cart-label, .header-menu-label { display: none; } .header-cart, .header-menu { padding: 6px; } .logo img { max-height: 36px; } }

/* ============== DRAWER ============== */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 998; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 280px; max-width: 85vw; background: var(--white); z-index: 999; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: 4px 0 30px rgba(40,25,10,.18); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.drawer-title { font-size: 13px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 1px; }
.drawer-close { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ink); line-height: 1; }
.drawer-nav { display: flex; flex-direction: column; padding: 12px 0; }
.drawer-nav a { display: flex; align-items: center; gap: 12px; padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border-2); transition: background .18s, padding .18s; min-height: 56px; }
.drawer-nav a:hover { background: var(--surface); padding-left: 26px; }
.drawer-nav a svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============== HERO ============== */
.hero { background: var(--white); border-bottom: 1px solid var(--border-2); padding: 24px 0 56px; }
.breadcrumb { font-size: 11px; color: var(--muted); margin-bottom: 22px; letter-spacing: .3px; }
.breadcrumb a { color: var(--muted-2); }
.breadcrumb span { color: var(--ink); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hero-category { font-size: 11px; color: var(--muted-2); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.hero-title { font-size: clamp(22px, 3.2vw, 38px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 14px; letter-spacing: -.3px; }
.hero-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.rating-row { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; flex-wrap: wrap; }
.stars { color: #d4930a; font-size: 13px; letter-spacing: 1px; }
.rating-score { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.rating-sep { color: var(--border); font-size: 12px; }
.rating-count { font-size: 12px; color: var(--muted); }

/* Preço */
.price-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 20px; }
.price-old-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.price-old { font-size: 13px; color: var(--muted-2); text-decoration: line-through; font-weight: 500; }
.price-off-tag { background: linear-gradient(135deg, #d63384 0%, #b8407e 100%); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; letter-spacing: .5px; box-shadow: 0 2px 6px rgba(214,51,132,.25); }
.price-main { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.price-pix { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 2px; }
.price-inst { font-size: 12px; color: var(--muted); }
.price-economy { display: inline-block; margin-top: 10px; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(30,107,69,.18); }

/* Botões — CTA verde como na página original */
.btn-primary { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: var(--white); font-size: 15px; font-weight: 800; padding: 16px 28px; border-radius: var(--radius); width: 100%; letter-spacing: .3px; transition: background .18s, transform .12s, box-shadow .18s; border: 2px solid var(--green); min-height: 54px; box-shadow: 0 4px 14px rgba(22,163,74,.28); text-transform: uppercase; }
.btn-primary:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,163,74,.36); }
.btn-secondary { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--white); color: var(--ink); font-size: 13px; font-weight: 600; padding: 13px 24px; border-radius: var(--radius); width: 100%; border: 1px solid var(--border); transition: border-color .18s, background .18s; margin-top: 8px; }
.btn-secondary:hover { border-color: var(--ink); background: var(--surface); }
.cta-reassurance { font-size: 11px; color: var(--muted-2); text-align: center; margin-top: 10px; line-height: 1.7; }

/* Urgência */
.urgency-bar { display: flex; gap: 14px; margin-top: 14px; padding: 10px 13px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border-2); flex-wrap: wrap; }
.urg-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-2); font-weight: 500; }
.live-dot { width: 6px; height: 6px; background: #1e9e4a; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.urg-red { color: var(--red); font-weight: 700; }

/* ============== SELETOR ============== */
.vs-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 16px; }
.vs-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.vs-sub { font-size: 11px; color: var(--muted); margin-bottom: 12px; }

/* Color swatches (NEW) */
.color-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.color-grid--offer { grid-template-columns: repeat(3, 1fr); }
.color-opt { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 6px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: border-color .18s, background .18s, transform .12s; min-width: 0; }
.color-opt:hover { border-color: var(--copper); }
.color-opt.active { border-color: var(--copper); background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); box-shadow: 0 4px 14px rgba(124,58,237,.28); }
.color-opt.active .color-label { color: var(--white); }
.color-swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(0,0,0,.08); flex-shrink: 0; box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.color-label { font-size: 11px; font-weight: 700; color: var(--ink); letter-spacing: 0; text-align: center; line-height: 1.2; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.color-label-1 { display: block; }
.color-label-2 { display: block; font-size: .9em; font-weight: 600; opacity: .85; }

/* Size grid */
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.size-opt { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 8px 10px; text-align: center; cursor: pointer; transition: border-color .18s, background .18s, transform .12s; min-height: 90px; }
.size-opt:hover { border-color: var(--copper); }
.size-opt.active { border-color: var(--copper); background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: var(--white); box-shadow: 0 4px 14px rgba(124,58,237,.28); }
.size-opt.active .size-label, .size-opt.active .size-dim { color: var(--white); }
.size-opt.active .size-price { color: rgba(255,255,255,.85); }
.size-label { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; letter-spacing: -.3px; }
.size-price { font-size: 10px; color: var(--muted); font-weight: 600; }
.size-dim { font-size: 9px; color: var(--muted-2); margin-top: 2px; letter-spacing: .2px; }
.size-badge { position: absolute; top: -7px; right: -4px; background: var(--red); color: var(--white); font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 3px; letter-spacing: .4px; text-transform: uppercase; }
.vs-selected-display { display: flex; background: var(--green-soft); border: 1px solid rgba(30,107,69,.2); border-radius: var(--radius); padding: 10px 13px; margin-top: 12px; font-size: 12px; color: var(--green); font-weight: 600; align-items: center; gap: 6px; }

/* Galeria — fundo lilás para combinar com o produto (sereno, "abraço") */
.hero-gallery { position: relative; }
.gallery-main { background: linear-gradient(155deg, #ede2f5 0%, #d8c4ec 60%, #c5acdf 100%); border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid var(--border); }
.gallery-main img { mix-blend-mode: normal; }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity .22s; }
.g-nav { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid var(--border); color: var(--ink); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: box-shadow .18s; z-index: 2; box-shadow: var(--shadow-sm); }
.g-nav:hover { box-shadow: var(--shadow); }
.g-nav.prev { left: 10px; } .g-nav.next { right: 10px; }
.g-counter { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.5); color: var(--white); font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.thumb { border-radius: 6px; overflow: hidden; border: 2px solid transparent; aspect-ratio: 1; cursor: pointer; transition: border-color .18s; background: var(--surface); padding: 0; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--ink); }
.thumb:hover:not(.active) { border-color: var(--muted-2); }

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } .hero-gallery { order: -1; max-width: 480px; margin: 0 auto; width: 100%; } .gallery-thumbs { grid-template-columns: repeat(5, 1fr); } }

/* ============== TRUST BAR ============== */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 22px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--ink); }
.trust-text span { font-size: 11px; color: var(--muted); }
@media (max-width: 680px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== SECTION HEADER ============== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; border-bottom: 2px solid var(--border); padding-bottom: 5px; }
.section-title { font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -.3px; }
.section-title em { color: var(--copper); font-style: normal; }
.section-sub { font-size: 14px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============== BENEFITS ============== */
.benefits-section { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.benefits-grid-4 { grid-template-columns: repeat(4, 1fr); }
.benefit-card { background: var(--white); padding: 24px 20px; transition: background .18s; }
.benefit-card:hover { background: var(--surface-2); }
.benefit-icon { font-size: 30px; margin-bottom: 12px; }
.benefit-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); margin-bottom: 12px; border: 1px solid var(--border-2); }
.benefit-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.benefit-desc { font-size: 12.5px; color: var(--muted); line-height: 1.7; }
@media (max-width: 1024px) { .benefits-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid, .benefits-grid-4 { grid-template-columns: 1fr; } }

/* ============== ABOUT ============== */
.about-section { background: var(--beige); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-section--alt { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid--reverse { grid-template-columns: 1fr 1fr; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-title { font-size: clamp(18px, 2.6vw, 28px); font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -.3px; }
.about-title em { font-style: normal; color: var(--copper); }
.about-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.specs-list { display: flex; flex-direction: column; gap: 12px; }
.spec-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-2); }
.spec-check { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.spec-check svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spec-item strong { color: var(--ink); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--ink); display: block; letter-spacing: -.5px; }
.stat-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } .about-grid--reverse > *:first-child { order: 2; } .about-grid--reverse > *:last-child { order: 1; } }

/* ============== STORE / BRAND PROMISE ============== */
.store-section { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.store-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.store-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; }
.store-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s ease; }
.store-img:hover img { transform: scale(1.03); }
.store-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(26,20,16,.25) 100%); pointer-events: none; }
.store-title { font-size: clamp(22px, 3.2vw, 34px); font-weight: 800; color: var(--ink); margin: 8px 0 18px; letter-spacing: -.5px; line-height: 1.15; }
.store-title em { font-style: normal; color: var(--copper); }
.store-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.store-text strong { color: var(--ink-2); font-weight: 600; }
.store-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.store-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 14px 8px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-badge-icon { font-size: 22px; line-height: 1; }
.store-badge-title { font-size: 12px; font-weight: 700; color: var(--ink); }
.store-badge-sub { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; font-weight: 600; }
@media (max-width: 768px) { .store-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============== SHOWCASE ============== */
.showcase-section { background: #1a0f2e; padding: 56px 0; overflow: hidden; }
.showcase-section .section-label { color: #b89ad6; }
.showcase-section .section-title { color: var(--white); }
.showcase-section .section-title em { color: #c4a8e8; }
.showcase-section .section-sub { color: #d0c4dc; }
.sc-scroll-wrap { position: relative; }
.sc-scroll { display: flex; gap: 14px; overflow-x: auto; padding: 24px 24px 32px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.sc-scroll::-webkit-scrollbar { display: none; }
.sc-card { flex: 0 0 230px; scroll-snap-align: start; border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 9/16; display: flex; flex-direction: column; justify-content: space-between; padding: 28px 22px; border: 1px solid rgba(255,255,255,.08); cursor: default; }
@media (min-width: 600px) { .sc-card { flex: 0 0 250px; } }
@media (min-width: 1024px) { .sc-card { flex: 0 0 270px; } }
/* Cards estações com sub-paleta lilás → azul → verde, congruente com edredom */
.sc-card-summer { background: #2a1640; color: #f5b4d4; }   /* verão = rosa quente */
.sc-card-winter { background: #1a1a3d; color: #a8c4f0; }   /* inverno = azul-lavanda */
.sc-card-mid    { background: #1f2a35; color: #b4e4d0; }   /* meia estação = verde-menta */
.sc-card::before { content: ''; position: absolute; inset: 0; opacity: .18; background: radial-gradient(ellipse at 30% 20%, currentColor 0%, transparent 65%); pointer-events: none; }
.sc-top { position: relative; z-index: 1; }
.sc-emoji { font-size: 40px; line-height: 1; margin-bottom: 18px; display: block; filter: drop-shadow(0 0 12px currentColor); }
.sc-tag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: currentColor; opacity: .8; margin-bottom: 10px; }
.sc-card-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.sc-desc { font-size: 12.5px; color: rgba(255,255,255,.58); line-height: 1.55; }
.sc-bottom { position: relative; z-index: 1; }
.sc-stat { display: inline-flex; align-items: baseline; gap: 4px; }
.sc-stat-num { font-size: 28px; font-weight: 900; color: currentColor; line-height: 1; }
.sc-stat-unit { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); }
.sc-divider { width: 32px; height: 2px; background: currentColor; opacity: .4; margin: 14px 0 10px; border-radius: 2px; }
.sc-check { font-size: 11px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 6px; }
.sc-check::before { content: '✓'; color: currentColor; opacity: .9; font-weight: 700; font-size: 12px; }
.sc-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.sc-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid #3a3228; background: transparent; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.sc-arrow:hover { background: #2a1f14; }

/* ============== HOW (não usado mas mantido p/ futuras seções) ============== */
.how-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step-card { background: var(--white); padding: 34px 24px; text-align: center; }
.step-num { width: 54px; height: 54px; background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); color: var(--white); border-radius: 50%; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(124,58,237,.3); }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step-desc { font-size: 12.5px; color: var(--muted); line-height: 1.7; }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }

/* ============== DELIVERY TIMELINE ============== */
.delivery-section { background: var(--beige); }
.delivery-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; position: relative; }
@media (min-width: 768px) { .delivery-timeline { flex-direction: row; gap: 0; } }
.dt-step { flex: 1; display: flex; align-items: flex-start; gap: 16px; padding: 0 0 32px; position: relative; }
@media (min-width: 768px) { .dt-step { flex-direction: column; align-items: center; text-align: center; padding: 0 18px; } }
.dt-step::before { content: ''; position: absolute; left: 19px; top: 44px; width: 2px; background: var(--border); bottom: 0; }
@media (min-width: 768px) { .dt-step::before { left: 50%; top: 21px; width: 100%; height: 2px; bottom: auto; transform: translateX(50%); } }
.dt-step:last-child::before { display: none; }
.dt-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; position: relative; z-index: 1; box-shadow: 0 3px 10px rgba(124,58,237,.3); }
.dt-body h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.dt-body p { font-size: 12.5px; color: var(--muted); }
.dt-badge { display: inline-block; margin-top: 6px; padding: 3px 10px; background: var(--green-soft); color: var(--green); border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ============== COMPARISON ============== */
.comparison-section { background: var(--white); overflow: hidden; }
.comparison-wrap { overflow-x: auto; margin-top: 40px; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 440px; }
.comparison-table th { padding: 14px 14px; text-align: center; font-size: 13px; font-weight: 700; white-space: nowrap; }
.comparison-table th:first-child { text-align: left; }
.comparison-table th.col-ours { background: var(--ink); color: var(--white); }
.comparison-table th.col-them { background: var(--surface); color: var(--muted); }
.comparison-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-2); font-size: 12px; text-align: center; }
.comparison-table td:first-child { text-align: left; color: var(--ink-2); font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(odd) td { background: var(--surface-2); }
.cmp-yes { color: var(--green); font-size: 18px; font-weight: 700; }
.cmp-no  { color: #c9b9d6; font-size: 18px; }
.comparison-table th.col-ours { background: linear-gradient(135deg, var(--copper) 0%, #a78bfa 100%); color: var(--white); }

/* ============== REVIEWS ============== */
.reviews-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-summary { text-align: center; margin-bottom: 44px; }
.big-score { font-size: 68px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -2px; }
.big-stars { color: #d4930a; font-size: 28px; letter-spacing: 4px; margin: 6px 0; }
.reviews-count { font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.rating-bars { max-width: 360px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; padding-top: 18px; border-top: 1px solid var(--border); }
.rb-row { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 10px; font-size: 11px; }
.rb-label { color: var(--muted); font-weight: 600; }
.rb-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rb-fill { display: block; height: 100%; background: #d4930a; border-radius: 4px; }
.rb-pct { font-size: 11px; color: var(--ink); font-weight: 600; text-align: right; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 9px; border: 1px solid var(--border); }
.rv-header { display: flex; align-items: center; gap: 10px; }
.rv-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; box-shadow: 0 2px 6px rgba(124,58,237,.25); }
.rv-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.rv-loc  { font-size: 11px; color: var(--muted); }
.rv-stars { color: #d4930a; font-size: 13px; letter-spacing: 1px; }
.rv-text { font-size: 12.5px; color: var(--muted); line-height: 1.7; flex: 1; }
.rv-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); margin-top: 4px; border: 1px solid var(--border-2); }
.rv-verified { font-size: 10px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 3px; }
.rv-product { font-size: 10px; color: var(--muted-2); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); color: var(--ink); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: border-color .18s; }
.carousel-btn:hover { border-color: var(--ink); }

/* ============== OFFER ============== */
.offer-section { background: var(--white); }
.offer-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 36px; text-align: center; max-width: 640px; margin: 0 auto; }
.offer-tag { display: inline-block; background: linear-gradient(135deg, #d63384 0%, #b8407e 100%); color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 14px; border-radius: 3px; margin-bottom: 18px; box-shadow: 0 2px 8px rgba(214,51,132,.3); }
.offer-title { font-size: clamp(18px, 2.6vw, 26px); font-weight: 800; color: var(--ink); margin-bottom: 22px; letter-spacing: -.3px; }
.offer-old { font-size: 15px; color: var(--muted-2); text-decoration: line-through; margin-bottom: 4px; font-weight: 500; }
.offer-new { font-size: clamp(44px, 6vw, 64px); font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -2px; }
.offer-pix  { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 5px; }
.offer-inst { font-size: 12px; color: var(--muted); margin-top: 3px; }
.offer-vs { margin: 18px 0 0; }
.offer-vs .vs-box { background: var(--white); }
.offer-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 16px; }
.btn-offer { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: var(--white); font-size: 15px; font-weight: 800; padding: 18px 32px; border-radius: var(--radius); width: 100%; max-width: 420px; letter-spacing: .3px; transition: background .18s, transform .12s, box-shadow .18s; border: 2px solid var(--green); min-height: 58px; box-shadow: 0 4px 16px rgba(22,163,74,.32); text-transform: uppercase; }
.btn-offer:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(22,163,74,.42); }
.stock-wrap { width: 100%; max-width: 380px; margin: 20px auto 0; }
.stock-labels { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 6px; }
.stock-red { color: var(--red); font-weight: 700; }
.stock-pct { color: var(--muted); }
.stock-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.stock-fill { height: 100%; background: var(--red); border-radius: 3px; }
.countdown-wrap { margin-top: 22px; }
.countdown-label { font-size: 11px; color: var(--muted); margin-bottom: 8px; letter-spacing: .3px; }
.countdown { display: flex; gap: 8px; justify-content: center; align-items: flex-start; }
.cd-block { text-align: center; }
.cd-num { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); color: var(--white); border-radius: 6px; font-size: 24px; font-weight: 800; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; letter-spacing: -.5px; box-shadow: 0 3px 10px rgba(124,58,237,.3); }
.cd-sep { font-size: 22px; font-weight: 800; color: var(--muted-2); margin-top: 15px; }
.cd-label { font-size: 9px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
/* Mobile: esconder color-label-2 (Aconchego/Nuvem/Serenity) em qualquer seção */
@media (max-width: 600px) {
  .color-label-2 { display: none !important; }
}

@media (max-width: 600px) {
  .offer-section .container { padding: 0 12px !important; min-width: 0; }
  .offer-section, .offer-section *, .offer-box, .offer-box *, .vs-box, .vs-box * { min-width: 0 !important; }
  .offer-box { padding: 22px 12px !important; overflow: visible !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box; min-width: 0 !important; }
  .offer-title { font-size: 16px !important; line-height: 1.3 !important; overflow-wrap: anywhere; word-wrap: break-word; }
  .offer-pix, .offer-inst { font-size: 11px !important; line-height: 1.5; overflow-wrap: anywhere; word-wrap: break-word; padding: 0 4px; }
  .offer-vs { margin: 12px 0 0; }
  .offer-vs .vs-box { padding: 12px 10px !important; }
  /* Tamanhos viram 2×2 e cores viram 3×1 mais comprimidos */
  .offer-section .size-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .offer-section .size-opt { min-height: 78px; padding: 10px 6px 8px; }
  .offer-section .size-label { font-size: 15px; }
  .offer-section .size-price { font-size: 10px; }
  .offer-section .size-dim { font-size: 9px; }
  .offer-section .color-grid--offer {
    display: flex !important;
    flex-direction: row !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .offer-section .color-opt {
    padding: 10px 4px !important;
    min-width: 0 !important;
    flex: 1 1 33% !important;
    box-sizing: border-box;
    gap: 4px !important;
  }
  .offer-section .color-label { font-size: 11px !important; line-height: 1.15 !important; }
  .offer-section .color-label-2 { display: none !important; }
  .offer-section .color-swatch { width: 24px !important; height: 24px !important; flex-shrink: 0; }
  .offer-section .vs-title { font-size: 12px; }
  .offer-section .vs-sub { font-size: 10px; }
  .offer-section .vs-selected-display { font-size: 11px; padding: 8px 10px; }
}

/* ============== GUARANTEE + TRUST CARDS ============== */
.guarantee-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-box { display: flex; align-items: center; gap: 36px; background: var(--white); border-radius: var(--radius-lg); padding: 38px; border: 1px solid var(--border); max-width: 780px; margin: 0 auto; }
.guarantee-icon { font-size: 68px; flex-shrink: 0; }
.guarantee-content h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.guarantee-content p { font-size: 13px; color: var(--muted); line-height: 1.75; }
@media (max-width: 600px) { .guarantee-box { flex-direction: column; text-align: center; padding: 26px 18px; gap: 18px; } }

.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.trust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; }
.trust-card-icon { font-size: 36px; margin-bottom: 12px; }
.trust-card h4 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.trust-card p { font-size: 12px; color: var(--muted); line-height: 1.7; }
@media (max-width: 768px) { .trust-cards { grid-template-columns: 1fr; gap: 12px; } }

/* ============== PAYMENTS ============== */
.payments-section { background: #2a1640; color: #d8c8e6; padding: 36px 0; }
.payments-title { font-size: 13px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; text-align: center; }
.payments-text { font-size: 12px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto 18px; text-align: center; line-height: 1.7; }
.payments-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 56px; height: 32px; padding: 0 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; font-size: 10px; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,.85); text-transform: uppercase; }
.pay-pix { background: #32bcad; border-color: #32bcad; color: #fff; }

/* ============== FINAL CTA — gradiente lilás-escuro ============== */
.final-cta { background: linear-gradient(135deg, #2a1640 0%, #4c2a7a 50%, #6b3aa8 100%); color: var(--white); text-align: center; padding: 76px 0; }
.final-cta-title { font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -.5px; }
.final-cta-title em { font-style: normal; color: #f5b4d4; }
.final-cta-sub { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: var(--white); font-size: 15px; font-weight: 800; padding: 18px 44px; border-radius: var(--radius); letter-spacing: .3px; transition: background .18s, transform .12s, box-shadow .18s; max-width: 420px; width: 100%; min-height: 58px; box-shadow: 0 6px 22px rgba(22,163,74,.4); border: 2px solid var(--green); text-transform: uppercase; }
.btn-white:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-1px); }
.final-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-size: 11px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ============== FOOTER ============== */
.footer { background: linear-gradient(180deg, #1a0f2e 0%, #2a1640 100%); color: rgba(255,255,255,.5); padding: 44px 0 20px; border-top: 1px solid rgba(255,255,255,.06); position: relative; }
/* Barra colorida arco-íris no topo do footer (como na original) */
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f5b4d4 0%, #c4a8e8 25%, #a8c4f0 50%, #b4e4d0 75%, #f5b4d4 100%); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: -.3px; margin-bottom: 14px; }
.footer-brand p { font-size: 12px; line-height: 1.7; max-width: 380px; }
.footer-mini { margin-top: 14px; font-size: 11.5px; line-height: 1.9; color: rgba(255,255,255,.55); }
.footer-col h5 { color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .8px; }
.footer-col li { margin-bottom: 10px; font-size: 12px; line-height: 1.5; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col a:hover { color: rgba(255,255,255,.95); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 11px; align-items: center; }
.footer-payments { display: flex; gap: 6px; flex-wrap: wrap; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } .footer-bottom { justify-content: center; text-align: center; } }

/* ============== STICKY CTA ============== */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 10px 20px; z-index: 999; display: flex; align-items: center; justify-content: space-between; gap: 14px; transform: translateY(100%); transition: transform .28s ease; box-shadow: 0 -3px 16px rgba(40,25,10,.09); }
.sticky-cta.visible { transform: translateY(0); }
.sticky-prices .s-old { font-size: 10px; color: var(--muted-2); text-decoration: line-through; }
.sticky-prices .s-new { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.5px; }
.sticky-tag { font-size: 11px; color: var(--red); font-weight: 700; margin-left: 3px; }
.sticky-stock { font-size: 11px; color: var(--red); font-weight: 700; }
.sticky-btn { background: var(--green); color: var(--white); font-size: 13px; font-weight: 800; padding: 12px 22px; border-radius: var(--radius); letter-spacing: .3px; transition: background .18s; white-space: nowrap; flex-shrink: 0; min-height: 44px; display: flex; align-items: center; text-transform: uppercase; box-shadow: 0 2px 10px rgba(22,163,74,.3); }
.sticky-btn:hover { background: var(--green-2); }
@media (max-width: 480px) { .sticky-stock { display: none; } }

/* ============== REVEAL ANIMATIONS ============== */
/* Por padrão, conteúdo fica visível. JS opta IN nas animações via .js-reveal-enabled */
.reveal { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }
.js-reveal-enabled .reveal:not(.revealed) { opacity: 0; transform: translateY(22px); }
.reveal.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; } .delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js-reveal-enabled .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============== SOCIAL PROOF POPUP ============== */
.sp-popup { position: fixed; bottom: 90px; left: 16px; z-index: 9999; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px 18px 14px 14px; display: flex; align-items: center; gap: 12px; max-width: 300px; transform: translateX(-120%); transition: transform .4s cubic-bezier(.34,1.56,.64,1); pointer-events: none; }
.sp-popup.visible { transform: translateX(0); pointer-events: all; }
.sp-popup-icon { font-size: 30px; flex-shrink: 0; }
.sp-popup-text { font-size: 12px; line-height: 1.4; color: var(--ink-2); }
.sp-popup-text strong { color: var(--ink); }
.sp-popup-text span { color: var(--muted); font-size: 11px; }
.sp-popup-close { position: absolute; top: 6px; right: 8px; font-size: 16px; color: var(--muted-2); cursor: pointer; line-height: 1; background: none; border: none; padding: 0; }

/* ============================================================
   CARRINHO LATERAL (drawer cart)
============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(40,20,60,.55); opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 1100; backdrop-filter: blur(2px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--white);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(40,20,60,.22);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f6f1fa 0%, #ede2f5 100%);
}
.cart-head-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.cart-head-count { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.cart-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ink); line-height: 1;
  transition: background .18s, border-color .18s;
}
.cart-close:hover { background: var(--surface); border-color: var(--copper); }

.cart-body { flex: 1; overflow-y: auto; padding: 18px 22px; }

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-2);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 80px; border-radius: var(--radius);
  object-fit: cover; border: 1px solid var(--border);
  background: linear-gradient(155deg, #ede2f5 0%, #d8c4ec 100%);
}
.cart-item-body { display: flex; flex-direction: column; gap: 6px; padding-right: 22px; min-width: 0; }
.cart-item-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; word-wrap: break-word; overflow-wrap: anywhere; }
.cart-item-sub { font-weight: 600; color: var(--copper); font-size: 12px; }
.cart-item-meta { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.cart-item-subtotal { font-size: 11px; color: var(--green); font-weight: 700; margin-top: 2px; }
.cart-item-remove {
  position: absolute; top: 12px; right: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; color: var(--muted); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
}
.cart-item-remove:hover { background: #fdecf3; color: var(--red); border-color: var(--red); }

.qty-stepper {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.qty-btn {
  width: 30px; height: 30px;
  font-size: 16px; font-weight: 800; color: var(--ink);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: var(--lilac); color: var(--white); }
.qty-num { padding: 0 12px; font-size: 13px; font-weight: 700; color: var(--ink); min-width: 32px; text-align: center; }

.cart-empty {
  flex: 1;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 28px;
}
.cart-empty-icon { font-size: 56px; margin-bottom: 14px; opacity: .7; }
.cart-empty h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.cart-empty p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }

.cart-foot { border-top: 1px solid var(--border); padding: 18px 22px 22px; background: var(--surface-2); }
.cart-extra { display: flex; flex-direction: column; gap: 4px; padding: 10px 12px; margin-bottom: 12px; background: var(--green-soft); border: 1px solid rgba(22,163,74,.18); border-radius: var(--radius); font-size: 11.5px; color: var(--green); font-weight: 600; }
.cart-totals { padding: 4px 0 14px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; color: var(--ink-2); }
.cart-row strong { font-size: 16px; color: var(--ink); font-weight: 800; letter-spacing: -.3px; }
.cart-row-pix span, .cart-row-pix strong { color: var(--green); }
.cart-row-pix strong { font-size: 14px; }
.cart-checkout {
  width: 100%; min-height: 56px;
  background: var(--green); color: var(--white);
  font-size: 15px; font-weight: 800; text-transform: uppercase;
  border-radius: var(--radius); padding: 16px 24px;
  letter-spacing: .3px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(22,163,74,.32);
  border: 2px solid var(--green);
}
.cart-checkout:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-1px); }
.cart-reassurance { font-size: 11px; color: var(--muted-2); text-align: center; margin-top: 10px; line-height: 1.6; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw !important; max-width: 100vw !important; right: 0; left: 0; }
  .cart-head { padding: 16px 14px; }
  .cart-body { padding: 12px 14px; }
  .cart-foot { padding: 12px 14px 16px; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 10px; padding: 12px 0; }
  .cart-item-img { width: 60px; height: 60px; }
  .cart-item-body { padding-right: 26px; }
  .cart-item-title { font-size: 12.5px; line-height: 1.3; }
  .cart-item-meta { font-size: 11px; }
  .cart-item-price { font-size: 13px; }
  .cart-extra { font-size: 11px; }
  .cart-checkout { font-size: 14px; padding: 14px 18px; min-height: 50px; }
  .cart-reassurance { font-size: 10.5px; }
}

/* ============== UTIL & FIXES ============== */
.shopify-section, [data-shopify], .pf-loaded, .pf-content { display: contents; }

/* Garantir que nada vaze horizontalmente — root level */
body > * { max-width: 100vw; }
.ann-bar, .header, .hero, .trust-bar, .section, .footer, .final-cta, .payments-section, .showcase-section { max-width: 100vw; overflow-x: hidden; }
.offer-box, .vs-box { max-width: 100%; min-width: 0; }
.color-grid, .size-grid { min-width: 0; max-width: 100%; }
.sc-scroll-wrap { overflow: hidden; }
