/* ===================================================================
   TIMPORTA — Stylesheet
   Vintage trading house meets modern minimalism.
   Black + gold (#bf972e) — tu importador a medida.
   =================================================================== */

/* ============== TOKENS ============== */
:root {
  /* Palette */
  --ink: #0c0a08;
  --ink-soft: #15110c;
  --ink-medium: #1f1a12;
  --ink-line: #2a231a;
  --ink-muted: #6e6354;

  --gold: #bf972e;
  --gold-light: #d8b552;
  --gold-deep: #8a6a1f;
  --gold-glow: rgba(191, 151, 46, 0.18);
  --gold-faint: rgba(191, 151, 46, 0.10);
  --gold-hair: rgba(191, 151, 46, 0.22);

  --cream: #f4ead0;
  --cream-soft: #ebe0bd;
  --cream-deep: #d9caa0;
  --paper: #faf4e0;

  --ink-on-cream: #1c1610;
  --ink-on-cream-soft: #5a4f3d;
  --line-on-cream: #cfbf94;

  --wa: #25D366;
  --wa-deep: #128C7E;
  --wa-darker: #075E54;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --container: 1240px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;

  --ease: cubic-bezier(.2,.7,.2,1);

  /* Backward-compat aliases used by legacy inline styles on legal pages */
  --brand-gold: var(--gold);
  --brand-red: #b3454e;
  --brand-navy: var(--ink);
  --r-md: var(--radius);
  --r-pill: 999px;
}

/* ============== RESET ============== */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea { font: inherit; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
em, .accent-italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--gold);
}
strong { font-weight: 700; }

.underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.05em;
  height: 0.08em;
  background: var(--gold);
  border-radius: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-faint);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--gold-faint); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.eyebrow-on-dark { color: var(--gold-light); }
.eyebrow.gold { color: var(--gold); }

/* ============== LAYOUT ============== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section {
  padding: 120px 0;
  position: relative;
  background: var(--ink);
  color: #d9d1c0;
}
.section-tight { padding: 88px 0; }
.section-cream {
  background: var(--cream);
  color: var(--ink-on-cream);
  position: relative;
}
.section-cream::before,
.section-cream::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hair) 20%, var(--gold-hair) 80%, transparent);
}
.section-cream::before { top: 0; }
.section-cream::after { bottom: 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 { margin-bottom: 20px; }
.section-lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.55;
}
.section-cream .section-lead { color: var(--ink-on-cream-soft); }

/* ============== TOPBAR ============== */
.topbar {
  background: #060503;
  border-bottom: 1px solid var(--gold-faint);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-sep { color: var(--gold-deep); opacity: 0.5; }
.topbar-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 2px;
}
@media (max-width: 768px) {
  .topbar-inner { gap: 10px; padding: 8px 20px; font-size: 0.62rem; }
  .topbar-item:not(:first-child):not(:nth-child(3)) { display: none; }
  .topbar-sep:nth-of-type(n+2) { display: none; }
}

/* ============== NAVBAR ============== */
.nav {
  background: rgba(12,10,8,0.92);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--ink-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-mark {
  display: block;
  width: 44px; height: 44px;
  background: #000;
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-sm);
  padding: 2px;
  flex-shrink: 0;
}
.nav-mark img,
.nav-mark svg { width: 100%; height: 100%; display: block; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-variation-settings: 'opsz' 36;
}
.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: #c9bfac;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta { flex-shrink: 0; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-sm);
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  content: "";
  width: 18px; height: 1.5px;
  background: var(--gold);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.nav-burger span::before { position: absolute; top: -6px; left: 0; right: 0; }
.nav-burger span::after { position: absolute; top: 6px; left: 0; right: 0; }

.nav-mobile {
  display: none;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--ink-line);
  flex-direction: column;
  gap: 4px;
  background: var(--ink-soft);
}
.nav-mobile a {
  padding: 14px 4px;
  color: #c9bfac;
  border-bottom: 1px solid var(--ink-line);
  font-weight: 500;
}
.nav-mobile a:last-child { border: 0; margin-top: 14px; }
.nav-mobile.open { display: flex; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 1px 0 var(--gold-light) inset, 0 8px 24px -10px var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 1px 0 var(--gold-light) inset, 0 12px 32px -10px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-hair);
}
.btn-ghost:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 20px -8px rgba(37,211,102,0.4);
}
.btn-wa:hover { background: var(--wa-deep); border-color: var(--wa-deep); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background: var(--ink);
  color: #d9d1c0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, var(--ink) 75%);
}
.hero-meridians { width: 100%; height: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding: 64px 0 80px; }
}

