/* ═══════════════════════════════════════════════════
   JBN CLUB — Design System
   Paleta: creme #faf8f5 / preto #1a1814 / dourado #b8966a
═══════════════════════════════════════════════════ */

:root {
  --bg: #faf8f5;
  --bg-soft: #f5f0e8;
  --bg-hover: #ede9e3;
  --ink: #1a1814;
  --ink-soft: #5a564f;
  --ink-mute: #7a756d;
  --ink-faint: #9a968e;
  --line: #ede9e3;
  --line-strong: #d0cbc3;
  --gold: #b8966a;
  --gold-soft: #d9c9aa;
  --gold-light: #f5f0e8;
  --gold-cream: #c8b896;
  --shadow: 0 1px 2px rgba(26,24,20,0.04);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── Tipografia ───────────────────── */
.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-display em, .t-italic {
  font-style: italic;
  font-weight: 500;
}
.t-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink);
}
.t-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}
.t-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-gold { color: var(--gold); }
.t-mute { color: var(--ink-mute); }

/* ─── Botões ───────────────────────── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 13px 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: #2a2620; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: #a78557; }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 10px; }
.btn-lg { padding: 16px 32px; font-size: 12px; }

/* ─── Chips ────────────────────────── */
.chip {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  color: var(--ink-mute);
  background: transparent;
  display: inline-block;
  cursor: pointer;
  transition: all .15s ease;
  user-select: none;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip-filled {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chip-gold {
  background: var(--gold-light);
  color: var(--gold);
  border-color: var(--gold-soft);
}

/* ─── Container & layout ───────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ─── Navegação top ────────────────── */
.announcement {
  background: var(--ink);
  color: var(--gold-cream);
  padding: 9px 20px;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.16em;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color .15s ease;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-icons { display: flex; gap: 18px; align-items: center; }
.nav-icon {
  font-size: 18px;
  color: var(--ink-mute);
  cursor: pointer;
  position: relative;
  line-height: 1;
  transition: color .15s ease;
}
.nav-icon:hover { color: var(--ink); }
.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.nav-mobile-toggle { display: none; font-size: 22px; cursor: pointer; }

/* ─── Hero (Home) ──────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2620 0%, #1a1814 50%, #0e0c08 100%);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,150,106,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,150,106,0.10), transparent 50%),
    linear-gradient(135deg, #2a2620 0%, #1a1814 50%, #0e0c08 100%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold-cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-title em { font-style: italic; color: var(--gold-cream); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-outline { color: var(--bg); border-color: rgba(255,255,255,0.3); }
.hero .btn-outline:hover { border-color: var(--bg); }

/* ─── Categorias strip ─────────────── */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.cat-card {
  border-right: 1px solid var(--line);
  text-align: center;
  cursor: pointer;
  transition: background .2s ease;
}
.cat-card:last-child { border-right: none; }
.cat-card:hover { background: var(--bg-hover); }
.cat-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-hover), #ddd9d3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-img-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.45;
}
.cat-label {
  padding: 14px 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ─── Seções ────────────────────────── */
.section { padding: 72px 24px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }
.section-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .15s ease;
}
.section-link:hover { color: var(--ink); }

/* ─── Grid de produtos ─────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform .25s ease;
}
.product-card:hover { transform: translateY(-2px); }
.product-card:hover .product-img { background-position: center 48%; }

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-hover);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: background-position .4s ease;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-hover) 0%, #ddd9d3 50%, var(--bg-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  opacity: 0.55;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .15s ease;
  border: none;
}
.product-fav:hover { color: var(--gold); transform: scale(1.05); }
.product-fav.active { color: var(--gold); }

.product-info { padding: 0 2px; }
.product-brand {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.product-price-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* ─── Selo autenticidade ───────────── */
.badge-auth {
  margin: 0 auto;
  max-width: var(--container);
  border: 1px solid var(--gold-soft);
  background: var(--gold-light);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.badge-auth-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--bg);
}
.badge-auth-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.badge-auth-text { font-size: 12px; color: var(--ink-soft); }

