/* =====================================================================
   G.ANSEL — Premium Redesign
   Luxury dark/gold | Mobile-first | Angola
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variáveis ── */
:root {
  /* Neutrals (light theme) */
  --obsidian:    #0a0a0b;        /* used for primary text & logo */
  --charcoal:    #f5f4f1;        /* card / surface background */
  --charcoal-2:  #edecea;        /* input background */
  --charcoal-3:  #e4e1db;        /* hover surfaces */
  --charcoal-4:  #d9d5ce;        /* dividers / subtle borders */

  --hairline:    rgba(0,0,0,0.08);  /* default border */

  /* Brand gold — slightly deeper so it hits 4.5:1 on white */
  --gold:        #b8911f;
  --gold-light:  #c9a227;
  --gold-dim:    rgba(184,145,31,0.45);
  --gold-deep:   #8f6f17;
  --gold-glow:   rgba(184,145,31,0.08);

  /* Text */
  --bone:        #0f0e0c;        /* primary text (was off-white) */
  --bone-dim:    #6b6560;        /* secondary text */

  /* Utility */
  --white:       #ffffff;
  --gray-100:    #f8f7f5;
  --gray-300:    #d5d1c9;
  --gray-500:    #9a9590;
  --gray-700:    #44403c;
  --success:     #2d7a50;
  --danger:      #c0392b;
  --warning:     #c97d10;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  /* ── Legacy aliases (backward compat) ── */
  --dark:        var(--obsidian);
  --dark-2:      var(--charcoal);
  --dark-3:      var(--charcoal-2);
  --dark-4:      var(--charcoal-3);
  --dark-5:      var(--charcoal-4);
  --gold-dark:   var(--gold-deep);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow:      0 4px 32px rgba(0,0,0,0.07);
  --shadow-gold: 0 8px 32px rgba(184,145,31,0.14);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.07);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Cormorant', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--bone);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Utilitários ── */
