/* =========================================================
   GALERIE NOIRE — v10 · Estilo Prada
   Monocromia rigorosa · sans-serif bold · hover-swap · Ken Burns
   ========================================================= */

:root {
  /* Surfaces — Prada-style: branco puro + cremes muito sutis + preto */
  --bg-0: #FFFFFF;          /* branco puro */
  --bg-1: #FAFAFA;          /* off-white para alternar */
  --bg-2: #F5F2EC;          /* cream muito sutil */
  --bg-3: #EFEAE0;          /* cream para cards (Prada-like) */
  --bg-4: #E8E2D4;

  /* Hairlines */
  --line:      #E8E2D4;
  --line-soft: #F0EBDF;
  --line-dark: #B5AE9C;

  /* Ink */
  --ink-100: #000000;       /* preto puro */
  --ink-90:  #1A1815;
  --ink-70:  #4D463D;
  --ink-50:  #847B6C;
  --ink-30:  #B5AE9C;

  /* Mantemos vars antigas por compat — mas agora todo accent é preto */
  --gold:        #000000;
  --gold-bright: #1A1815;
  --gold-deep:   #000000;

  /* Tipografia — Prada style: Helvetica/sans bold para wordmark e nomes */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-mark:    "Tenor Sans", "Cinzel", serif;          /* wordmark */
  --font-body:    "Inter", -apple-system, "Helvetica Neue", "Helvetica", Arial, sans-serif;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --container-max: 1600px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--ink-100);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--ink-100); color: var(--bg-0); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink-100);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-100);
}
.italic { font-style: italic; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.divider {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ink-100);
  margin: 0 auto;
}

/* =========================================================
   INTRO SPLASH (mantido com nova logo transparente)
   ========================================================= */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  pointer-events: auto;
}
.intro::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(0,0,0,0.04), transparent 70%);
  animation: introGlow 3s var(--ease-out) forwards;
  pointer-events: none;
}
.intro__swans {
  width: clamp(180px, 28vw, 340px);
  opacity: 0;
  transform: scale(0.95);
  animation: introSwans 2.6s var(--ease-out) forwards;
}
.intro__wordmark {
  margin-top: 36px;
  font-family: var(--font-mark);
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.62em;
  color: var(--ink-100);
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  animation: introWord 1.6s var(--ease-out) 0.9s forwards;
}
.intro__line {
  margin-top: 22px;
  width: 0; height: 1px; background: var(--ink-100);
  animation: introLine 1.4s var(--ease-out) 1.4s forwards;
}
.intro__tagline {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-70);
  opacity: 0;
  animation: introTag 1.4s var(--ease-out) 1.7s forwards;
}
.intro--out { animation: introExit 1s var(--ease-out) forwards; pointer-events: none; }
@keyframes introSwans {
  0% { opacity: 0; transform: scale(0.92); filter: blur(6px); }
  40% { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 1; transform: scale(1.03); }
}
@keyframes introGlow { 0% { opacity: 0; } 100% { opacity: 0.6; } }
@keyframes introWord { to { opacity: 1; transform: translateY(0); } }
@keyframes introLine { to { width: 64px; } }
@keyframes introTag  { to { opacity: 1; } }
@keyframes introExit { 0% { opacity: 1; } 100% { opacity: 0; transform: scale(1.05); } }
body.intro-active { overflow: hidden; }

