/* ============================================================
   Marco Moretti — vitrine FR
   Medidas extraídas do render da referência (Symmetry 8.2.0).
   ============================================================ */

:root {
  --fg:            #202223;   /* rgb(32,34,35)   */
  --fg-muted:      #6d7175;   /* rgb(109,113,117)*/
  --fg-soft:       #232323;
  --bg:            #ffffff;
  --bg-alt:        #f7f7f7;
  --border:        #e3e3e3;
  --border-strong: #232323;
  --green:         #398f09;   /* badge de desconto */
  --ticker-bg:     #f0ebe3;
  --ticker-bd:     #e2d9ce;
  --ticker-fg:     #5c4a35;
  --ticker-em:     #3a2a18;
  --fr-blue:       #002395;
  --fr-red:        #ED2939;

  --font: Montserrat, sans-serif;

  --page: 1600px;
  --gutter: 60px;
  --grid-gap: 30px;
  --card-ar: 315 / 224;      /* 1.40625 */
}

@font-face { font-family: Montserrat; font-weight: 500; font-style: normal; font-display: swap;
  src: url("fonts/montserrat-500.woff2") format("woff2"); }
@font-face { font-family: Montserrat; font-weight: 700; font-style: normal; font-display: swap;
  src: url("fonts/montserrat-700.woff2") format("woff2"); }

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 400; line-height: 1.25; }
/* headings do tema: 23.6px / 400 / letter-spacing -0.04em */
.h-section { font-size: 23.6px; font-weight: 400; letter-spacing: -0.04em; margin: 0; }

.container { max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: none; }
.center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* espaçamento vertical de seção (fully-spaced-row--medium) */
.row-medium { padding-block: 40px; }
.row-large  { padding-block: 60px; }

/* ============================ botão ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 28px; border: 1px solid #000; border-radius: 0;
  background: #000; color: #fff;
  font: inherit; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  cursor: pointer; text-align: center; transition: opacity .15s ease;
}
.btn:hover { opacity: .82; text-decoration: none; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn--alt { background: #fff; color: var(--fg-soft); border-color: var(--fg-soft); }
.btn--block { width: 100%; }

/* ============================ ticker ============================ */
.mm-ticker-wrap {
  width: 100%; background: var(--ticker-bg); overflow: hidden;
  border-top: 1px solid var(--ticker-bd); border-bottom: 1px solid var(--ticker-bd);
}
.mm-bwr-strip { display: flex; width: 100%; height: 2px; }
.mm-bwr-strip span { flex: 1; display: block; height: 100%; }
.mm-bwr-b { background-color: var(--fr-blue); }
.mm-bwr-w { background-color: #fff; }
.mm-bwr-r { background-color: var(--fr-red); }
.mm-ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: mm-ticker 18s linear infinite; padding: 9px 0;
}
.mm-ticker-track:hover { animation-play-state: paused; }
.mm-ticker-item {
  display: flex; align-items: center; gap: 8px; padding: 0 16px; white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ticker-fg);
}
.mm-ticker-item em { font-style: normal; font-weight: 800; color: var(--ticker-em); }
.mm-ticker-sep {
  display: flex; flex-direction: column; gap: 2px;
  align-items: center; justify-content: center; flex-shrink: 0; padding: 0 8px;
}
.mm-ticker-sep span { display: block; width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.mm-sep-b { background-color: var(--fr-blue); }
.mm-sep-w { background-color: #bbb; }
.mm-sep-r { background-color: var(--fr-red); }
@keyframes mm-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* o ticker do topo encosta no header; o do meio da página respira */
main .mm-ticker-wrap { margin-block: 40px; }
@media (prefers-reduced-motion: reduce) { .mm-ticker-track { animation: none; } }

/* ============================ header ============================ */
.header { position: sticky; top: 0; z-index: 60; background: var(--bg); }

.logo-area {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); min-height: 81px;
}
.logo-area__left, .logo-area__right { flex: 1 1 0; display: flex; align-items: center; gap: 18px; }
.logo-area__right { justify-content: flex-end; }
.logo { display: block; padding: 20px 0; }
.logo img { width: 200px; height: 40px; object-fit: contain; }

.header-link { font-size: 11px; color: var(--fg-soft); }
.header-link:hover { text-decoration: underline; }

.cart-btn { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-size: 11px;
  color: var(--fg-soft); display: inline-flex; align-items: center; gap: 7px; }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  min-width: 16px; height: 16px; padding: 0 4px; background: #000; color: #fff;
  border-radius: 8px; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-count[hidden] { display: none; }

/* linha 2: navegação centralizada */
.navigation { }
.nav-list {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-block; padding: 18px; font-size: 13px; font-weight: 400;
  color: var(--fg-muted); letter-spacing: normal; text-transform: none;
}
.nav-link:hover { color: var(--fg); text-decoration: none; }
.nav-item > .nav-link { position: relative; }
.nav-item > .nav-link::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 12px; height: 2px;
  background: var(--fg); transform: scaleX(0); transition: transform .2s ease;
}
.nav-item:hover > .nav-link::after { transform: scaleX(1); }