.text-gold    { color: var(--gold); }
.text-gray    { color: var(--gray-500); }
.text-center  { text-align: center; }
.text-small   { font-size: 13px; }
.fw-bold      { font-weight: 700; }
.d-none       { display: none !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

/* ── Eyebrow labels ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ── Scroll-reveal animations ── */
/* Só esconde quando o JS está activo (.js) — sem JS o conteúdo aparece. */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--obsidian);
  font-weight: 700;
}
.btn-primary:hover { background: var(--gold-light); color: var(--obsidian); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.btn-outline:hover { background: var(--gold-glow); color: var(--gold-light); border-color: var(--gold); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
}
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

.btn-ghost {
  background: rgba(0,0,0,0.05);
  color: var(--bone);
  border: 1px solid rgba(0,0,0,0.09);
}
.btn-ghost:hover { background: rgba(0,0,0,0.09); color: var(--obsidian); }

.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-stock-ok    { background: rgba(61,139,94,0.18); color: #5dba85; border: 1px solid rgba(61,139,94,0.3); }
.badge-stock-low   { background: rgba(214,137,16,0.18); color: #f0ab3a; border: 1px solid rgba(214,137,16,0.3); }
.badge-esgotado    { background: rgba(192,57,43,0.18);  color: #e07060; border: 1px solid rgba(192,57,43,0.3); }
.badge-destaque    { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--hairline); }
.badge-novo        { background: rgba(99,102,241,0.18); color: #9fa3f7; border: 1px solid rgba(99,102,241,0.3); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* logo img sizing handled by mobile.css block below */
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-sub {
  display: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.nav-desktop {
  display: none;
  gap: 2px;
}
.nav-desktop a {
  color: var(--bone-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); background: var(--gold-glow); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--bone);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.cart-btn:hover { background: rgba(0,0,0,0.09); color: var(--gold); border-color: var(--hairline); }
.cart-badge {
  background: var(--gold);
  color: var(--obsidian);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.visible { display: flex; }

.btn-wa-header {
  display: none;
  background: var(--wa-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.btn-wa-header:hover { background: var(--wa-dark); color: #fff; }

.hamburger {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--bone);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  line-height: 1;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.09); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
}
.mobile-nav.open { display: flex; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.mobile-nav-menu {
  position: relative;
  width: 280px;
  background: var(--charcoal);
  border-right: 1px solid var(--hairline);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 20px;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.mobile-nav-close:hover { color: var(--bone); }
.mobile-nav-menu a {
  display: block;
  color: var(--bone-dim);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active { color: var(--gold); background: var(--gold-glow); }
.mobile-nav-wa { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }

/* ══════════════════════════════════════════
   FLOATING WA BUTTON
══════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 3s infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 28px; height: 28px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: linear-gradient(180deg, #faf9f7 0%, #f2efe9 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,162,39,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201,162,39,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,162,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,249,247,0.05) 0%, rgba(250,249,247,0.45) 60%, rgba(242,239,233,0.97) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 15px;
  color: var(--bone-dim);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--bone-dim);
  text-transform: uppercase;
}

/* ── Hero car image strip ── */
.hero-car-img {
  position: relative;
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.hero-car-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FINDER BOX ── */
.finder-section {
  padding: 0 0 56px;
  background: #f8f7f5;
}
.finder-box {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-card);
}
.finder-box h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.finder-tipo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.finder-tipo-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.09);
  background: rgba(0,0,0,0.04);
  color: var(--bone-dim);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.finder-tipo-btn.active {
  background: var(--gold-glow);
  border-color: var(--gold-dim);
  color: var(--gold);
}
.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.finder-grid select,
.finder-direct input {
  width: 100%;
  padding: 12px 16px;
  background: var(--charcoal-2);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a195' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.finder-grid select:focus,
.finder-direct input:focus { outline: none; border-color: var(--gold-dim); }
.finder-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 16px 0;
}
.finder-separator::before, .finder-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.finder-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.finder-actions { display: flex; gap: 10px; }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section { padding: 56px 0; }
.section-header { margin-bottom: 36px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  color: var(--bone-dim);
  font-size: 14px;
  margin-top: 8px;
}
.section-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   CATEGORY CARDS
══════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cat-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dim);
}
.cat-card:hover::before { opacity: 1; }
.cat-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 24px rgba(201,162,39,0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.cat-card:hover .cat-img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 12px 32px rgba(201,162,39,0.4));
}
.cat-icon { font-size: 42px; margin-bottom: 12px; }
.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
}
.cat-card p  { font-size: 13px; color: var(--bone-dim); margin-bottom: 16px; line-height: 1.6; }
.cat-arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}
.product-img {
  position: relative;
  background: var(--charcoal-2);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-marca {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}
.product-nome {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--bone);
  line-height: 1.3;
}
.product-tamanho {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone-dim);
}
.product-preco {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}
.product-preco-original {
  font-size: 12px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.product-stock { font-size: 11px; }
.product-actions {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--hairline);
}
.product-actions .btn {
  width: 100%;
  font-size: 12px;
  padding: 10px 12px;
}

/* ══════════════════════════════════════════
   FILTROS
══════════════════════════════════════════ */
.filters-bar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  position: sticky;
  top: 69px;
  z-index: 90;
}
.filters-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.filters-inner::-webkit-scrollbar { display: none; }
.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  flex-shrink: 0;
  min-width: 180px;
}
.filter-search input {
  background: none;
  border: none;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 0;
  outline: none;
  width: 100%;
}
.filter-select {
  padding: 10px 32px 10px 12px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 13px;
  flex-shrink: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a195' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  outline: none;
}
.filter-select:focus { border-color: var(--gold-dim); }
.filters-count {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--bone-dim);
  white-space: nowrap;
}

/* ── Empty state ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-500);
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3   { font-family: var(--font-serif); font-size: 20px; color: var(--bone-dim); margin-bottom: 8px; }
.empty-state p    { font-size: 14px; margin-bottom: 24px; }

/* ══════════════════════════════════════════
   PRODUTO INDIVIDUAL
══════════════════════════════════════════ */
.produto-hero {
  background: var(--charcoal);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.produto-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.produto-img-box {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.produto-img-box img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(201,162,39,0.18));
}
.produto-info { display: flex; flex-direction: column; gap: 18px; }
.produto-marca-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.produto-titulo {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.2;
}
.produto-preco  {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.produto-preco-info { font-size: 13px; color: var(--bone-dim); }

.specs-table {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.specs-table h3 {
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--hairline);
  background: var(--charcoal-2);
}
.spec-row {
  display: flex;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  gap: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--bone-dim); flex-shrink: 0; width: 150px; font-size: 13px; }
.spec-value { color: var(--bone); font-weight: 500; }