/* =========================================================
   NAV — Prada-style: 4 cantos com wordmark central
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  background: rgba(255,255,255,0);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.nav.over-dark {
  color: #fff;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  padding-top: 14px; padding-bottom: 14px;
  color: var(--ink-100);
}
.nav__brand {
  justify-self: center;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  text-decoration: none;
}
.nav__brand img { display: none; }
.nav__wordmark {
  font-family: var(--font-mark);
  font-size: 22px;
  letter-spacing: 0.34em;
  color: inherit;
  font-weight: 500;
  line-height: 1;
}
.nav__origin {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
  margin-top: 8px;
  font-weight: 400;
}
.nav.scrolled .nav__wordmark { font-size: 18px; }
.nav__links {
  display: flex; gap: 28px;
  align-items: center; justify-self: start;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: inherit;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease-out);
}
.nav__link:hover { opacity: 0.6; }

.nav__actions { display: flex; gap: 22px; align-items: center; justify-self: end; }
.nav__action {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: inherit;
  display: flex; align-items: center; gap: 8px;
  transition: opacity 0.3s var(--ease-out);
}
.nav__action:hover { opacity: 0.6; }
.cart-count {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  background: currentColor;
  color: var(--bg-0);
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-body);
}
.nav.over-dark .cart-count { background: #fff; color: #000; }
.nav.scrolled .cart-count { background: var(--ink-100); color: var(--bg-0); }
.nav__menu-btn { display: none; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav__links { display: none; }
  .nav__menu-btn {
    display: inline-flex; width: 36px; height: 36px;
    align-items: center; justify-content: center;
    color: inherit;
    justify-self: start;
  }
  .nav__menu-btn span { display: block; width: 20px; height: 1px; background: currentColor; position: relative; }
  .nav__menu-btn span::before, .nav__menu-btn span::after {
    content: ""; position: absolute; left: 0; width: 20px; height: 1px; background: currentColor;
  }
  .nav__menu-btn span::before { top: -6px; }
  .nav__menu-btn span::after  { top:  6px; }
  .nav__wordmark { font-size: 16px; letter-spacing: 0.28em; }
  .nav__action span:not(.cart-count) { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-0);
  display: none; flex-direction: column;
  padding: 80px var(--gutter) var(--gutter);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: slideDown 0.5s var(--ease-out); }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.mobile-menu__close {
  position: absolute; top: 22px; right: var(--gutter);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ink-100);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-100);
}

/* =========================================================
   HERO — split-column elegante (imagem à esquerda, texto à direita)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px var(--gutter) 70px;
  display: grid;
  align-items: center;
  background: var(--bg-0);
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 96px;
  }
}
.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.hero__image img,
.hero__image video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__image img {
  transform-origin: 50% 50%;
  animation: heroKen 20s var(--ease-in-out) infinite alternate;
}
@keyframes heroKen {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, 0.5%); }
}

/* =========================================================
   VIDEO EDITORIAL BREAK — full-bleed cinematográfico (Dior/Prada style)
   ========================================================= */
.video-break {
  position: relative;
  height: clamp(72vh, 86vh, 900px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.video-break__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-break::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.video-break__content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 var(--gutter);
  max-width: 720px;
}
.video-break__eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  display: inline-block;
}
.video-break__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.video-break__title em { font-style: italic; font-weight: 200; }
.video-break__sub {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.video-break__cta {
  display: inline-block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding-bottom: 6px;
  font-weight: 500;
  transition: border-color 0.3s var(--ease-out);
}
.video-break__cta:hover { border-color: #fff; }
.video-break__pause {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 3;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: background 0.3s var(--ease-out);
  backdrop-filter: blur(4px);
}
.video-break__pause:hover { background: rgba(0,0,0,0.7); }
.video-break__pause::before { content: "❚❚"; letter-spacing: -1px; }
.video-break__pause.paused::before { content: "▶"; padding-left: 2px; }
.hero__content { position: relative; }
.hero__eyebrow {
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  opacity: 0;
  animation: rise 1.2s var(--ease-out) 0.4s forwards;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--ink-100);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink-100);
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.6s var(--ease-out) 0.7s forwards;
}
.hero__title em { font-style: italic; color: var(--ink-100); font-weight: 200; }
.hero__sub {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-70);
  max-width: 460px;
  line-height: 1.65;
  opacity: 0;
  animation: rise 1.4s var(--ease-out) 1.05s forwards;
}
.hero__cta-link {
  display: inline-block;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-100);
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 6px;
  font-weight: 500;
  transition: border-color 0.3s var(--ease-out);
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.3s forwards;
}
.hero__cta-link:hover { border-color: var(--ink-100); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--narrow { padding: clamp(60px, 8vw, 110px) 0; }
.section__head {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-bottom: 64px;
  gap: 16px;
}
.section__head .eyebrow { margin: 0; }
.section__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section__title em { font-style: italic; font-weight: 200; }
.section__lede {
  max-width: 540px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.6;
}

/* =========================================================
   MANIFESTO STRIP
   ========================================================= */
.manifesto {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-1);
}
.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.4;
  color: var(--ink-100);
}
.manifesto__quote::before {
  content: ""; display: block;
  width: 32px; height: 1px;
  background: var(--ink-100);
  margin: 0 auto 32px;
}
.manifesto__attr {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 32px;
}