.hero h1 {
  margin: 0 0 28px;
  color: var(--cream);
}
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: #b8ad99;
  margin: 0 0 18px;
  max-width: 540px;
}
.hero-lead:last-of-type { margin-bottom: 36px; }
.hero-lead strong { color: var(--cream); font-weight: 600; }
.hero-lead-2 {
  font-size: 1.05rem;
  color: #968b78;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Hero right side */
.hero-stack {
  position: relative;
}

/* "Tracking en vivo" header tag — ancla el manifest sin saturar visualmente */
.manifest-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  background: rgba(191, 151, 46, 0.08);
  border: 1px solid var(--gold-hair);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 14px 4px;
}
.manifest-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
  animation: pulse 2s var(--ease) infinite;
}

/* Shipping manifest card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, #16110a 0%, #0e0b07 100%);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  color: var(--cream);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.manifest-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.manifest-corner-tl { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.manifest-corner-tr { top: 10px; right: 10px; border-top-width: 1px; border-right-width: 1px; }
.manifest-corner-bl { bottom: 10px; left: 10px; border-bottom-width: 1px; border-left-width: 1px; }
.manifest-corner-br { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }

.manifest-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.manifest-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 6px;
}
.manifest-id {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.manifest-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--gold);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.manifest-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.manifest-divider::before,
.manifest-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-hair);
}

.manifest-product {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--cream);
  font-variation-settings: 'opsz' 36;
}
.manifest-meta {
  font-size: 0.85rem;
  color: #9b9180;
  margin-top: 6px;
}

.manifest-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  padding: 14px 0;
  border-top: 1px dashed var(--gold-hair);
  border-bottom: 1px dashed var(--gold-hair);
}
.route-point { text-align: center; }
.route-flag { font-size: 1.4rem; line-height: 1; }
.route-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 4px;
}
.route-line { width: 100%; }
.route-line svg { width: 100%; height: 12px; }

.manifest-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.manifest-total-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.manifest-total-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 36;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--cream);
  color: var(--ink-on-cream);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gold-hair);
  border-bottom: 1px solid var(--gold-hair);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 50s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink-on-cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== STEPS / CÓMO FUNCIONA ============== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.step-card {
  padding: 38px 30px 32px;
  border-right: 1px solid var(--line-on-cream);
  position: relative;
  background: var(--paper);
  transition: background 0.3s var(--ease);
}
.step-card:last-child { border-right: 0; }
.step-card:hover { background: #fdfaf0; }
.step-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.step-card .num::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
}
.step-card h3 {
  color: var(--ink-on-cream);
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--ink-on-cream-soft);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card { border-right: 1px solid var(--line-on-cream); border-bottom: 1px solid var(--line-on-cream); }
  .step-card:nth-child(2n) { border-right: 0; }
  .step-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: 0; border-bottom: 1px solid var(--line-on-cream); }
  .step-card:last-child { border-bottom: 0; }
}

/* ============== CALC / COTIZAR ============== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 36px; }
}

.calc-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-on-cream);
}
.calc-head-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
  line-height: 1;
}
.calc-head h3 {
  color: var(--ink-on-cream);
  font-size: 1.5rem;
  margin: 0;
}

.calc-box {
  background: var(--paper);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.calc-box::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-hair);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}
.calc-box > * { position: relative; z-index: 1; }

.calc-box label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-on-cream-soft);
  margin: 22px 0 8px;
}
.calc-box label:first-of-type { margin-top: 0; }
.optional {
  font-weight: 400;
  color: var(--ink-on-cream-soft);
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0.04em;
}
.calc-box input,
.calc-box textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius-sm);
  color: var(--ink-on-cream);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.calc-box input:focus,
.calc-box textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}
.calc-box textarea { min-height: 90px; resize: vertical; font-family: inherit; }

.calc-box .btn { margin-top: 28px; }
.calc-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-on-cream-soft);
  margin: 14px 0 0;
  font-style: italic;
}

/* ===== Chat mockup (WhatsApp-style preview) ===== */
.calc-preview-col {
  position: sticky;
  top: 96px;
}