.compat-list {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compat-list h3 {
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--hairline);
  background: var(--charcoal-2);
}
.compat-list ul { padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.compat-list li {
  font-size: 14px;
  color: var(--bone-dim);
  padding-left: 18px;
  position: relative;
}
.compat-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.buy-box {
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 0 24px rgba(201,162,39,0.08);
}
.buy-box-qty { display: flex; align-items: center; gap: 12px; }
.qty-label { font-size: 14px; color: var(--bone-dim); }
.qty-input {
  display: flex;
  align-items: center;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--bone);
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: rgba(0,0,0,0.06); }
.qty-number {
  width: 40px;
  text-align: center;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

/* ══════════════════════════════════════════
   CARRINHO
══════════════════════════════════════════ */
.cart-container { max-width: 800px; margin: 0 auto; }
.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cart-item {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  background: var(--charcoal-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-nome { font-family: var(--font-serif); font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--bone); }
.cart-item-marca { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; text-transform: uppercase; }
.cart-item-preco { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--gold); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 18px;
  padding: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--danger); }
.cart-summary {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--bone-dim);
}
.cart-summary-row:last-child { border-bottom: none; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 8px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}
.cart-total-row .label { color: var(--bone-dim); }
.cart-total-row .value { color: var(--gold); }
.cart-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: #f5f4f1;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-label { font-size: 14px; font-weight: 600; color: var(--bone); line-height: 1.3; margin-bottom: 3px; }
.trust-sub   { font-size: 12px; color: var(--bone-dim); }

/* ══════════════════════════════════════════
   PAGAMENTOS
══════════════════════════════════════════ */
.payments-section { padding: 40px 0; }
.payments-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--bone-dim);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.payments-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-chip {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bone);
  transition: border-color var(--transition), background var(--transition);
}
.payment-chip:hover { border-color: var(--gold-dim); background: var(--gold-glow); }
.payment-chip .icon { font-size: 18px; }

/* ══════════════════════════════════════════
   TESTEMUNHOS
══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-gold); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--obsidian);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--bone); }
.testimonial-loc  { font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold-dim); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-arrow {
  color: var(--gold);
  font-size: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold-glow); }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.75;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════════
   SOBRE / CONTACTO
══════════════════════════════════════════ */
.about-grid { display: flex; flex-direction: column; gap: 24px; }
.about-hero-box {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
}
.about-hero-box img { width: 100px; margin: 0 auto 20px; }
.about-hero-box h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.about-hero-box p  { color: var(--bone-dim); font-size: 15px; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--gold-dim); }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--bone); margin-bottom: 6px; }
.value-text  { font-size: 12px; color: var(--bone-dim); line-height: 1.6; }

.contact-grid { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--gold-dim); }
.contact-icon { font-size: 26px; flex-shrink: 0; }
.contact-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; color: var(--bone-dim); text-transform: uppercase; margin-bottom: 5px; }
.contact-value { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--bone); }
.contact-sub   { font-size: 13px; color: var(--bone-dim); margin-top: 4px; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 16px 0;
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--bone-dim);
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--bone-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Page header ── */
.page-header {
  background: var(--charcoal);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.page-header h1 { font-family: var(--font-serif); font-size: 30px; font-weight: 600; color: var(--bone); }
.page-header p  { color: var(--bone-dim); font-size: 14px; margin-top: 6px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(184,145,31,0.06), rgba(143,111,23,0.04));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.cta-banner h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--bone); margin-bottom: 10px; }
.cta-banner p  { color: var(--bone-dim); font-size: 14px; margin-bottom: 24px; }
.cta-banner .btn { margin: 0 auto; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #f2f0ec;
  border-top: 1px solid var(--hairline);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--bone-dim);
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--bone); }
.footer-brand { grid-column: 1 / -1; }
.footer-brand img { height: 48px; margin-bottom: 14px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--bone-dim); line-height: 1.7; max-width: 340px; }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gray-500);
}

/* ── Loader ── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--bone-dim);
  font-size: 14px;
  gap: 12px;
}
.spinner {
  width: 20px; height: 20px;
  border: 2px solid #e0dbd5;
  border-top-color: var(--gold); border-width: 2px;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Car result banner ── */