/* =========================================================
   PRODUCT GRID — Prada style com hover-swap
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
@media (min-width: 700px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  display: block;
  background: transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease-out);
}
.product-card__media .product-card__hover {
  position: absolute; inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__media .product-card__primary { opacity: 0; }
.product-card:hover .product-card__media .product-card__hover   { opacity: 1; }

.product-card__info {
  padding: 22px var(--gutter) 0;
  margin-left: 0;
  padding-left: clamp(8px, 1vw, 24px);
  padding-right: clamp(8px, 1vw, 24px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.product-card__brand {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 8px;
  font-weight: 500;
}
.product-card__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-100);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.product-card__short {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-70);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 400;
}
.product-card__price {
  font-size: 13px;
  letter-spacing: 0.005em;
  color: var(--ink-100);
  font-feature-settings: "tnum";
  font-weight: 400;
}

/* =========================================================
   EDITORIAL BREAK (full-bleed entre seções)
   ========================================================= */
.editorial {
  position: relative;
  height: clamp(70vh, 80vh, 800px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.editorial__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.95) brightness(0.96);
  animation: edKen 22s var(--ease-in-out) infinite alternate;
}
@keyframes edKen {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, 1%); }
}
.editorial::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.editorial__content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 0 var(--gutter);
  text-align: center;
  color: #fff;
}
.editorial__eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  display: inline-block;
}
.editorial__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.editorial__title em { font-style: italic; font-weight: 200; }
.editorial__sub {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
@media (min-width: 800px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background: var(--bg-2);
  cursor: pointer;
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: brightness(0.95);
}
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55));
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card__label {
  position: relative; z-index: 2;
  text-align: center; padding: 32px;
  color: #fff;
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300; margin-bottom: 6px;
}
.cat-card__count {
  font-size: 10px; letter-spacing: 0.36em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* =========================================================
   BRANDS MARQUEE
   ========================================================= */
.brands-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-0);
}
.brands-strip__track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brands-strip__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-50);
  flex-shrink: 0;
}

/* =========================================================
   FOUNDER BLOCK
   ========================================================= */