.nav-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 230px; background: #fff; border: 1px solid var(--border);
  padding: 10px 0; display: none; z-index: 70;
}
.nav-item:hover .nav-panel, .nav-item:focus-within .nav-panel { display: block; }
.nav-panel a { display: block; padding: 5px 20px; font-size: 13px; color: var(--fg-muted); }
.nav-panel a:hover { color: var(--fg); text-decoration: none; }

.burger { display: none; background: none; border: 0; cursor: pointer; font-size: 18px; padding: 6px; }

/* ============================ hero ============================ */
/* Só a imagem — o texto "FRENCH DAYS" está na própria arte. */
.hero { display: block; --image-height: 260px; margin-bottom: 80px; }
.hero img { width: 100%; height: var(--image-height); object-fit: cover; }
@media (min-width: 768px) { .hero { --image-height: 720px; } }

/* ============================ separador tricolor ============================ */
.mm-fd-separator { width: 100%; padding: 12px 30%; display: flex; margin-block: 40px; }
.mm-fd-bar { display: flex; width: 100%; height: 4px; }
.mm-fd-bar span { flex: 1; display: block; height: 100%; }
.mm-fd-blue  { background-color: var(--fr-blue); }
.mm-fd-white { background-color: #fff; }
.mm-fd-red   { background-color: var(--fr-red); }

/* ============================ value props ============================ */
.values-head { text-align: center; margin-bottom: 26px; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value { text-align: center; }
.value img, .value svg { width: 70px; height: 70px; margin: 0 auto 10px; opacity: .85; transition: opacity .2s ease; }
.value:hover img { opacity: 1; }
.value p { font-size: 13px; line-height: 1.5; color: var(--fg); margin: 0; }

/* ============================ grid de produto ============================ */
.product-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap);
}
.product-block { text-align: center; }
.product-block__image { position: relative; display: block; }
.product-block__image img {
  width: 100%; aspect-ratio: var(--card-ar); object-fit: contain; background: #fff;
}
.product-label {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: #fff; color: var(--green);
  font-size: 11px; font-weight: 600; line-height: 1.15; padding: 5.5px 11px; border-radius: 0;
  white-space: nowrap;
}
.product-block__title {
  display: block; font-size: 14px; font-weight: 500; color: var(--fg);
  margin: 10px 0 0; line-height: 1.6;
}
.product-block__title:hover { text-decoration: none; }
.product-price { margin: 0 0 31px; font-size: 14px; line-height: 1.6; }
.product-price .now { font-weight: 500; }
.product-price .was { color: var(--fg-muted); text-decoration: line-through; margin-left: 6px; }

/* ============================ lookbook ============================ */
.lookbook { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap); }
.look { position: relative; display: block; overflow: hidden; }
.look img { aspect-ratio: 315/460; object-fit: cover; width: 100%; transition: transform .5s ease; }
.look:hover img { transform: scale(1.04); }
.look:hover { text-decoration: none; }
.look__tag {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; color: #fff;
  background: linear-gradient(0deg, rgb(0 0 0 / .55), transparent);
  font-size: 12px; font-weight: 500; letter-spacing: .03em;
}

/* ============================ colunas editoriais ============================ */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.col { text-align: center; }
.col img { width: 100%; aspect-ratio: 430/240; object-fit: cover; margin-bottom: 14px; }
.col h3 { font-size: 18px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: .55em; }
.col p { font-size: 13px; color: var(--fg-muted); }
.col a { font-size: 13px; text-decoration: underline; }