.car-result-banner {
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(201,162,39,0.04));
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.car-result-info { display: flex; flex-direction: column; gap: 2px; }
.car-result-title { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--bone); }
.car-result-sub   { font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 1px; }
.clear-filter-btn {
  background: none;
  border: 1px solid var(--hairline);
  color: var(--bone-dim);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.clear-filter-btn:hover { border-color: var(--danger); color: var(--danger); }

/* ── Car images grid (homepage) ── */
.car-brands-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.car-brands-strip::-webkit-scrollbar { display: none; }
.car-brand-item {
  flex-shrink: 0;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--bone-dim);
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}
.car-brand-item:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET 768px+
══════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero { padding: 88px 0 72px; }
  .logo-sub { display: block; }
  .finder-grid { grid-template-columns: 1fr 1fr 1fr; }
  .finder-direct { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cat-img { height: 200px; }
  .products-grid   { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .trust-grid      { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1; }
  .produto-grid { flex-direction: row; align-items: flex-start; }
  .produto-img-box { width: 44%; flex-shrink: 0; }
  .produto-info { flex: 1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .nav-desktop { display: flex; }
  .hamburger   { display: none; }
  .btn-wa-header { display: flex; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — DESKTOP 1024px+
══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-banner { padding: 52px 48px; }
  .hero h1 { letter-spacing: -1px; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════
   SISTEMA DE ÍCONES SVG (substitui emojis)
══════════════════════════════════════════ */
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--ic-size, 1em);
  height: var(--ic-size, 1em);
  line-height: 0;
  vertical-align: -0.15em;
  flex: 0 0 auto;
  color: inherit;
}
.ic svg { width: 100%; height: 100%; display: block; }
/* Placeholders [data-icon] que ainda não foram preenchidos não ocupam espaço */
[data-icon]:not([data-icon-done]) { display: inline-block; width: 1em; height: 1em; }

/* Ícones de destaque a dourado */
.trust-icon,
.value-icon,
.contact-icon,
.cat-icon,
.payment-chip .icon,
.about-box .ic { color: var(--gold); }

/* Caixas de ícone: o emoji era texto; agora centramos o SVG */
.trust-icon .ic   { --ic-size: 22px; }
.value-icon .ic   { --ic-size: 28px; }
.contact-icon .ic { --ic-size: 26px; }
.payment-chip .icon .ic { --ic-size: 18px; }
.cat-icon .ic     { --ic-size: 56px; }
.empty-state-icon { color: var(--bone-dim); }
.empty-state-icon .ic { --ic-size: 48px; }

/* Ícones nos títulos de página e secção */
.page-header h1 .ic,
.section-title .ic { color: var(--gold); --ic-size: 0.82em; margin-right: 0.18em; vertical-align: -0.06em; }
.page-header h1 { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; }

/* Cromo do cabeçalho / navegação */
.btn .ic { --ic-size: 1.15em; }
.btn-wa-header .ic { --ic-size: 16px; }
.cart-btn .ic { --ic-size: 20px; }
.hamburger .ic { --ic-size: 22px; }
.mobile-nav-menu a .ic { --ic-size: 18px; margin-right: 4px; }
.mobile-nav-close .ic { --ic-size: 18px; }
.eyebrow .ic { --ic-size: 1.3em; vertical-align: -0.22em; margin-right: 2px; }
.faq-arrow .ic { --ic-size: 14px; }
.toast .ic { color: var(--gold); }
.toast-text { display: inline-block; }
.cart-item-remove .ic { --ic-size: 16px; }
.clear-filter-btn .ic, .car-result-title .ic { --ic-size: 16px; vertical-align: -0.18em; }

/* ══════════════════════════════════════════
   MOTION — estados iniciais (evita "flash")
   Só aplica enquanto .motion-pending está presente (<1,8s) e o JS activo.
══════════════════════════════════════════ */
.motion-pending .hero-content > *:not(.reveal),
.motion-pending .page-header .container > * { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .motion-pending .hero-content > *,
  .motion-pending .page-header .container > * { opacity: 1 !important; }
}

/* ══════════════════════════════════════════
   ACESSIBILIDADE — foco visível por teclado + alvos de toque
   (auditoria UI/UX: WCAG 2.4.7 Foco Visível, 2.5.5 Tamanho do Alvo)
══════════════════════════════════════════ */

/* Anel de foco consistente e on-brand. :focus-visible => só aparece
   na navegação por teclado, nunca em cliques de rato. */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Campos de formulário (que removiam o outline): realça também a borda. */
.finder-grid select:focus-visible,
.finder-direct input:focus-visible,
.filter-select:focus-visible,
.filter-search input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

/* Não mostra o anel a utilizadores de rato (mantém-no no teclado). */
:focus:not(:focus-visible) { outline: none; }

/* Ligação "saltar para o conteúdo" — invisível até receber foco. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--obsidian);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* Alvos de toque com pelo menos 44×44px. */
.cart-btn { min-height: 44px; }
.mobile-nav-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   PREMIUM LIGHT THEME — polish layer
   Top-1% e-commerce refinements
══════════════════════════════════════════ */

/* ── Header: subtle shadow on white bg so it reads as elevated ── */
.header {
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .logo-text { font-size: 24px; }
}
.nav-desktop a { color: var(--gray-700); }
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); background: var(--gold-glow); }

/* ── Cart & hamburger: clean on white ── */
.cart-btn,
.hamburger {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  color: var(--gray-700);
}
.cart-btn:hover  { background: var(--charcoal-2); color: var(--gold); border-color: var(--gold-dim); }
.hamburger:hover { background: var(--charcoal-2); color: var(--obsidian); }

/* ── Mobile nav drawer ── */
.mobile-nav-menu {
  background: #ffffff;
  border-right: 1px solid rgba(0,0,0,0.10);
  box-shadow: 4px 0 24px rgba(0,0,0,0.10);
}
.mobile-nav-menu a       { color: var(--gray-700); }
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active { color: var(--gold); background: var(--gold-glow); }
.mobile-nav-close        { color: var(--gray-500); }
.mobile-nav-close:hover  { color: var(--obsidian); }

/* ── Hero ── */
.hero-bg-img { opacity: 0.22; filter: grayscale(40%) saturate(1.2); }
.hero-badge  { background: rgba(184,145,31,0.10); border: 1px solid var(--gold-dim); color: var(--gold-deep); }
.hero h1     { color: var(--obsidian); }
.hero-sub    { color: var(--gray-700); font-size: 16px; }
.hero-stat-label { color: var(--gray-500); }
.hero-stat-num   { color: var(--gold-deep); }

/* ── Section titles ── */
.section-title    { color: var(--obsidian); }
.section-title em { color: var(--gold); }
.page-header h1   { color: var(--obsidian); }
.page-header p    { color: var(--gray-700); }
.eyebrow          { color: var(--gold-deep); }
.section-line     { background: linear-gradient(90deg, var(--gold), transparent); }

/* ── Category cards: white with lift shadow ── */
.cat-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cat-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 0 0 1px var(--gold-dim);
  border-color: var(--gold-dim);
}
.cat-card h3 { color: var(--obsidian); }
.cat-card p  { color: var(--bone-dim); }