.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  padding: 0 var(--gutter);
}
@media (min-width: 900px) { .founder { grid-template-columns: 1fr 1.2fr; gap: 80px; } }
.founder__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-3);
}
.founder__photo img { width:100%; height:100%; object-fit:cover; filter: grayscale(0.3); }
.founder__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  color: var(--ink-100);
}
.founder__sign {
  margin-top: 28px;
  font-family: var(--font-mark);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-100);
}
.founder__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 4px;
}

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.product {
  padding: 130px var(--gutter) clamp(80px, 12vw, 140px);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .product { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
}
.product__main-img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--bg-3);
}
.product__thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-top: 6px;
}
.product__thumb-btn {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  background: var(--bg-3);
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.product__thumb-btn img { width:100%; height:100%; object-fit:cover; }
.product__thumb-btn:hover, .product__thumb-btn.active {
  opacity: 1; border-color: var(--ink-100);
}
.product__info { position: sticky; top: 110px; align-self: start; }
.product__brand-name {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 16px;
  font-weight: 500;
}
.product__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.product__short {
  font-family: var(--font-body);
  color: var(--ink-70);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.product__price {
  font-size: 18px;
  color: var(--ink-100);
  margin-bottom: 8px;
  font-feature-settings: "tnum";
  font-weight: 500;
}
.product__price-note {
  font-size: 11px; color: var(--ink-50);
  letter-spacing: 0.04em; margin-bottom: 32px;
}
.product__hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
.product__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 32px;
}
.product__list-title {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 14px;
  font-weight: 500;
}
.product__list { list-style: none; margin-bottom: 28px; }
.product__list li {
  padding: 12px 0;
  font-size: 13px;
  color: var(--ink-90);
  border-bottom: 1px solid var(--line-soft);
  display: flex; gap: 12px;
}
.product__list li::before { content: "—"; color: var(--ink-50); flex-shrink: 0; }
.product__list li:last-child { border-bottom: 0; }
.product__cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.product__guarantees {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.product__guarantee {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.product__guarantee strong {
  display: block;
  color: var(--ink-100);
  font-weight: 300;
  font-size: 22px;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
}

/* =========================================================
   BUTTONS — sólidos pretos minimalistas (Prada style)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink-100);
  color: var(--ink-100);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: var(--font-body);
}
.btn:hover { background: var(--ink-100); color: var(--bg-0); }
.btn--solid { background: var(--ink-100); color: var(--bg-0); }
.btn--solid:hover { background: var(--ink-90); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 18px 36px; }

/* =========================================================
   SHOP / FILTERS — Prada-style com tabs
   ========================================================= */
.shop {
  padding: 130px 0 clamp(80px, 12vw, 140px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.shop__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}
.shop__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}
.shop__title em { font-style: italic; font-weight: 200; }
.shop__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-70);
}
.shop__tabs {
  display: flex; justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 var(--gutter) 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.shop__tab {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  padding: 8px 0;
  position: relative;
  font-weight: 400;
  transition: color 0.3s var(--ease-out);
  cursor: pointer;
  background: transparent; border: 0;
}
.shop__tab.active { color: var(--ink-100); font-weight: 600; }
.shop__tab.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -25px;
  height: 1px; background: var(--ink-100);
}
.shop__meta {
  display: flex; justify-content: space-between;
  padding: 0 var(--gutter);
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--ink-70);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.shop__brands {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  padding: 0 var(--gutter) 32px;
}
.brand-chip {
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  border: 1px solid var(--line-dark);
  background: transparent;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border-radius: 999px;
}
.brand-chip:hover { color: var(--ink-100); border-color: var(--ink-100); }
.brand-chip.active { color: var(--bg-0); background: var(--ink-100); border-color: var(--ink-100); }

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300; opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--bg-0);
  border-left: 1px solid var(--line);
  z-index: 301;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
}
.cart-drawer__close {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-70);
  font-size: 20px;
}
.cart-drawer__close:hover { color: var(--ink-100); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty {
  text-align: center;
  color: var(--ink-50);
  padding: 80px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
}
.cart-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 14px; padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item img {
  width: 80px; height: 100px;
  object-fit: cover;
  background: var(--bg-3);
}
.cart-item__brand {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 4px;
  font-weight: 500;
}
.cart-item__name {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cart-item__price {
  font-size: 12px;
  color: var(--ink-90);
  margin-bottom: 10px;
  font-feature-settings: "tnum";
}
.cart-item__remove {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.cart-item__remove:hover { color: var(--ink-100); }
.cart-drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 6px;
}
.cart-total__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.cart-total__value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-100);
  font-weight: 300;
  font-feature-settings: "tnum";
}
.cart-note {
  font-size: 11px;
  color: var(--ink-50);
  margin-bottom: 16px;
}

/* =========================================================
   CHECKOUT
   ========================================================= */