/* ─── Drop timer ───────────────────── */
.drop-strip {
  background: var(--gold-light);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 24px 24px;
}
.drop-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.drop-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.drop-name { font-size: 18px; font-weight: 600; }
.drop-timer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* ─── CTA Newsletter / Clube ───────── */
.club-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 24px;
  text-align: center;
}
.club-cta-inner { max-width: 640px; margin: 0 auto; }
.club-cta-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.club-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.1;
}
.club-cta-title em { font-style: italic; color: var(--gold-cream); }
.club-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #9a8e7e;
  margin-bottom: 28px;
}
.club-cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.club-cta-input {
  flex: 1;
  height: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--bg);
  padding: 0 16px;
  font-size: 13px;
}
.club-cta-input::placeholder { color: #6a6460; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.club-cta-input:focus { outline: none; border-color: var(--gold); }

/* ─── Footer ───────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Listagem (loja) ──────────────── */
.shop-header {
  padding: 56px 24px 32px;
  border-bottom: 1px solid var(--line);
}
.shop-header-inner { max-width: var(--container); margin: 0 auto; }
.shop-count {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.shop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.shop-toolbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
  position: sticky;
  top: 68px;
  z-index: 50;
}
.shop-toolbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-toolbar-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.sort-select {
  background: transparent;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.view-toggle { display: flex; gap: 6px; }
.view-toggle button {
  font-size: 16px;
  color: #c0bbb3;
  padding: 4px;
}
.view-toggle button.active { color: var(--ink); }

.shop-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.filter-sidebar {
  position: sticky;
  top: 160px;
  height: fit-content;
}
.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.filter-group:first-child { padding-top: 0; }
.filter-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
}
.filter-toggle-icon {
  font-size: 18px;
  color: var(--ink-faint);
  font-weight: 300;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
}
.filter-options.collapsed { display: none; }

/* Lista alternativa (view list) */
.product-list-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background .15s ease;
}
.product-list-item:hover { background: var(--bg-hover); padding-left: 12px; padding-right: 12px; }
.product-list-img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: var(--bg-hover);
}
.product-list-info { flex: 1; }
.product-list-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
}

/* ─── Página produto ───────────────── */
.product-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--ink); }
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.product-gallery { position: sticky; top: 100px; height: fit-content; }
.product-main-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-hover);
  margin-bottom: 12px;
  overflow: hidden;
}
.product-main-img .product-img-placeholder { font-size: 80px; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-hover);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s ease;
  overflow: hidden;
}
.product-thumb:hover { border-color: var(--line-strong); }
.product-thumb.active { border-color: var(--ink); }