/* ── Product cards: white with clean hover ── */
.product-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.product-img     { background: #f8f7f5; }
.product-nome    { color: var(--obsidian); }
.product-marca   { color: var(--gold-deep); }
.product-preco   { color: var(--gold-deep); }
.product-actions { border-top-color: rgba(0,0,0,0.07); }

/* ── Finder box ── */
.finder-box {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.finder-box h2           { color: var(--obsidian); }
.finder-tipo-btn         { color: var(--gray-700); background: var(--charcoal); border-color: rgba(0,0,0,0.09); }
.finder-tipo-btn.active  { background: var(--gold-glow); border-color: var(--gold-dim); color: var(--gold-deep); }
.finder-grid select,
.finder-direct input     { background: var(--charcoal); border-color: rgba(0,0,0,0.09); color: var(--obsidian); }
.finder-separator        { color: var(--gray-500); }
.finder-separator::before,
.finder-separator::after { background: rgba(0,0,0,0.10); }

/* ── Filters bar ── */
.filters-bar      { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.filter-search    { background: #ffffff; border-color: rgba(0,0,0,0.09); }
.filter-search input { color: var(--obsidian); }
.filter-select    { background-color: #ffffff; border-color: rgba(0,0,0,0.09); color: var(--obsidian); }

/* ── Trust bar ── */
.trust-bar   { background: #f5f4f1; }
.trust-label { color: var(--obsidian); }
.trust-icon  { background: var(--gold-glow); border-color: var(--gold-dim); }

/* ── Product page ── */
.produto-hero     { background: #f8f7f5; border-bottom-color: rgba(0,0,0,0.08); }
.produto-img-box  { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.produto-titulo   { color: var(--obsidian); }
.produto-preco    { color: var(--gold-deep); }
.specs-table      { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.specs-table h3   { background: var(--charcoal); border-bottom-color: rgba(0,0,0,0.08); color: var(--gold-deep); }
.spec-row         { border-bottom-color: rgba(0,0,0,0.07); }
.spec-label       { color: var(--bone-dim); }
.spec-value       { color: var(--obsidian); }
.compat-list      { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.compat-list h3   { background: var(--charcoal); border-bottom-color: rgba(0,0,0,0.08); color: var(--gold-deep); }
.compat-list li   { color: var(--gray-700); }
.buy-box          { background: #ffffff; border-color: var(--gold-dim); box-shadow: 0 4px 20px rgba(184,145,31,0.10); }

/* ── Cart ── */
.cart-item        { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.cart-item-img    { background: var(--charcoal); border-color: rgba(0,0,0,0.07); }
.cart-item-nome   { color: var(--obsidian); }
.cart-item-preco  { color: var(--gold-deep); }
.cart-summary     { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.cart-summary-row { color: var(--bone-dim); border-bottom-color: rgba(0,0,0,0.07); }
.cart-total-row .label { color: var(--bone-dim); }
.cart-total-row .value { color: var(--gold-deep); }
.qty-input        { background: var(--charcoal); border-color: rgba(0,0,0,0.09); }
.qty-btn          { color: var(--obsidian); }
.qty-btn:hover    { background: rgba(0,0,0,0.06); }
.qty-number       { color: var(--obsidian); }

/* ── FAQ ── */
.faq-item              { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.faq-item.open         { border-color: var(--gold-dim); }
.faq-question          { color: var(--obsidian); }
.faq-arrow             { border-color: rgba(0,0,0,0.12); }
.faq-item.open .faq-arrow { background: var(--gold-glow); }
.faq-answer            { color: var(--gray-700); border-top-color: rgba(0,0,0,0.08); }

/* ── About / Contact ── */
.about-hero-box       { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.about-hero-box h2    { color: var(--gold-deep); }
.about-hero-box p     { color: var(--gray-700); }
.value-card           { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.value-card:hover     { border-color: var(--gold-dim); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.value-title          { color: var(--obsidian); }
.value-text           { color: var(--bone-dim); }
.contact-card         { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.contact-card:hover   { border-color: var(--gold-dim); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.contact-label        { color: var(--bone-dim); }
.contact-value        { color: var(--obsidian); }
.contact-sub          { color: var(--bone-dim); }

/* ── Payments ── */
.payment-chip       { background: #ffffff; border-color: rgba(0,0,0,0.09); color: var(--obsidian); }
.payment-chip:hover { border-color: var(--gold-dim); background: var(--gold-glow); }

/* ── Testimonials ── */
.testimonial-card       { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.testimonial-card:hover { border-color: var(--gold-dim); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.testimonial-text       { color: var(--gray-700); }
.testimonial-name       { color: var(--obsidian); }

/* ── CTA Banner ── */
.cta-banner    { border-color: var(--gold-dim); background: linear-gradient(135deg, rgba(184,145,31,0.06) 0%, rgba(143,111,23,0.04) 100%); }
.cta-banner h3 { color: var(--obsidian); }
.cta-banner p  { color: var(--gray-700); }

/* ── Breadcrumb ── */
.breadcrumb   { color: var(--bone-dim); }
.breadcrumb a { color: var(--bone-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span    { color: var(--gold); }

/* ── Footer ── */
.footer-brand-name { color: var(--gold-deep); }
.footer-brand p    { color: var(--bone-dim); }
.footer-col h4     { color: var(--gold-deep); }
.footer-col a      { color: var(--bone-dim); }
.footer-col a:hover { color: var(--obsidian); }
.footer-bottom { color: var(--gray-500); border-top-color: rgba(0,0,0,0.10); }

/* ── Car brand strip ── */
.car-brand-item       { background: #ffffff; border-color: rgba(0,0,0,0.08); color: var(--gray-500); }
.car-brand-item:hover { border-color: var(--gold-dim); color: var(--gold-deep); }

/* ── Car result banner ── */
.car-result-banner { background: linear-gradient(135deg, rgba(184,145,31,0.07), rgba(184,145,31,0.04)); border-color: var(--gold-dim); }
.car-result-title  { color: var(--obsidian); }
.car-result-sub    { color: var(--bone-dim); }

/* ── Badges ── */
.badge-stock-ok  { background: rgba(45,122,80,0.10);  color: #1d6640; border-color: rgba(45,122,80,0.25); }
.badge-stock-low { background: rgba(201,125,16,0.10); color: #a06010; border-color: rgba(201,125,16,0.25); }
.badge-esgotado  { background: rgba(192,57,43,0.10);  color: #a0291e; border-color: rgba(192,57,43,0.25); }
.badge-destaque  { background: var(--gold-glow); color: var(--gold-deep); border-color: var(--gold-dim); }
.badge-novo      { background: rgba(99,102,241,0.10); color: #4f51c8; border-color: rgba(99,102,241,0.25); }

/* ── Empty state ── */
.empty-state h3 { color: var(--gray-700); }
.empty-state p  { color: var(--bone-dim); }
.loading { color: var(--gray-500); }

/* ── Buttons: ghost on light ── */
.btn-ghost       { background: var(--charcoal); color: var(--obsidian); border: 1px solid rgba(0,0,0,0.12); }
.btn-ghost:hover { background: var(--charcoal-2); color: var(--obsidian); }

/* ── Focus ring: adjust gold ring for light bg ── */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible { outline-color: var(--gold-deep); }


/* ══════════════════════════════════════════
   MOBILE UX — comprehensive phone improvements
   375px–767px first, scales up
══════════════════════════════════════════ */

/* ── Logo: clear badge, correct size on every screen ── */
.logo img {
  height: 48px;
  padding: 4px 10px;
  background: #13110e;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  width: auto;
}
@media (min-width: 768px) {
  .logo img { height: 58px; padding: 6px 16px; border-radius: 10px; }
}

/* ── Header: compact on phone ── */
@media (max-width: 767px) {
  .header-inner { padding: 10px 14px; gap: 8px; }
  .header-actions { gap: 6px; }
  .cart-btn  { padding: 10px 12px; min-height: 44px; }
  .hamburger { padding: 10px 12px; min-height: 44px; }
}

/* ── Hero: stacked, full-width buttons, compact ── */
@media (max-width: 767px) {
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; padding: 0 4px; }
  .hero-badge { font-size: 9px; padding: 5px 12px; margin-bottom: 18px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-actions .btn {
    width: 100%;
    font-size: 15px;
    padding: 16px 24px;
    justify-content: center;
  }

  .hero-stats { gap: 12px; justify-content: space-around; flex-wrap: nowrap; }
  .hero-stat-num   { font-size: 22px; }
  .hero-stat-label { font-size: 9px; }
}

/* ── Buttons: always 48px tall minimum for tap ── */
.btn { min-height: 48px; font-size: 14px; }
.btn-sm { min-height: 40px; }

/* ── Finder: single column on phone ── */
@media (max-width: 767px) {
  .finder-box    { padding: 20px 16px; border-radius: 14px; }
  .finder-box h2 { font-size: 17px; }
  .finder-grid   { grid-template-columns: 1fr; }
  .finder-direct { grid-template-columns: 1fr; }
  .finder-actions          { flex-direction: column; }
  .finder-actions .btn     { width: 100%; }
  .finder-tipo-btn         { min-height: 52px; font-size: 14px; }
}

/* ── Inputs: 16px minimum prevents iOS auto-zoom ── */
.finder-grid select,
.finder-direct input,
.filter-search input,
.filter-select,
.qty-number,
input, select, textarea { font-size: 16px; }
.finder-grid select,
.finder-direct input { min-height: 52px; padding: 14px 16px; }

/* ── Section: comfortable padding on mobile ── */
@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(22px, 5.5vw, 32px); }
}

/* ── Category cards: 1 column on very small phones ── */
@media (max-width: 400px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .cat-card  { padding: 24px 16px; }
  .cat-card h3 { font-size: 20px; }
  .cat-img   { height: 130px; }
}

/* ── Product cards: readable text on small screens ── */
@media (max-width: 767px) {
  .products-grid { gap: 12px; }
  .product-nome  { font-size: 14px; }
  .product-preco { font-size: 17px; }
  .product-marca { font-size: 9px; }
  .product-actions .btn { padding: 12px 8px; font-size: 12px; min-height: 44px; }
}

/* ── Mobile nav drawer: easy to tap, full feel ── */
.mobile-nav-menu { width: min(310px, 88vw); }
.mobile-nav-menu a {
  padding: 15px 18px;
  font-size: 16px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  align-self: flex-end;
}

/* ── Page header: compact on phone ── */
@media (max-width: 767px) {
  .page-header       { padding: 20px 0; }
  .page-header h1    { font-size: 24px; }
}

/* ── Filters bar: easier to scroll ── */
@media (max-width: 767px) {
  .filters-inner  { padding: 0 16px 2px; gap: 8px; }
  .filter-select  { min-height: 44px; font-size: 14px; }
  .filter-search  { min-height: 44px; }
  .filter-search input { font-size: 16px; }
}

/* ── FAQ: tap-friendly ── */
@media (max-width: 767px) {
  .faq-question { padding: 16px 16px; font-size: 14px; min-height: 60px; }
  .faq-answer   { padding: 0 16px 16px; padding-top: 14px; font-size: 14px; }
  .faq-item     { margin-bottom: 6px; }
}

/* ── Product page: stacked on phone ── */
@media (max-width: 767px) {
  .buy-box { padding: 18px 16px; }
  .spec-label { width: 110px; font-size: 12px; }
}

/* ── Cart: touch-friendly on phone ── */
@media (max-width: 767px) {
  .cart-item     { gap: 12px; padding: 14px; }
  .cart-item-img { width: 60px; height: 60px; flex-shrink: 0; }
  .cart-item-nome { font-size: 14px; }
  .cart-item-preco { font-size: 16px; }
  .cart-item-remove { padding: 8px; min-height: 40px; min-width: 40px; }
  .cart-summary { padding: 18px 16px; }
}

/* ── About / Contact: comfortable on phone ── */
@media (max-width: 767px) {
  .contact-card { padding: 16px; }
  .values-grid  { grid-template-columns: 1fr; }
  .value-card   { padding: 18px 16px; }
}

/* ── Trust bar: 2-col on phone, looks great ── */
@media (max-width: 767px) {
  .trust-grid { gap: 16px; }
  .trust-item { gap: 10px; }
  .trust-label { font-size: 13px; }
}

/* ── Footer: single column on phone ── */
@media (max-width: 767px) {
  .footer      { padding: 36px 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; gap: 4px; }
}

/* ── Payments: wrap cleanly ── */
@media (max-width: 767px) {
  .payments-grid { gap: 8px; }
  .payment-chip  { padding: 10px 14px; font-size: 12px; }
}

/* ── Testimonials: single column on phone ── */
@media (max-width: 767px) {
  .testimonial-card   { padding: 18px; }
  .testimonial-text   { font-size: 14px; }
}

/* ── Car brand strip: show more per screen ── */
@media (max-width: 767px) {
  .car-brand-item { padding: 8px 12px; font-size: 10px; }
}

/* ── Floating WA: safe from system UI ── */
.floating-wa { bottom: 20px; right: 16px; width: 52px; height: 52px; }

/* ── Toast: stays above floating button ── */
@media (max-width: 767px) {
  .toast { bottom: 84px; right: 14px; left: 14px; max-width: none; font-size: 13px; }
}

/* ── CTA banner: compact on phone ── */
@media (max-width: 767px) {
  .cta-banner { padding: 28px 20px; margin: 20px 0; }
  .cta-banner h3 { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════════════════
   VALUE STATEMENT SECTION
   ══════════════════════════════════════════════════════════════════════ */

.value-statement {
  background: var(--obsidian);
  color: #fff;
  padding: 72px 0;
}

.vs-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.vs-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
}
.vs-headline em {
  color: var(--gold);
  font-style: italic;
}

.vs-divider {
  width: 1px;
  height: 180px;
  background: rgba(255,255,255,0.15);
}

.vs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vs-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vs-pillar-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 2px;
}

.vs-pillar-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.vs-pillar-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .vs-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vs-divider { display: none; }
  .vs-headline { font-size: clamp(36px, 8vw, 56px); }
  .vs-pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .vs-pillar { align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .value-statement { padding: 48px 0; }
  .vs-headline { font-size: 36px; }
  .vs-pillars { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vs-pillar-num { font-size: 22px; }
}

/* ── Finder unique badge & sub ── */
.finder-unique-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.finder-sub {
  font-size: 14px;
  color: var(--bone-dim);
  margin: 6px 0 20px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════
   HONEST CONVERSION ELEMENTS
   ══════════════════════════════════════════════════════════════════════ */

/* Tier pill on product card */
.tier-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.4px;
  color: var(--gold-deep);
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 4px;
}

/* "Preço sob consulta" label on card */
.cotacao-label {
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 4px;
}

/* Trust badges row on detail page */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bone-dim);
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 5px 12px;
}

/* Brand tier copy box */
.tier-box {
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 16px 0;
}
.tier-box-label {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.tier-box-copy {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.65;
  margin: 0;
}

/* CTA box on detail page */
.cotacao-cta-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 20px;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: 16px;
}
.cotacao-cta-box .cotacao-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  margin: 0;
}
.cotacao-cta-sub {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  color: var(--bone-dim);
  text-align: center;
}

/* Customer reviews */
.reviews-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.reviews-section h3 {
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.review-card {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px;
}
.review-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.review-text {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.6;
  margin: 0 0 10px;
  font-style: italic;
}
.review-autor {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--bone);
  font-weight: 500;
}

/* Cross-sell section */
.cross-sell-box {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.cross-sell-box h3 {
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.cross-sell-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, background 0.18s;
  cursor: pointer;
}
.cross-sell-card:hover {
  border-color: var(--gold-dim);
  background: var(--charcoal-2);
}
.cross-sell-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}
.cross-sell-nome {
  font-size: 13px;
  font-weight: 600;
  color: var(--bone);
  line-height: 1.4;
}
.cross-sell-ref {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--bone-dim);
}

/* Cart item ref line (replaces price) */
.cart-item-ref {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--bone-dim);
  margin-top: 2px;
}

/* Mobile tweaks for new elements */
@media (max-width: 767px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .cross-sell-grid { grid-template-columns: repeat(2, 1fr); }
  .cotacao-cta-box { padding: 16px; }
}