.checkout {
  padding: 130px var(--gutter) clamp(80px, 12vw, 140px);
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) { .checkout { grid-template-columns: 1.2fr 1fr; } }
.checkout__head { grid-column: 1 / -1; text-align: center; margin-bottom: 24px; }
.checkout__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 4vw, 64px);
  letter-spacing: -0.02em;
}
.checkout__steps {
  display: inline-flex; align-items: center;
  gap: 12px; margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-30);
}
.checkout__step { color: var(--ink-30); display: flex; align-items: center; gap: 12px; }
.checkout__step.active { color: var(--ink-100); }
.checkout__step::after {
  content: ""; display: inline-block;
  width: 20px; height: 1px; background: var(--ink-30);
}
.checkout__step:last-child::after { display: none; }
.form-section { margin-bottom: 48px; }
.form-section h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
  letter-spacing: -0.005em;
}
.form-section h3 small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 400;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 600px) { .form-grid--3 { grid-template-columns: 2fr 1fr 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: var(--bg-0);
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink-100);
  transition: border-color 0.3s var(--ease-out);
  font-family: var(--font-body);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--ink-100);
}
.field--error input, .field--error select { border-color: #b04438; }
.field__error { color: #b04438; font-size: 10px; margin-top: 6px; display: none; }
.field--error .field__error { display: block; }
.payment-options {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 600px) { .payment-options { grid-template-columns: 1fr 1fr 1fr; } }
.payment-option {
  border: 1px solid var(--line-dark);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-0);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  transition: all 0.3s var(--ease-out);
}
.payment-option:hover { border-color: var(--ink-50); }
.payment-option.active {
  border-color: var(--ink-100); background: var(--bg-1);
}
.payment-option__icon { font-size: 22px; color: var(--ink-100); }
.payment-option__label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.payment-option__sub {
  font-size: 10px;
  color: var(--ink-50);
  font-style: italic;
  font-family: var(--font-display);
}
.summary {
  background: var(--bg-1);
  padding: 32px;
  position: sticky; top: 110px;
  align-self: start;
}
.summary h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.summary__line {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.summary__line:last-of-type { border-bottom: 0; }
.summary__line span:first-child { color: var(--ink-90); flex: 1; margin-right: 12px; }
.summary__line span:last-child { font-feature-settings: "tnum"; color: var(--ink-100); white-space: nowrap; }
.summary__totals { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.summary__total-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-70); padding: 5px 0; }
.summary__grand {
  font-family: var(--font-display);
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-100);
}
.summary__grand strong {
  font-size: 26px; font-weight: 300; letter-spacing: 0;
  font-family: var(--font-display);
  font-feature-settings: "tnum";
}

/* =========================================================
   SUCCESS
   ========================================================= */
.success {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 130px var(--gutter) 70px;
  text-align: center;
}
.success__inner { max-width: 720px; }
.success__seal {
  width: 72px; height: 72px;
  margin: 0 auto 32px;
  border: 1px solid var(--ink-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ink-100);
}
.success__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.success__order {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 28px;
}
.success__msg {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.7;
  margin-bottom: 40px;
}
.success__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.success__details { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); text-align: left; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 72px var(--gutter) 32px;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__brand {
  font-family: var(--font-mark);
  font-size: 16px;
  letter-spacing: 0.34em;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__tagline {
  font-family: var(--font-body);
  color: var(--ink-70);
  font-size: 13px;
  margin-bottom: 22px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 12px;
  color: var(--ink-90);
  transition: color 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--ink-50); }
.newsletter {
  display: flex;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  margin-top: 12px;
}
.newsletter input {
  flex: 1; background: transparent;
  border: 0; padding: 10px 0;
  font-size: 12px; color: var(--ink-100);
  outline: 0;
}
.newsletter input::placeholder { color: var(--ink-50); }
.newsletter button {
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-100);
  border: 0;
  cursor: pointer;
  font-weight: 500;
}
.newsletter button:hover { color: var(--ink-50); }
.footer__bottom {
  max-width: var(--container-max);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 11px; color: var(--ink-50);
  letter-spacing: 0.04em;
}