/* ============================ FAQ ============================ */
.faq { max-width: 720px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; padding: 20px 30px 20px 0; font-size: 18.2px; font-weight: 500;
  line-height: 1.6; list-style: none; display: flex; justify-content: space-between; gap: 16px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-weight: 400; font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq__body { padding-bottom: 22px; color: var(--fg-muted); font-size: 14px; }
.faq__body p:last-child { margin-bottom: 0; }

/* ============================ PDP ============================ */
/* Referência: galeria 608px · coluna de info 490px, dentro de 1350. */
.pdp {
  display: grid; grid-template-columns: minmax(0, 603px) 490px;
  justify-content: space-between; gap: 40px; align-items: start;
}
.gallery { display: grid; gap: 10px; }
.gallery__main { position: relative; }
.gallery__main img { width: 100%; aspect-ratio: var(--card-ar); object-fit: contain; background: #fff; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.thumb { padding: 0; border: 1px solid transparent; background: none; cursor: pointer; }
.thumb[aria-current="true"] { border-color: var(--border-strong); }
.thumb img { width: 100%; aspect-ratio: var(--card-ar); object-fit: contain; }

.breadcrumb { font-size: 11px; color: var(--fg-muted); display: flex; gap: 6px; padding-block: 14px; }
.breadcrumb a:hover { color: var(--fg); }

.pdp__info { position: sticky; top: 160px; }
.product-title { font-size: 34px; font-weight: 400; letter-spacing: -0.04em; line-height: 1.2; margin: 0 0 12px; }
.price-container { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.price__current { font-size: 23.6px; font-weight: 500; color: rgb(57, 143, 9); }
.price__was { font-size: 23.6px; font-weight: 500; color: var(--fg); text-decoration: line-through; }

/* banner "BIENTÔT EN RUPTURE DE STOCK" — --box-color #f4d5d5 / rgb(143,8,8) */
.stock-banner {
  display: inline-flex; align-items: center; gap: 9px;
  background: #f4d5d5; color: rgb(143, 8, 8);
  font-size: 14px; font-weight: 700; line-height: 1.4;
  padding: 15px 17px 14px; margin: 0 0 20px; text-decoration: underline;
}
.stock-banner svg { width: 20px; height: 20px; flex: 0 0 auto; }

.rating-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; margin: 14px 0 0; color: var(--fg);
}
.rating-row strong { font-weight: 700; }
.rating-row a { text-decoration: underline; }

.pdp__rule { border: 0; border-top: 1px solid var(--border); margin: 20px 0; }

/* pill do BOGO — --box-color:#e0f4d5 / texto rgb(57,143,8) na referência */
.bogo-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #e0f4d5; color: rgb(57, 143, 8);
  font-size: 14px; font-weight: 500; letter-spacing: normal; line-height: 1.4;
  padding: 15px 17px 14px; margin: 0 0 20px;
}
.bogo-pill svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* linha de benefícios com ícones (3 colunas + nota) */
.benefits-box { padding: 15px 17px 14px; margin: 30px 0 0; }
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin: 0; padding: 0 8px;
}
.benefit { text-align: center; font-size: 13px; line-height: 1.35; }
.benefit img { width: 38px; height: 38px; margin: 0 auto 8px; object-fit: contain; }
.benefits-note { font-size: 12px; color: var(--fg-muted); text-align: center; margin: 8px 0 0; }

/* Trustpilot */
.tp-micro { margin: 0 0 16px; min-height: 20px; }
.trustpilot-widget { min-height: 20px; }

/* accordions da coluna de info */
.disclosures { margin-top: 24px; border-top: 1px solid var(--border); }
.disclosures details { border-bottom: 1px solid var(--border); }
.disclosures summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 16px 30px 16px 0; font-size: 14px; font-weight: 500;
}
.disclosures summary::-webkit-details-marker { display: none; }
.disclosures summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 20px; font-weight: 400; line-height: 1;
}
.disclosures details[open] summary::after { content: "\2013"; }
.disclosures__panel { padding-bottom: 18px; font-size: 14px; color: var(--fg-muted); }
.disclosures__panel > *:last-child { margin-bottom: 0; }
.disclosures__panel ul { padding-left: 1.1em; }
.disclosures__panel li { margin-bottom: .4em; }