.chat-mock {
  background: linear-gradient(180deg, #075E54 0%, #075E54 56px, #0a3d36 56px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 48px -20px rgba(0,0,0,0.45);
  margin-bottom: 22px;
  border: 1px solid rgba(0,0,0,0.2);
}
.chat-mock-bar {
  background: #075E54;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.chat-mock-back {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.85;
  margin-right: -4px;
}
.chat-mock-avatar {
  width: 36px; height: 36px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-mock-avatar img { width: 100%; height: 100%; }
.chat-mock-meta { line-height: 1.15; }
.chat-mock-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36;
}
.chat-mock-meta small {
  font-size: 0.72rem;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.chat-mock-online {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
}

.chat-mock-body {
  background:
    radial-gradient(circle at 20% 20%, rgba(191,151,46,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(37,211,102,0.04) 0%, transparent 40%),
    #0a3d36;
  padding: 22px 18px 16px;
  min-height: 220px;
}
.chat-mock-day {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.2);
  display: inline-block;
  margin: 0 auto 18px;
  padding: 4px 12px;
  border-radius: 999px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.quote-preview {
  background: #128C7E;
  color: #fff;
  padding: 14px 16px 12px;
  border-radius: 10px;
  border-bottom-left-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0 24px 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: relative;
  max-width: 90%;
}
.quote-preview::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 16px;
  background: #128C7E;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.chat-mock-status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}
.chat-mock-check { color: #53bdeb; font-size: 0.85rem; }

.calc-preview-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-on-cream-soft);
  margin: 0;
  line-height: 1.55;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-variation-settings: 'opsz' 36;
}

@media (max-width: 900px) {
  .calc-preview-col { position: static; }
}

/* ============== TIENDAS ============== */
.tiendas {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.tiendas h2 {
  color: var(--cream);
  margin-bottom: 20px;
}
.tiendas .section-lead {
  margin: 0 auto 48px;
  text-align: center;
}
.tiendas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.tienda-pill {
  padding: 12px 22px;
  border: 1px solid var(--gold-hair);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  background: var(--ink-soft);
  font-variation-settings: 'opsz' 36;
  transition: all 0.25s var(--ease);
  cursor: default;
}
.tienda-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.tienda-pill-accent {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-style: italic;
}
.tienda-pill-accent:hover {
  background: var(--gold-light);
  color: var(--ink);
}

/* ============== WHY GRID ============== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-cream);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-card {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.3s var(--ease);
}
.why-card:hover { background: #fdfaf0; }
.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-hair);
  min-width: 40px;
  font-variation-settings: 'opsz' 144;
}
.why-card h3 {
  color: var(--ink-on-cream);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.why-card p {
  color: var(--ink-on-cream-soft);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============== BIG CTA ============== */
.section-cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bg svg { width: 100%; height: 100%; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, var(--ink) 80%);
}

.big-cta {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.big-cta h2 {
  color: var(--cream);
  margin: 16px 0 22px;
}
.big-cta p {
  font-size: 1.15rem;
  color: #a89e8a;
  margin: 0 0 36px;
  line-height: 1.55;
}
.cta-meta {
  margin-top: 28px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-sep { color: var(--gold-deep); opacity: 0.5; }

/* ============== FAQ PAGE ============== */
.faq-hero {
  background: var(--ink-soft);
  color: var(--cream);
  padding: 96px 0 48px;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hair) 30%, var(--gold-hair) 70%, transparent);
}
.faq-hero h1 {
  color: var(--cream);
  margin-bottom: 18px;
}
.faq-hero h1 .hl,
.hl {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.faq-hero p {
  color: #b8ad99;
  max-width: 620px;
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.faq-search {
  background: var(--ink-medium);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius);
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 6px;
  max-width: 540px;
  position: relative;
}
.faq-search::before {
  content: "🔍";
  padding-left: 18px;
  color: var(--gold);
  font-size: 1rem;
}
.faq-search input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--cream);
  padding: 14px 18px;
}
.faq-search input::placeholder { color: #6e6354; }

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.faq-tab {
  padding: 9px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--gold-hair);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.faq-tab:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.faq-body {
  background: var(--cream);
  color: var(--ink-on-cream);
  padding: 80px 0 96px;
}
.faq-section {
  background: var(--paper);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-hair);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}
.faq-section > * { position: relative; z-index: 1; }
.faq-section h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--ink-on-cream);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-on-cream);
}

details.q {
  border-top: 1px solid var(--line-on-cream);
  padding: 18px 0;
}
details.q:first-of-type { border-top: 0; }
details.q[open] { padding-bottom: 24px; }
details.q summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-on-cream);
  transition: color .15s;
  padding: 6px 0;
  font-variation-settings: 'opsz' 36;
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after {
  content: '+';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
details.q[open] summary::after { transform: rotate(45deg); }
details.q summary:hover { color: var(--gold-deep); }
details.q .a {
  margin-top: 12px;
  color: var(--ink-on-cream-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
details.q .a p { margin: 0 0 .8em; }
details.q .a ul { padding-left: 1.4em; margin: .4em 0; list-style: disc; }
details.q .a li { margin-bottom: .4em; }
details.q .a a {
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-hair);
}
details.q .a a:hover { color: var(--gold); border-bottom-color: var(--gold); }
details.q .a strong { color: var(--ink-on-cream); }

@media (max-width: 640px) {
  .faq-section { padding: 28px 22px; }
}

.faq-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--ink-soft);
  color: var(--cream);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-hair);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.faq-cta > * { position: relative; z-index: 1; }