/* =========================================================
   AUDIO TOGGLE (canto inferior esquerdo)
   ========================================================= */
.audio-toggle {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 80;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--ink-30);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 11px;
  color: var(--ink-100);
  transition: all 0.3s var(--ease-out);
}
.audio-toggle:hover { background: var(--ink-100); color: var(--bg-0); border-color: var(--ink-100); }
.audio-toggle__icon {
  width: 12px; height: 12px;
  display: inline-block; position: relative;
}
.audio-toggle__icon::before {
  content: ""; position: absolute;
  left: 1px; top: 3px;
  width: 4px; height: 6px;
  background: currentColor;
  clip-path: polygon(0 0, 60% 0, 100% 30%, 100% 70%, 60% 100%, 0 100%);
}
.audio-toggle__icon::after {
  content: ""; position: absolute;
  right: 1px; top: 2px;
  width: 5px; height: 8px;
  border: 1.2px solid currentColor;
  border-left: 0;
  border-radius: 0 50% 50% 0 / 0 50% 50% 0;
  opacity: 0.4;
}
.audio-toggle.playing { background: var(--ink-100); color: var(--bg-0); border-color: var(--ink-100); }
.audio-toggle.playing .audio-toggle__icon::after { opacity: 1; }

/* =========================================================
   JOURNAL CARDS / ARTICLE
   ========================================================= */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 800px) { .journal-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.journal-card { display: block; cursor: pointer; }
.journal-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 22px;
}
.journal-card__media img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 1.4s var(--ease-out);
}
.journal-card:hover .journal-card__media img { transform: scale(1.05); }
.journal-card__cat {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 10px;
  font-weight: 500;
}
.journal-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink-100);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.journal-card__lede {
  font-family: var(--font-body);
  color: var(--ink-70);
  font-size: 13px;
  line-height: 1.55;
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px var(--gutter) clamp(70px, 12vw, 130px);
}
.article__head { text-align: center; margin-bottom: 56px; }
.article__cat {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 16px;
  display: inline-block;
  font-weight: 500;
}
.article__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.article__title em { font-style: italic; }
.article__meta {
  font-size: 12px;
  color: var(--ink-50);
}
.article__body { font-size: 15px; line-height: 1.85; color: var(--ink-90); }
.article__body p { margin-bottom: 24px; }
.article__body em { font-style: italic; color: var(--ink-100); }
.article__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--ink-100) !important;
  margin-bottom: 48px !important;
  text-align: center;
  font-weight: 300;
}
.article__hero {
  width: 100%;
  margin: 0 auto 56px;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
}
.article__hero img { width:100%; height:100%; object-fit:cover; }

/* =========================================================
   AUTH PROCESS — passos numerados
   ========================================================= */
.auth-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 900px) { .auth-steps { grid-template-columns: repeat(3, 1fr); } }
.auth-step__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 64px;
  color: var(--ink-100);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.auth-step__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.auth-step__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-70);
}

/* =========================================================
   UTILITIES
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.cart-drawer__body::-webkit-scrollbar { width: 4px; }
.cart-drawer__body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer__body::-webkit-scrollbar-thumb { background: var(--line-dark); }
.toast {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 400;
  background: var(--ink-100);
  color: var(--bg-0);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(150%);
  transition: transform 0.5s var(--ease-out);
}
.toast.show { transform: translateY(0); }
.toast::before { content: "✓"; font-size: 13px; }
main { animation: fadePage 0.6s var(--ease-out) both; }
@keyframes fadePage { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   COMMERCE / TRUST UI — added for BR luxury reseller market
   ========================================================= */