/* barra fixa de compra que aparece ao rolar */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: #fff; border-top: 1px solid var(--border);
  transform: translateY(100%); transition: transform .25s ease;
  padding: 10px 0;
}
.sticky-atc[data-show="true"] { transform: none; }
.sticky-atc__inner { display: flex; align-items: center; gap: 16px; }
.sticky-atc__img { width: 52px; height: 37px; object-fit: contain; flex: 0 0 auto; }
.sticky-atc__txt { flex: 1; min-width: 0; }
.sticky-atc__title { font-size: 13px; font-weight: 500; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc__price { font-size: 13px; color: var(--fg-muted); margin: 0; }
.sticky-atc .atc { width: auto; flex: 0 0 auto; padding: 12px 26px; }
@media (max-width: 767px) { .sticky-atc__txt { display: none; } .sticky-atc .atc { flex: 1; } }

/* seletor de modelos ("Couleurs :") — .pl-swatches da referência */
.swatches__label { font-size: 14px; font-weight: 500; margin: 0 0 8px; }
.swatches { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 22px; }
.swatch-link {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 53px;
}
.swatch-link img {
  width: 46px; height: 46px; border-radius: 25%; object-fit: cover;
  border: 2px solid #fff; outline: 1px solid transparent; transition: outline-color .15s ease;
}
.swatch-link:hover img { outline-color: var(--border); }
.swatch-link[aria-current="true"] img { outline-color: var(--fg); }

.atc {
  width: 100%; padding: 15px 25px; border: 1px solid #000; background: #000; color: #fff;
  font: inherit; font-size: 14px; font-weight: 500; line-height: 1.1;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: opacity .15s ease;
}
.atc:hover { opacity: .85; }
.atc:disabled { opacity: .45; cursor: not-allowed; }



/* ============================ footer ============================ */
.footer { background: var(--bg); border-top: 1px solid var(--border); margin-top: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 60px 0 80px; }
.footer h4 { font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a, .footer p { font-size: 13px; color: var(--fg-muted); }
.footer__bottom {
  margin-top: 0; padding: 18px 0 26px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: var(--fg-muted);
}
.pay { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pay img { height: 24px; width: auto; display: block; }

/* ============================ cart drawer ============================ */
/* Medidas do Kaching Cart da referência: painel 525px, gutter 24px. */
.overlay { position: fixed; inset: 0; z-index: 1049; background: rgb(0 0 0 / .45);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.overlay[data-open="true"] { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(525px, 100%); background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.drawer[data-open="true"] { transform: none; }

.drawer__head {
  display: flex; align-items: center; justify-content: center; position: relative;
  padding: 18px 24px;
}
.drawer__title { font-size: 30px; font-weight: 500; color: #000; margin: 0; line-height: 1.2; }
.drawer__close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; padding: 6px; cursor: pointer; font-size: 22px; line-height: 1; color: #000;
}

/* barra preta com o contador de reserva */
.drawer__announce {
  background: #000; color: #fff; font-size: 12px; font-weight: 500; line-height: 1.2;
  text-align: center; padding: 10px 12px;
}
.drawer__announce b { font-weight: 700; }

/* barra de progresso da promoção */
.tiered { padding: 12px 24px 16px; }
.tiered__text { font-size: 13px; text-align: center; margin: 0 0 8px; }
.tiered__text b { font-weight: 700; }
.tiered__track { height: 11px; background: #eaecf0; overflow: hidden; position: relative; }
.tiered__fill { height: 100%; background: #1d2939; width: 0; transition: width .3s ease; }
.tiered__icons { display: flex; justify-content: flex-end; margin-top: 6px; font-size: 15px; }
.tiered__unlocked { text-align: right; font-size: 13px; color: var(--green); font-weight: 500; margin: 2px 0 0; }

.drawer__body { flex: 1; min-height: 0; overflow-y: auto; padding: 0; }
.drawer__foot { padding: 0 24px 18px; }

/* linha de produto — 140px, imagem 100x100 */
.line {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 16px;
  padding: 20px 24px; align-items: start; min-height: 140px;
}
.line__media img { width: 100px; height: 100px; object-fit: contain; background: #fff; }
.line__title { font-size: 14px; font-weight: 500; margin: 0 0 10px; color: var(--fg); }
.line__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.line__was { font-size: 14px; color: #98a2b3; text-decoration: line-through; }
.line__now { font-size: 16px; font-weight: 700; }
.line__now--free { color: var(--fg); }
.line__save {
  display: inline-flex; align-items: center; gap: 5px;
  background: #dcfae6; color: #079455; font-size: 12px; font-weight: 500;
  padding: 3px 9px; border-radius: 3px;
}
.line__qty { display: inline-flex; align-items: center; border: 1px solid #d0d5dd; }
.line__qty button { background: none; border: 0; width: 30px; height: 30px; cursor: pointer; font: inherit; font-size: 15px; }
.line__qty span { min-width: 30px; text-align: center; font-size: 14px; }
.line__remove { background: none; border: 0; padding: 0; margin-top: 2px; cursor: pointer; color: #667085; font-size: 15px; line-height: 1.2; }

/* selo de confiança */
.drawer__trust {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #fff; color: #079455; font-size: 14px; font-weight: 500; line-height: 1.8;
  padding: 15px 24px;
}

/* cupom */
/* upsell dentro do carrinho — cores do Kaching da referência */
.upsell { padding: 0 24px 18px; }
.upsell__title {
  color: #079455; font-size: 15px; font-weight: 700; text-align: center; margin: 0 0 12px;
}
.upsell__wrap { position: relative; background: #f2f4f7; padding: 16px 34px; }
.upsell__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 16px) / 2);
  gap: 16px; overflow-x: auto; scrollbar-width: none;
}
.upsell__track::-webkit-scrollbar { display: none; }
.upsell__card { background: transparent; text-align: center; }
.upsell__card img { width: 78px; height: 78px; object-fit: cover; margin: 0 auto 8px; background: #fff; }
.upsell__name { font-size: 13px; font-weight: 700; margin: 0 0 4px; }
.upsell__price { font-size: 13px; margin: 0 0 6px; }
.upsell__price .was { color: #98a2b3; text-decoration: line-through; margin-left: 5px; }
.upsell__save {
  display: inline-block; background: #dcfae6; color: #079455;
  font-size: 12px; padding: 2px 8px; border-radius: 3px; margin-bottom: 8px;
}
.upsell__add {
  display: block; width: 100%; border: 0; background: #079455; color: #fff;
  font: inherit; font-size: 13px; font-weight: 500; padding: 8px 10px; cursor: pointer;
}
.upsell__add:hover { opacity: .9; }
.upsell__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #344054; font-size: 22px; line-height: 1;
  cursor: pointer; padding: 4px;
}
.upsell__nav:disabled { opacity: .25; cursor: default; }
.upsell__nav--prev { left: 4px; }
.upsell__nav--next { right: 4px; }

.totals { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 6px; }
.totals--discount { color: var(--fg); }
.totals__tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f2f4f7; color: #475467; font-size: 12px; padding: 3px 9px; border-radius: 3px;
}
.totals--sum { font-size: 18px; font-weight: 700; margin: 8px 0 14px; }

.drawer__checkout {
  width: 100%; height: 52px; border: 0; background: #000; color: #fff;
  font: inherit; font-size: 18px; font-weight: 600; cursor: pointer;
}
.drawer__checkout:hover { opacity: .88; }
.drawer__checkout:disabled { opacity: .5; cursor: not-allowed; }

.drawer__pay { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 14px; }
.drawer__pay img { height: 24px; width: auto; display: block; }

.drawer__empty { text-align: center; padding: 60px 24px; }
.drawer__empty p { font-size: 18px; margin-bottom: 6px; }
.drawer__empty .sub { font-size: 12px; color: #32a43f; font-weight: 500; margin-bottom: 22px; }

/* ============================ responsivo ============================ */
@media (max-width: 1200px) {
  :root { --gutter: 30px; }
}
@media (max-width: 1024px) {
  .product-grid, .lookbook { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp__info { position: static; }
  .product-title { font-size: 26px; }
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  :root { --gutter: 16px; --grid-gap: 14px; }
  .product-grid, .lookbook { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cols, .footer__cols { grid-template-columns: 1fr; }
  /* a 375px o logo colidia com "Compte": encolhe e some com o texto acessório */
  .logo-area { min-height: 60px; gap: 8px; }
  .logo { padding: 10px 0; }
  .logo img { width: 132px; height: 26px; }
  .logo-area__left, .logo-area__right { flex: 0 0 auto; gap: 10px; }
  .logo-area__left { flex: 1 1 0; }
  .logo-area__right { flex: 1 1 0; }
  .header-link { display: none; }
  .cart-btn > span:first-child { display: none; }
  .cart-btn svg { width: 22px; height: 22px; }
  .burger { display: inline-flex; }
  .navigation { position: absolute; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); display: none; }
  .navigation[data-open="true"] { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { padding: 13px var(--gutter); display: block; }
  .nav-panel { position: static; transform: none; display: block; border: 0; padding: 0 0 6px 16px; min-width: 0; }
  .mm-ticker-item { font-size: 12px; padding: 0 11px; }

  /* drawer no mobile: gutter menor, imagem menor, badge sem quebra */
  .drawer__title { font-size: 22px; }
  .drawer__head { padding: 14px 16px; }
  .tiered, .drawer__trust, .drawer__foot { padding-inline: 16px; }
  .drawer__foot { padding-bottom: 16px; }
  .line { grid-template-columns: 72px 1fr auto; gap: 12px; padding: 16px; min-height: 0; }
  .line__media img { width: 72px; height: 72px; }
  .line__title { font-size: 13px; margin-bottom: 8px; }
  .line__save { font-size: 11px; padding: 2px 7px; white-space: nowrap; }
  .line__now { font-size: 15px; }
  .line__was { font-size: 13px; }
  .line__qty button { width: 26px; height: 26px; }
  .line__qty span { min-width: 26px; }
  .drawer__checkout { font-size: 15px; }
  .drawer__trust { font-size: 13px; }
  .row-medium { padding-block: 30px; }
  .h-section { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================ avaliações ============================ */
/* Layout replicado da referência; conteúdo vem de data/reviews.json. */
.reviews { position: relative; }
.reviews__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 4 * 30px) / 5);
  gap: 30px; overflow-x: auto;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }

.review {
  background: #f6f6f6; padding: 24px 22px;
  display: flex; flex-direction: column; min-height: 212px;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star {
  width: 24px; height: 24px; background: #dcdce6; color: #fff;
  display: grid; place-items: center; font-size: 14px; line-height: 1;
}
.star.is-on { background: #00b67a; }
.review__title {
  font-size: 15px; font-weight: 700; margin: 0 0 8px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.review__text {
  font-size: 14px; line-height: 1.5; margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.review__meta { font-size: 13px; color: var(--fg-muted); margin: auto 0 0; }
.review__meta strong { color: var(--fg); font-weight: 700; }

.reviews__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff; color: var(--fg);
  font-size: 18px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.reviews__nav:hover { border-color: var(--fg); }
.reviews__nav:disabled { opacity: .3; cursor: default; }
.reviews__nav--prev { left: -46px; }
.reviews__nav--next { right: -46px; }
.reviews__summary {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  text-align: center; font-size: 14px; margin: 22px 0 0; color: var(--fg);
}
.tp-logo { height: 19px; width: auto; display: inline-block; vertical-align: middle; }
.rating-row .tp-logo { height: 17px; }

@media (max-width: 1024px) {
  .reviews__track { grid-auto-columns: calc((100% - 2 * 20px) / 3); gap: 20px; }
  .reviews__nav { display: none; }
}
@media (max-width: 767px) {
  .reviews__track { grid-auto-columns: 78%; gap: 14px; }
}

/* ============================ buffer de checkout ============================ */
.co { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: start; }
.co__items { display: grid; gap: 0; }
.co__side { border: 1px solid var(--border); padding: 22px; position: sticky; top: 160px; }
.co__field { margin: 16px 0; }
.co__field label { display: block; font-size: 13px; margin-bottom: 6px; }
.co__field input { width: 100%; height: 46px; padding: 0 12px; border: 1px solid #5f5f5f; font: inherit; font-size: 14px; }
.co__empty { text-align: center; padding: 50px 0; color: var(--fg-muted); }
@media (max-width: 1024px) { .co { grid-template-columns: 1fr; } .co__side { position: static; } }

/* ============================ order bump ============================ */
/* Fica acima dos itens e resolve em 1 clique: sem checkbox, os modelos
   já aparecem e cada um tem o próprio botão. */
.bump {
  border: 2px solid #079455; border-radius: 4px; background: #f6fef9;
  padding: 24px 22px 20px; margin: 14px 0 28px; position: relative;
  min-width: 0;
}
.bump__flag {
  position: absolute; top: -11px; left: 20px;
  background: #079455; color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 3px;
}
.bump__title {
  font-size: 19px; font-weight: 700; color: var(--fg); margin: 6px 0 4px; line-height: 1.3;
}
.bump__title em { font-style: normal; color: #079455; }
.bump__was { color: var(--fg-muted); text-decoration: line-through; font-weight: 500; font-size: 15px; margin-left: 6px; }
.bump__sub { font-size: 13px; color: var(--fg-muted); margin: 0 0 16px; }

.bump__rail { position: relative; min-width: 0; padding: 2px 36px; }
.bump__grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 12px) / 4);
  gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; min-width: 0;
}
.bump__grid::-webkit-scrollbar { display: none; }

.bump__card {
  background: #fff; border: 1px solid #d7ece0; border-radius: 4px;
  padding: 10px; text-align: center; display: flex; flex-direction: column; gap: 6px;
}
.bump__card img {
  width: 100%; aspect-ratio: 315/224; object-fit: contain; background: #fff;
}
.bump__name { font-size: 11px; font-weight: 700; letter-spacing: .02em; line-height: 1.2; margin: 0; }
.bump__cost { font-size: 13px; font-weight: 700; color: #079455; margin: 0; }
.bump__add {
  border: 0; background: #079455; color: #fff; border-radius: 3px;
  font: inherit; font-size: 12px; font-weight: 700; padding: 8px 6px; cursor: pointer;
  margin-top: auto;
}
.bump__add:hover { background: #067a46; }

.bump__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid #bfe3d0;
  background: #fff; color: #079455; font-size: 17px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 1px 4px rgb(0 0 0 / .1);
}
.bump__nav:disabled { opacity: .3; cursor: default; }
.bump__nav--prev { left: 0; }
.bump__nav--next { right: 0; }

/* estado depois de escolher */
.bump--done { background: #eafbf1; }
.bump__done { display: flex; align-items: center; gap: 14px; }
.bump__done img { width: 62px; height: 44px; object-fit: contain; background: #fff; border-radius: 3px; }
.bump__done-txt { flex: 1; min-width: 0; }
.bump__done-txt p { margin: 0; }
.bump__done-title { font-size: 14px; font-weight: 700; }
.bump__done-sub { font-size: 12px; color: var(--fg-muted); }
.bump__link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-size: 12px; color: var(--fg-muted); text-decoration: underline;
}
.bump__link:hover { color: var(--fg); }

/* refino da página de revisão */
.co__side h2 { font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.co__secure { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg-muted); margin: 14px 0 0; }
.co__steps { display: flex; gap: 8px; font-size: 12px; color: var(--fg-muted); margin: 0 0 26px; align-items: center; }
.co__steps b { color: var(--fg); font-weight: 700; }
.co__steps span { color: var(--border); }

@media (max-width: 767px) {
  .bump { padding: 18px 16px; }
  .bump__title { font-size: 17px; }
  .bump__rail { padding-inline: 0; }
  .bump__grid { grid-auto-columns: calc((100% - 12px) / 2); }
  .bump__nav { display: none; }
}

/* ============================ ícones ============================ */
.ico {
  width: 1.05em; height: 1.05em; flex: 0 0 auto;
  display: inline-block; vertical-align: -0.16em;
}
.trust .ico { width: 16px; height: 16px; margin-top: 1px; }
.line__save .ico, .drawer__trust .ico { width: 13px; height: 13px; }
.co__secure .ico { width: 14px; height: 14px; }
.bump__done-title .ico { color: #079455; }
.tiered__icons .ico { width: 15px; height: 15px; }
.line__remove .ico { width: 15px; height: 15px; }
.line__save { white-space: nowrap; }
.drawer__announce .ico { width: 13px; height: 13px; }