.product-side-brand {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-side-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}
.product-side-title em { font-style: italic; }
.product-side-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
}
.product-side-installments {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  margin-bottom: 32px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.size-btn {
  aspect-ratio: 1.1 / 1;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.size-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.product-actions .btn-primary { flex: 1; padding: 16px 0; font-size: 12px; }
.btn-icon-square {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .15s ease;
  background: transparent;
}
.btn-icon-square:hover { border-color: var(--ink); color: var(--ink); }
.btn-icon-square.active { color: var(--gold); border-color: var(--gold); }

.product-accordion-item {
  border-top: 1px solid var(--line);
}
.product-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.product-accordion-content {
  padding-bottom: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  display: none;
}
.product-accordion-item.open .product-accordion-content { display: block; }
.product-accordion-item.open .product-accordion-icon { transform: rotate(45deg); }
.product-accordion-icon {
  font-size: 20px;
  color: var(--ink-faint);
  font-weight: 300;
  transition: transform .2s ease;
}

/* ─── Carrinho / Checkout ──────────── */
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.checkout-step {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b0aba3;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.checkout-step.active { color: var(--ink); border-bottom-color: var(--ink); }
.checkout-step.done { color: var(--gold); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.cart-item-img { width: 100px; height: 100px; flex-shrink: 0; background: var(--bg-hover); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.cart-item-price-row {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.cart-remove {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #c0bbb3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .15s ease;
}
.cart-remove:hover { color: #b8463a; }
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
}
.cart-qty button { width: 28px; height: 28px; font-size: 14px; color: var(--ink-mute); }
.cart-qty span { padding: 0 12px; font-size: 13px; min-width: 36px; text-align: center; }

.cart-summary {
  background: var(--bg-soft);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.cart-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.cart-coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.input-text {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  padding: 0 14px;
  font-size: 13px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s ease;
}
.input-text::placeholder { color: var(--ink-faint); font-size: 12px; }
.input-text:focus { outline: none; border-color: var(--ink); }
textarea.input-text { padding: 14px; min-height: 100px; resize: vertical; height: auto; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.summary-row span:last-child { color: var(--ink); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 24px;
}
.summary-total span:first-child { font-size: 14px; font-weight: 600; }
.summary-total span:last-child { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; }

/* Form ─────────────────────────────── */
.form-grid { display: grid; gap: 14px; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-grid-3 { grid-template-columns: 2fr 1fr 1fr; }
.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-field { margin-bottom: 14px; }

/* Pagamento ─────────────────────────── */
.payment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line-strong);
  padding: 16px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all .15s ease;
}
.payment-method:hover { border-color: var(--ink); }
.payment-method.active { border-color: var(--ink); background: var(--bg-soft); }
.payment-method-info h4 { font-size: 14px; margin-bottom: 4px; font-weight: 600; }
.payment-method-info p { font-size: 12px; color: var(--ink-soft); }
.radio-circle {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s ease;
}
.payment-method.active .radio-circle { border-color: var(--ink); }
.payment-method.active .radio-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--ink);
  border-radius: 50%;
}

/* Confirmação ─────────────────────────── */
.confirm-success {
  text-align: center;
  padding: 96px 24px;
}
.confirm-icon {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  margin: 0 auto 28px;
}

/* ─── Sobre ───────────────────────── */
.about-hero {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, #2a2620 0%, #1a1814 100%);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,150,106,0.22), transparent 50%),
    linear-gradient(135deg, #2a2620 0%, #1a1814 100%);
  display: flex;
  align-items: flex-end;
  color: var(--bg);
  padding: 48px;
}
.about-hero-content { max-width: var(--container); margin: 0 auto; width: 100%; }
.about-hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold-cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  max-width: 800px;
}
.about-hero-title em { font-style: italic; color: var(--gold-cream); }

.about-manifesto {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: left;
}
.about-manifesto-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.about-manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-process {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about-process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.about-process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold-soft);
  line-height: 1;
}
.about-process-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.about-process-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.about-cta {
  background: var(--gold-light);
  border: 1px solid var(--gold-soft);
  margin: 40px 24px 80px;
  max-width: calc(var(--container) - 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 56px 24px;
  text-align: center;
}
.about-cta-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 12px;
}
.about-cta-title em { font-style: italic; }
.about-cta-text { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }

/* ─── Busca ──────────────────────── */
.search-page { max-width: 720px; margin: 0 auto; padding: 32px 24px 80px; }
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.search-input-wrap {
  flex: 1;
  height: 56px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
}
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.search-suggestions { padding: 18px 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.search-suggestions-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* Empty/erro ────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.empty-icon {
  font-size: 48px;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.empty-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin-bottom: 10px; }
.empty-text { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }

/* ─── Toast ──────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 1000;
  transition: transform .35s cubic-bezier(.18,.89,.32,1.28);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--gold); font-size: 16px; }

/* ─── Responsivo ─────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-inner { height: 60px; }
  .nav-logo { font-size: 18px; }

  .hero { min-height: 460px; }
  .hero-content { padding: 56px 20px; }
  .hero-title { font-size: 44px; }

  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(2) { border-right: none; }
  .cat-card:nth-child(1), .cat-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cat-img { height: 140px; }

  .section { padding: 48px 20px; }
  .section-head { margin-bottom: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }

  .shop-content { grid-template-columns: 1fr; gap: 0; padding: 24px 20px 60px; }
  .filter-sidebar { display: none; }
  .filter-sidebar.open {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    overflow-y: auto;
    padding: 24px;
  }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .product-side-title { font-size: 28px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }

  .about-hero { height: 380px; padding: 32px 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(1), .about-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .about-process-step { grid-template-columns: 1fr; gap: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .drop-inner { flex-direction: column; align-items: flex-start; }
  .club-cta { padding: 56px 20px; }
  .club-cta-form { flex-direction: column; }

  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .product-grid { gap: 20px 12px; }
  .cat-img-icon { font-size: 36px; }
  .cat-img { height: 120px; }
  .checkout-step { font-size: 9px; padding: 14px 4px; }
  .size-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ─── Mobile menu drawer ─────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.mobile-menu-close { font-size: 24px; cursor: pointer; }
.mobile-menu-link {
  display: block;
  padding: 16px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu-link em { font-style: italic; color: var(--gold); }

/* Loading skeleton ──────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-hover) 0%, #e5e0d9 50%, var(--bg-hover) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* utilities */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.gap-2 { gap: 8px; }
.hide-mobile { }
.hide-desktop { display: none; }
@media (max-width: 820px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block; }
}