/* Top trust bar (above nav) — marquee */
.trust-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--ink-100, #0a0a0a);
  color: #fff;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.trust-bar__track {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  animation: trust-scroll 38s linear infinite;
  padding-left: 100%;
}
.trust-bar__item { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar__item strong { font-weight: 600; letter-spacing: 0.05em; }
.trust-bar__sep { opacity: 0.45; }
@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Push nav down when trust bar present */
body { padding-top: 32px; }
.nav { top: 32px; }
.intro { z-index: 200 !important; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1c1c1c;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  z-index: 90;
  transition: transform 0.2s var(--ease-out, ease), background 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-2px); background: #25D366; }
@media (max-width: 800px) {
  .wa-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

/* Product card extras */
.product-card { position: relative; }
.product-card__condition {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink-100);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.product-card__inst {
  font-size: 11px;
  color: var(--ink-70, rgba(0,0,0,0.6));
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.product-card__sold-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 8px 24px;
  font-family: var(--font-mark, "Tenor Sans"), serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.4);
}
.product-card--sold .product-card__media { opacity: 0.55; }
.product-card--sold .product-card__price { text-decoration: line-through; opacity: 0.5; }

/* Product page enhancements */
.product__avail-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6b3a;
  margin-bottom: 16px;
}
.product__avail-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1a6b3a;
  display: inline-block;
  animation: dot-pulse 1.8s ease-in-out infinite;
}
@keyframes dot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.product__sold-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a02020;
  border: 1px solid #a02020;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.product__price-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px;
  margin-top: 18px;
}
.product__pix-pill {
  font-size: 13px;
  color: var(--ink-70, rgba(0,0,0,0.6));
  background: rgba(0, 130, 60, 0.08);
  border: 1px solid rgba(0, 130, 60, 0.25);
  padding: 4px 10px;
  letter-spacing: 0.01em;
}
.product__pix-pill strong { color: #0a6634; }
.product__wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 14px 22px;
  border: 1px solid #25D366;
  color: #1a8045;
  background: rgba(37,211,102,0.06);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background 0.2s;
}
.product__wa-cta:hover { background: rgba(37,211,102,0.16); }
.product__wa-cta svg { flex-shrink: 0; }

/* Cart drawer reassurance */
.cart-reassure {
  margin: 16px 0 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.03);
  border-left: 2px solid var(--ink-100, #0a0a0a);
}
.cart-reassure__line {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-70, rgba(0,0,0,0.7));
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.cart-reassure__line:last-child { margin-bottom: 0; }
.cart-reassure__line span { color: #1a6b3a; font-weight: 700; flex-shrink: 0; }
.cart-reassure__line strong { color: var(--ink-100, #0a0a0a); }
.cart-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  padding: 10px;
  font-size: 12px;
  color: #1a8045;
  text-decoration: none;
  border: 1px dashed rgba(37,211,102,0.4);
}
.cart-whatsapp:hover { background: rgba(37,211,102,0.08); }
.cart-whatsapp__icon {
  display: inline-block; width: 14px; height: 14px;
  background: #25D366; border-radius: 50%;
}

/* Footer enhancements */
.footer__pay {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px;
}
.pay-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line, rgba(0,0,0,0.15));
  padding: 4px 9px;
  color: var(--ink-70, rgba(0,0,0,0.6));
}
.footer__legal {
  border-top: 1px solid var(--line, rgba(0,0,0,0.12));
  padding: 18px 0;
  font-size: 12px;
  color: var(--ink-50, rgba(0,0,0,0.5));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__legal-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__legal-row strong { color: var(--ink-100, #0a0a0a); font-weight: 500; }
.footer__seal { display: inline-flex; align-items: center; gap: 6px; }
.footer__wa { color: #1a8045 !important; }

@media (max-width: 700px) {
  .footer__legal-row { flex-direction: column; gap: 4px; }
  body { padding-top: 28px; }
  .nav { top: 28px; }
  .trust-bar { font-size: 10px; padding: 6px 0; }
  .trust-bar__track { animation-duration: 28s; }
}