.faq-cta h3 {
  color: var(--cream);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.faq-cta p {
  color: #b8ad99;
  margin: 0 0 24px;
  font-size: 1.02rem;
}

/* ============== LEGAL PAGES ============== */
.legal-hero {
  background: var(--ink-soft);
  color: var(--cream);
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hair) 30%, var(--gold-hair) 70%, transparent);
}
.legal-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}
.legal-hero p {
  color: #b8ad99;
  max-width: 640px;
  margin: 0 0 24px;
  font-size: 1.05rem;
}
.legal-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-hair);
  padding: 6px 14px;
  border-radius: 999px;
}

.legal-body-wrap {
  background: var(--cream);
  color: var(--ink-on-cream);
}
.legal-body {
  background: var(--cream);
  color: var(--ink-on-cream);
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.legal-body h2 {
  font-size: 1.55rem;
  margin-top: 52px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  color: var(--ink-on-cream);
  border-bottom: 1px solid var(--gold-hair);
  display: block;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--ink-on-cream);
}
.legal-body p, .legal-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-on-cream-soft);
}
.legal-body p { margin: 0 0 1em; }
.legal-body ul, .legal-body ol { padding-left: 1.4em; list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink-on-cream); }
.legal-body a {
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-hair);
}
.legal-body a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}
.legal-body th, .legal-body td {
  border: 1px solid var(--line-on-cream);
  padding: 12px 16px;
  text-align: left;
}
.legal-body th {
  background: var(--cream-soft);
  font-weight: 700;
  color: var(--ink-on-cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-toc {
  background: var(--paper);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 48px;
  position: relative;
}
.legal-toc::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-hair);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}
.legal-toc > * { position: relative; z-index: 1; }
.legal-toc h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  color: var(--gold-deep);
}
.legal-toc ol { padding-left: 1.4em; margin: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a {
  color: var(--ink-on-cream);
  font-weight: 600;
  border-bottom: 0;
}
.legal-toc a:hover { color: var(--gold-deep); }

.legal-postscript {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--paper);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink-on-cream-soft);
}

/* ============== ERROR PAGES ============== */
.err-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 64px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.err-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.err-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--ink) 70%);
}
.err-card {
  position: relative;
  max-width: 720px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.err-code {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: .9;
  font-size: clamp(7rem, 22vw, 13rem);
  color: var(--gold);
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.err-sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-hair);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.err-card h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.err-card .lead {
  font-size: 1.1rem;
  color: #b8ad99;
  max-width: 560px;
  margin: 0 auto 32px;
}
.err-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}
.err-suggest {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  text-align: left;
  position: relative;
}
.err-suggest::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-hair);
  border-radius: calc(var(--radius-lg) - 2px);
  pointer-events: none;
}
.err-suggest > * { position: relative; z-index: 1; }
.err-suggest h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.err-suggest ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 18px;
}
.err-suggest li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #c9bfac;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.err-suggest li a:hover {
  background: var(--gold-faint);
  color: var(--gold);
}

/* ============== FOOTER ============== */
.footer {
  background: #060503;
  color: #8a8175;
  padding: 80px 0 32px;
  border-top: 1px solid var(--gold-faint);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-col { max-width: 360px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-mark {
  display: block;
  width: 56px; height: 56px;
  background: #000;
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}
.footer-mark img,
.footer-mark svg { width: 100%; height: 100%; }
.footer-word {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.9rem;
  color: #8a8175;
  line-height: 1.6;
  margin: 0 0 16px;
}
.footer-trademark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}
.footer ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer ul li a {
  color: #8a8175;
  transition: color 0.2s var(--ease);
}
.footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--ink-muted); transition: color 0.2s var(--ease); }
.footer-bottom a:hover { color: var(--gold); }
.footer-heart { color: var(--gold); }

/* ============== WHATSAPP FLOAT ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wa);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 0 0 1px rgba(255,255,255,0.1) inset;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.6), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.wa-float svg { width: 20px; height: 20px; }
.wa-float .lbl { display: inline; }
@media (max-width: 560px) {
  .wa-float .lbl { display: none; }
  .wa-float { padding: 14px; bottom: 20px; right: 20px; }
}
.safe-bottom { padding-bottom: max(14px, env(safe-area-inset-bottom, 0)); }

/* ============== ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Fallback: reveal on load if JS doesn't toggle the class */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: revealIn 0.9s var(--ease) both;
    animation-delay: 0.05s;
  }
  .reveal.delay-1 { animation-delay: 0.18s; }
  .reveal.delay-2 { animation-delay: 0.3s; }
  .reveal.delay-3 { animation-delay: 0.42s; }
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ============== UTILITIES ============== */
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
