/* ==========================================================================
   Rodex Neumáticos — HTML básico + CSS
   Sistema de diseño Negro / Rojo / Gris (estética motorsport)
   ========================================================================== */

:root {
  --radius: 0.625rem;

  /* Superficies (grises claros) */
  --bg-50:  oklch(0.985 0.002 60);
  --bg-100: oklch(0.96 0.002 60);
  --bg-200: oklch(0.92 0.003 60);
  --bg-300: oklch(0.86 0.003 60);
  --bg-400: oklch(0.72 0.005 60);

  /* Textos */
  --fg-500: oklch(0.55 0.005 60);
  --fg-700: oklch(0.40 0.006 60);
  --fg-800: oklch(0.25 0.008 60);
  --fg-950: oklch(0.12 0.005 60);

  /* Marca (rojo) */
  --brand-500: oklch(0.58 0.22 27);
  --brand-600: oklch(0.52 0.22 27);
  --brand-700: oklch(0.45 0.20 27);

  --green-500: oklch(0.65 0.18 145);
  --green-700: oklch(0.50 0.15 145);
  --yellow-500: oklch(0.80 0.16 85);

  --font-heading: "Oswald", "Bebas Neue", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-label: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1400px;
}

/* Reset ------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-50);
  color: var(--fg-950);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Helpers ----------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

.font-heading { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.01em; }
.font-label { font-family: var(--font-label); }
.brand { color: var(--brand-500); }
.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--brand-500);
  margin-bottom: 12px;
}

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.bg-100-section { background: var(--bg-100); }

.section-head {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 2.25rem; line-height: 1.1; letter-spacing: -0.01em;
}
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head p { color: var(--fg-700); max-width: 28rem; }

/* Racing stripes ---------------------------------------------------------- */
.racing-stripe {
  background-image: repeating-linear-gradient(-45deg,
    transparent 0 10px,
    color-mix(in oklab, var(--fg-950) 8%, transparent) 10px 11px);
}
.racing-stripe-red {
  background-image: repeating-linear-gradient(-45deg,
    transparent 0 10px,
    color-mix(in oklab, var(--brand-500) 35%, transparent) 10px 11px);
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.05em;
  border-radius: var(--radius); transition: all .2s; white-space: nowrap;
  padding: 0 20px; height: 44px;
}
.btn-primary { background: var(--brand-500); color: #fff; }
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost { background: var(--bg-200); color: var(--fg-950); }
.btn-ghost:hover { background: var(--bg-300); }
.btn-outline { background: var(--bg-100); border: 1px solid var(--bg-300); color: var(--fg-950); }
.btn-outline:hover { border-color: var(--brand-500); }
.btn-lg { height: 56px; padding: 0 28px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg-50) 85%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in oklab, var(--bg-300) 70%, transparent);
}
.topstrip { display: none; border-bottom: 1px solid color-mix(in oklab, var(--bg-300) 40%, transparent); background: var(--bg-100); }
@media (min-width: 768px) { .topstrip { display: block; } }
.topstrip .container {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-label); font-size: 12px; letter-spacing: .05em;
  color: var(--fg-700); padding-top: 8px; padding-bottom: 8px;
}
.topstrip .group { display: flex; align-items: center; gap: 24px; }
.topstrip span, .topstrip a { display: flex; align-items: center; gap: 8px; }
.topstrip a:hover { color: var(--brand-500); }
.topstrip i { color: var(--brand-500); }

.navbar {
  max-width: var(--maxw); margin: 0 auto; padding: 0 16px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .navbar { padding: 0 24px; } }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-500); border-radius: 6px; position: relative; overflow: hidden;
}
.logo-mark i { color: #fff; font-size: 24px; position: relative; z-index: 1; }
.logo-mark .stripe { position: absolute; inset: 0; opacity: .6; }
.logo-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; }
.logo-sub { font-family: var(--font-label); font-size: 10px; letter-spacing: .25em; color: var(--brand-500); margin-top: 2px; }

.nav-links { display: none; align-items: center; height: 100%; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-heading); font-weight: 600; letter-spacing: .03em;
  padding: 0 16px; height: 100%; display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand-500); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .nav-actions { gap: 12px; } }
.icon-btn {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-100); border-radius: 6px; transition: all .2s; font-size: 20px;
}
.icon-btn:hover { background: var(--bg-200); }
.cart-badge {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 4px;
  background: var(--brand-500); color: #fff; font-size: 11px; font-weight: 700;
  font-family: var(--font-label); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.cart-badge[hidden] { display: none; }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.burger { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 24px; }
@media (min-width: 1024px) { .burger { display: none; } }

.mobile-menu { overflow: hidden; max-height: 0; transition: max-height .3s ease; border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); }
.mobile-menu.open { max-height: 500px; }
.mobile-menu .inner { padding: 16px; background: var(--bg-100); display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  border-radius: 6px; font-family: var(--font-heading); font-weight: 600;
}
.mobile-menu a:hover { background: var(--bg-200); }
.mobile-menu a i { color: var(--brand-500); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .ov1 { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-50), color-mix(in oklab,var(--bg-50) 90%,transparent) 50%, color-mix(in oklab,var(--bg-50) 40%,transparent)); }
.hero-bg .ov2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-50), transparent, color-mix(in oklab,var(--bg-50) 40%,transparent)); }
.hero-bg .ov3 { position: absolute; inset: 0; opacity: .3; }
.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px 16px; }
@media (min-width: 768px) { .hero-inner { padding: 96px 24px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border: 1px solid color-mix(in oklab,var(--brand-500) 60%,transparent);
  background: color-mix(in oklab,var(--brand-500) 10%,transparent); border-radius: 999px;
}
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand-500); animation: pulse 2s infinite; }
.badge-pill span:last-child { font-family: var(--font-label); font-size: 11px; letter-spacing: .25em; color: var(--brand-500); }

.hero h1 {
  margin-top: 24px; font-family: var(--font-heading); font-weight: 700;
  font-size: 3rem; line-height: .95; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero .lead { margin-top: 24px; color: var(--fg-700); font-size: 1rem; max-width: 36rem; }
@media (min-width: 768px) { .hero .lead { font-size: 1.125rem; } }
.hero-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* Quick search */
.quick-search {
  margin-top: 40px; padding: 16px;
  background: color-mix(in oklab,var(--bg-100) 90%,transparent);
  border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: var(--radius);
}
@media (min-width: 768px) { .quick-search { padding: 20px; } }
.quick-search .qs-title { font-family: var(--font-label); font-size: 11px; letter-spacing: .25em; color: var(--brand-500); margin-bottom: 12px; }
.qs-fields { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 640px) { .qs-fields { grid-template-columns: repeat(4,1fr); } }
.qs-field { position: relative; }
.qs-field input {
  width: 100%; height: 48px; background: var(--bg-50); border: 1px solid var(--bg-300);
  border-radius: 6px; padding: 0 12px; font-family: var(--font-label); font-size: 14px; color: var(--fg-950);
  outline: none;
}
.qs-field input:focus { border-color: var(--brand-500); }
.qs-field span {
  position: absolute; top: -8px; left: 12px; padding: 0 6px; background: var(--bg-100);
  font-family: var(--font-label); font-size: 10px; letter-spacing: .1em; color: var(--fg-700);
}

/* Hero stats */
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat {
  background: color-mix(in oklab,var(--bg-100) 85%,transparent);
  border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent);
  border-radius: 8px; padding: 20px; transition: border-color .2s;
}
.stat:hover { border-color: color-mix(in oklab,var(--brand-500) 60%,transparent); }
.stat .k { font-family: var(--font-label); font-size: 10px; letter-spacing: .3em; color: var(--brand-500); }
.stat .v { margin-top: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; line-height: 1; }
@media (min-width: 768px) { .stat .v { font-size: 3rem; } }
.stat .d { margin-top: 8px; font-size: .875rem; color: var(--fg-700); }
.stat-cta {
  grid-column: span 2; background: var(--brand-500); border-radius: 8px; padding: 20px;
  display: flex; align-items: center; gap: 16px; position: relative; overflow: hidden;
}
.stat-cta .mark { position: relative; width: 56px; height: 56px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.stat-cta .mark i { color: var(--brand-500); font-size: 30px; }
.stat-cta .l { position: relative; font-family: var(--font-label); font-size: 11px; letter-spacing: .25em; color: rgba(255,255,255,.8); }
.stat-cta .t { position: relative; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: #fff; }

/* Brands */
.brands { position: relative; border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); background: color-mix(in oklab,var(--bg-100) 80%,transparent); }
.brands .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 32px; padding: 20px 16px; }
.brands .label { font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; color: var(--fg-700); }
.brands .brand-name { font-family: var(--font-heading); font-weight: 900; letter-spacing: .15em; font-size: 1.125rem; color: color-mix(in oklab,var(--fg-950) 80%,transparent); transition: color .2s; }
@media (min-width: 768px) { .brands .brand-name { font-size: 1.25rem; } }
.brands .brand-name:hover { color: var(--fg-950); }

/* ==========================================================================
   SERVICES / PROCESS cards grid
   ========================================================================== */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.svc-card {
  position: relative; background: var(--bg-100);
  border: 1px solid color-mix(in oklab,var(--bg-300) 50%,transparent);
  border-radius: 8px; padding: 24px; overflow: hidden; transition: all .25s;
  cursor: pointer;
}
.svc-card:hover { border-color: color-mix(in oklab,var(--brand-500) 70%,transparent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px color-mix(in oklab,var(--brand-500) 30%,transparent); }
.svc-card:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
.svc-card:hover .svc-arrow { background: var(--brand-500); color: #fff; }
.svc-card:hover .svc-foot span:first-child { color: var(--brand-600); }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; }
.svc-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--bg-200); border-radius: 6px; transition: background .2s; }
.svc-icon i { font-size: 24px; color: var(--brand-500); transition: color .2s; }
.svc-card:hover .svc-icon { background: var(--brand-500); }
.svc-card:hover .svc-icon i { color: #fff; }
.svc-n { font-family: var(--font-label); font-size: 12px; letter-spacing: .1em; color: var(--fg-700); }
.svc-card h3 { margin-top: 24px; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
.svc-card .desc { font-size: .875rem; color: var(--fg-700); margin-top: 4px; }
.svc-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--fg-800); }
.svc-list li i { color: var(--brand-500); }
.svc-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); display: flex; align-items: center; justify-content: space-between; }
.svc-foot span:first-child { font-family: var(--font-label); font-size: 11px; letter-spacing: .25em; color: var(--fg-700); }
.svc-arrow { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--bg-200); border-radius: 6px; transition: background .2s; }
.svc-card:hover .svc-arrow { background: var(--brand-500); }
.svc-card:hover .svc-arrow i { color: #fff; }

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products-head h2 { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 768px) { .products-head h2 { font-size: 3rem; } }
.cats { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-btn {
  height: 40px; padding: 0 16px; border-radius: 6px; font-family: var(--font-heading);
  font-weight: 600; letter-spacing: .03em; font-size: .875rem; transition: background .2s;
  background: var(--bg-200); color: var(--fg-800);
}
.cat-btn:hover { background: var(--bg-300); }
.cat-btn.active { background: var(--brand-500); color: #fff; }

.products-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4,1fr); gap: 20px; } }

.tire {
  position: relative; background: var(--bg-50);
  border: 1px solid color-mix(in oklab,var(--bg-300) 50%,transparent);
  border-radius: 8px; overflow: hidden; transition: all .3s;
}
.tire:hover { border-color: color-mix(in oklab,var(--brand-500) 70%,transparent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px color-mix(in oklab,var(--brand-500) 30%,transparent); }
.tire-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; font-family: var(--font-label); font-size: 10px; letter-spacing: .2em; border-radius: 6px; background: var(--brand-500); color: #fff; }
.tire-fav { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: color-mix(in oklab,var(--bg-50) 80%,transparent); backdrop-filter: blur(4px); color: var(--fg-700); border-radius: 6px; font-size: 18px; }
.tire-fav:hover { color: var(--brand-500); }
.tire-img { position: relative; aspect-ratio: 1; background: var(--bg-100); overflow: hidden; }
.tire-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tire:hover .tire-img img { transform: scale(1.05); }
.tire-body { padding: 20px; }
.tire-row { display: flex; align-items: center; justify-content: space-between; }
.tire-brand { font-family: var(--font-label); font-size: 11px; letter-spacing: .25em; color: var(--brand-500); }
.tire-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--fg-700); }
.tire-rating i { color: var(--yellow-500); }
.tire-rating .rev { color: var(--fg-500); }
.tire h3 { margin-top: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; line-height: 1.2; }
.tire-size { margin-top: 4px; font-family: var(--font-label); font-size: 12px; letter-spacing: .05em; color: var(--fg-700); }
.tire-specs { margin-top: 12px; display: flex; align-items: center; gap: 12px; font-family: var(--font-label); font-size: 11px; color: var(--fg-700); }
.tire-specs .eff { padding: 2px 6px; border-radius: 4px; background: var(--bg-200); }
.tire-price-row { margin-top: 16px; display: flex; align-items: flex-end; justify-content: space-between; }
.tire-oldprice { font-size: 12px; color: var(--fg-500); text-decoration: line-through; font-family: var(--font-label); }
.tire-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; line-height: 1; }
.tire-price small { font-size: 1rem; }
.tire-discount { font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; color: var(--brand-500); }
.tire-add {
  margin-top: 16px; width: 100%; height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: .05em; border-radius: 6px;
  background: var(--bg-200); color: var(--fg-950); transition: all .2s;
}
.tire-add:hover { background: var(--brand-500); color: #fff; }

.empty { padding: 80px 0; text-align: center; background: var(--bg-50); border-radius: 8px; border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); }
.empty i { font-size: 3rem; color: var(--brand-500); }
.empty h3 { margin-top: 16px; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
.empty p { margin-top: 8px; color: var(--fg-700); }
.empty a { color: var(--brand-500); font-weight: 600; }

/* Service items */
.svc-extra { margin-top: 64px; }
.svc-extra-head { margin-bottom: 24px; }
.svc-extra-head h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
@media (min-width: 768px) { .svc-extra-head h3 { font-size: 1.875rem; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.svc-item { background: var(--bg-50); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; overflow: hidden; transition: all .25s; }
.svc-item:hover { border-color: color-mix(in oklab,var(--brand-500) 60%,transparent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px color-mix(in oklab,var(--brand-500) 30%,transparent); }
.svc-item .img { aspect-ratio: 16/10; overflow: hidden; }
.svc-item .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-item:hover .img img { transform: scale(1.05); }
.svc-item .body { padding: 20px; }
.svc-item h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.svc-item p { font-size: .875rem; color: var(--fg-700); margin-top: 4px; }
.svc-item .foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.svc-item .price { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }

/* ==========================================================================
   LOCATIONS
   ========================================================================== */
.loc-tabs { display: inline-flex; padding: 4px; background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 999px; flex-wrap: wrap; }
.loc-tab { padding: 10px 20px; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; letter-spacing: .03em; font-size: .875rem; color: var(--fg-700); transition: all .2s; }
.loc-tab:hover { color: var(--fg-950); }
.loc-tab.active { background: var(--brand-500); color: #fff; }
.loc-tab i { margin-right: 8px; }

.loc-grid { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: 7fr 5fr; } }
.loc-main { background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; overflow: hidden; }
.loc-hero { position: relative; height: 224px; overflow: hidden; }
@media (min-width: 768px) { .loc-hero { height: 288px; } }
.loc-hero img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero .ov { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-100), color-mix(in oklab,var(--bg-100) 30%,transparent), transparent); }
.loc-hero .cap { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; align-items: flex-end; justify-content: space-between; }
.loc-hero .tagline { font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; color: var(--brand-500); }
.loc-hero h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; line-height: 1.1; letter-spacing: -0.01em; }
.loc-google { display: none; align-items: center; gap: 4px; padding: 6px 12px; background: color-mix(in oklab,var(--bg-50) 90%,transparent); backdrop-filter: blur(4px); border-radius: 6px; }
@media (min-width: 640px) { .loc-google { display: flex; } }
.loc-google i { color: var(--yellow-500); }
.loc-google b { font-family: var(--font-heading); }
.loc-google span { font-size: 12px; color: var(--fg-700); font-family: var(--font-label); }

.loc-info { padding: 24px; display: grid; grid-template-columns: 1fr; gap: 12px; border-bottom: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); }
@media (min-width: 640px) { .loc-info { grid-template-columns: repeat(3,1fr); } }
.loc-info-item { display: flex; align-items: flex-start; gap: 12px; }
.loc-info-item .ic { width: 36px; height: 36px; flex: none; display: flex; align-items: center; justify-content: center; background: color-mix(in oklab,var(--brand-500) 15%,transparent); color: var(--brand-500); border-radius: 6px; }
.loc-info-item .lbl { font-family: var(--font-label); font-size: 10px; letter-spacing: .1em; color: var(--fg-700); }
.loc-info-item .val, .loc-info-item a { font-size: .875rem; color: var(--fg-950); }
.loc-info-item a { font-family: var(--font-heading); font-weight: 700; }
.loc-info-item a:hover { color: var(--brand-500); }
.open-now { margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; padding: 2px 8px; background: color-mix(in oklab,var(--green-500) 15%,transparent); border-radius: 999px; }
.open-now .dot { background: var(--green-500); }
.open-now span { font-family: var(--font-label); font-size: 10px; letter-spacing: .05em; color: var(--green-700); }

.loc-reviews { padding: 24px; }
.loc-reviews .ttl { font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; color: var(--brand-500); margin-bottom: 16px; }
.review { padding: 16px; background: var(--bg-50); border: 1px solid color-mix(in oklab,var(--bg-300) 50%,transparent); border-radius: 6px; margin-bottom: 12px; }
.review .top { display: flex; align-items: center; justify-content: space-between; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--brand-500); color: #fff; font-family: var(--font-heading); font-weight: 700; border-radius: 999px; }
.review .name { font-family: var(--font-heading); font-weight: 700; font-size: .875rem; }
.review .when { font-family: var(--font-label); font-size: 10px; letter-spacing: .05em; color: var(--fg-700); }
.review .stars { color: var(--yellow-500); font-size: 14px; }
.review p { margin-top: 12px; font-size: .875rem; color: var(--fg-800); }

.loc-side { display: flex; flex-direction: column; gap: 20px; }
.loc-map { background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; overflow: hidden; }
.loc-map iframe { width: 100%; height: 288px; border: 0; filter: grayscale(1) contrast(1.25); }
@media (min-width: 768px) { .loc-map iframe { height: 320px; } }
.loc-map .acts { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .loc-map .acts { flex-direction: row; } }
.loc-map .acts .btn { flex: 1; height: 48px; }
.loc-promo { position: relative; background: var(--brand-500); border-radius: 8px; padding: 24px; overflow: hidden; }
.loc-promo .l { position: relative; font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; color: rgba(255,255,255,.8); }
.loc-promo h4 { position: relative; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: #fff; margin-top: 8px; line-height: 1.1; }
.loc-promo p { position: relative; font-size: .875rem; color: rgba(255,255,255,.9); margin-top: 4px; }
.loc-promo .btn { position: relative; margin-top: 16px; background: var(--fg-950); color: #fff; }
.loc-promo .btn i { color: var(--brand-500); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { position: relative; overflow: hidden; }
.process .stripe-bg { position: absolute; inset: 0; opacity: .2; }
.process .inner { position: relative; }
.process-head { text-align: center; max-width: 42rem; margin: 0 auto 48px; }
.process-head h2 { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 768px) { .process-head h2 { font-size: 3rem; } }
.process-head p { margin-top: 16px; color: var(--fg-700); }
.step { position: relative; padding: 24px; background: var(--bg-50); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; transition: border-color .2s; }
.step:hover { border-color: color-mix(in oklab,var(--brand-500) 60%,transparent); }
.step .top { display: flex; align-items: center; justify-content: space-between; }
.step .n { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; line-height: 1; color: color-mix(in oklab,var(--brand-500) 30%,transparent); transition: color .2s; }
.step:hover .n { color: var(--brand-500); }
.step .ic { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-200); border-radius: 6px; transition: background .2s; }
.step .ic i { font-size: 24px; color: var(--brand-500); transition: color .2s; }
.step:hover .ic { background: var(--brand-500); }
.step:hover .ic i { color: #fff; }
.step h3 { margin-top: 20px; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; line-height: 1.2; }
.step p { margin-top: 8px; font-size: .875rem; color: var(--fg-700); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { position: relative; background: var(--fg-950); color: var(--bg-100); }
.footer .bar { position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--brand-500); }
.footer .inner { max-width: var(--maxw); margin: 0 auto; padding: 56px 16px; }
@media (min-width: 768px) { .footer .inner { padding: 80px 24px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.5fr; } }
.footer .logo-name { color: #fff; }
.footer .about { margin-top: 20px; font-size: .875rem; color: var(--bg-300); max-width: 28rem; }
.socials { margin-top: 20px; display: flex; gap: 8px; }
.socials a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); color: #fff; border-radius: 6px; font-size: 18px; transition: background .2s; }
.socials a:hover { background: var(--brand-500); }
.footer h5 { font-family: var(--font-label); font-size: 11px; letter-spacing: .3em; color: var(--brand-500); margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a, .footer .col a { font-size: .875rem; color: var(--bg-300); }
.footer ul a:hover { color: #fff; }
.footer .col > div { margin-bottom: 12px; font-size: .875rem; color: var(--bg-300); }
.footer .col b { display: block; font-family: var(--font-heading); color: #fff; }
.footer .col a { color: var(--bg-300); }
.footer .col a:hover { color: var(--brand-500); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 12px; justify-content: space-between; font-family: var(--font-label); font-size: 12px; letter-spacing: .05em; color: var(--bg-400); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.overlay { position: fixed; inset: 0; z-index: 50; background: color-mix(in oklab,var(--fg-950) 50%,transparent); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.show { opacity: 1; pointer-events: auto; }

.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 50; width: 100%; max-width: 440px; background: var(--bg-50); box-shadow: -10px 0 40px rgba(0,0,0,.2); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; }
.drawer.open { transform: translateX(0); }
.drawer header { height: 64px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); background: var(--bg-100); }
.drawer header .ttl { display: flex; align-items: center; gap: 8px; }
.drawer header .ttl i { color: var(--brand-500); font-size: 20px; }
.drawer header .ttl b { font-family: var(--font-heading); font-size: 1.125rem; }
.drawer header .ttl span { font-family: var(--font-label); font-size: 12px; color: var(--fg-700); }
.x-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 20px; }
.x-btn:hover { background: var(--bg-200); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { padding: 64px 0; text-align: center; }
.cart-empty i { font-size: 3rem; color: var(--fg-500); }
.cart-empty h3 { margin-top: 16px; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }
.cart-empty p { margin-top: 4px; font-size: .875rem; color: var(--fg-700); }
.cart-item { display: flex; gap: 12px; padding: 12px; background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 6px; margin-bottom: 12px; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; background: var(--bg-200); }
.cart-item .info { flex: 1; min-width: 0; }
.cart-item .brand { font-family: var(--font-label); font-size: 10px; letter-spacing: .1em; color: var(--brand-500); }
.cart-item .name { font-family: var(--font-heading); font-weight: 700; font-size: .875rem; line-height: 1.2; }
.cart-item .price { margin-top: 4px; font-family: var(--font-heading); font-weight: 700; }
.cart-item .controls { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--bg-300); border-radius: 6px; overflow: hidden; }
.qty button { width: 32px; height: 32px; }
.qty button:hover { background: var(--bg-200); }
.qty span { width: 32px; text-align: center; font-family: var(--font-label); font-size: 14px; }
.cart-item .del { color: var(--fg-700); font-size: 16px; }
.cart-item .del:hover { color: var(--brand-500); }

.cart-foot { border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); padding: 16px 20px; background: var(--bg-100); }
.cart-foot .row { display: flex; justify-content: space-between; font-size: .875rem; margin-bottom: 8px; }
.cart-foot .row span:first-child { color: var(--fg-700); }
.cart-foot .row span:last-child { font-family: var(--font-label); }
.cart-foot .total { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); }
.cart-foot .total b { font-family: var(--font-heading); font-size: 1.125rem; }
.cart-foot .total .amt { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }

/* ==========================================================================
   MODALS (booking + checkout)
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 16px; background: color-mix(in oklab,var(--fg-950) 70%,transparent); backdrop-filter: blur(4px); }
.modal.open { display: flex; animation: fade-in .3s ease both; }
.modal-card { width: 100%; max-width: 42rem; background: var(--bg-50); border-radius: 8px; box-shadow: 0 25px 60px rgba(0,0,0,.35); overflow: hidden; display: flex; flex-direction: column; max-height: 92vh; }
.modal-card.sm { max-width: 28rem; }
.modal-head { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); background: var(--bg-100); }
.modal-head .l { font-family: var(--font-label); font-size: 10px; letter-spacing: .3em; color: var(--brand-500); }
.modal-head .t { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.modal-scroll { flex: 1; overflow-y: auto; padding: 20px 24px; }
.modal-foot { padding: 16px 24px; border-top: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); background: var(--bg-100); display: flex; align-items: center; justify-content: space-between; }

/* Stepper */
.stepper { padding: 20px 24px 0; }
.stepper .track { display: flex; align-items: center; gap: 8px; }
.stepper .seg { flex: 1; display: flex; align-items: center; gap: 8px; }
.stepper .num { width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 14px; background: var(--bg-200); color: var(--fg-700); transition: all .2s; }
.stepper .num.active { background: var(--brand-500); color: #fff; }
.stepper .num.done { background: var(--green-500); color: #fff; }
.stepper .line { flex: 1; height: 2px; background: var(--bg-200); }
.stepper .line.done { background: var(--green-500); }
.stepper .caption { margin-top: 8px; font-family: var(--font-label); font-size: 11px; letter-spacing: .05em; color: var(--fg-700); }

/* Reason cards */
.reasons { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .reasons { grid-template-columns: repeat(2,1fr); } }
.reason { text-align: left; padding: 20px; border-radius: 8px; border: 2px solid var(--bg-300); background: var(--bg-100); transition: all .2s; }
.reason:hover { border-color: color-mix(in oklab,var(--brand-500) 50%,transparent); transform: translateY(-2px); }
.reason.active { border-color: var(--brand-500); background: color-mix(in oklab,var(--brand-500) 5%,transparent); }
.reason .ic { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 6px; margin-bottom: 12px; background: var(--bg-200); color: var(--brand-500); font-size: 24px; transition: all .2s; }
.reason.active .ic { background: var(--brand-500); color: #fff; }
.reason b { font-family: var(--font-heading); font-weight: 700; display: block; }
.reason span { font-size: 12px; color: var(--fg-700); margin-top: 4px; display: block; }

/* Calendar */
.cal { background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; padding: 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head b { font-family: var(--font-heading); font-weight: 700; text-transform: capitalize; }
.cal-nav { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 20px; }
.cal-nav:hover { background: var(--bg-200); }
.cal-dow, .cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-dow div { text-align: center; padding: 4px 0; font-family: var(--font-label); font-size: 10px; letter-spacing: .1em; color: var(--fg-700); }
.cal-day { aspect-ratio: 1; border-radius: 6px; font-family: var(--font-heading); font-size: 14px; color: var(--fg-950); transition: background .2s; }
.cal-day:hover:not(:disabled) { background: color-mix(in oklab,var(--brand-500) 15%,transparent); }
.cal-day.selected { background: var(--brand-500); color: #fff; }
.cal-day:disabled { color: color-mix(in oklab,var(--fg-500) 40%,transparent); cursor: not-allowed; }
.slots-group { margin-top: 20px; }
.slots-group .lbl { font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; color: var(--brand-500); margin-bottom: 8px; }
.slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.slot { height: 44px; border-radius: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; background: var(--bg-100); border: 1px solid var(--bg-300); color: var(--fg-950); transition: all .2s; }
.slot:hover { background: var(--bg-200); }
.slot.selected { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }

/* Aviso de error al reservar (paso 3) */
.b-alert { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; padding: 12px 14px; border: 1px solid var(--brand-500); border-left-width: 3px; border-radius: 6px; background: color-mix(in oklab,var(--brand-500) 8%,transparent); font-size: 14px; line-height: 1.45; color: var(--fg-950); }
.b-alert i { flex-shrink: 0; margin-top: 1px; color: var(--brand-500); font-size: 18px; }

/* Form fields */
.fields { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .fields.two { grid-template-columns: repeat(2,1fr); } }
.field { display: block; }
.field .span2 { grid-column: span 2; }
.field span { font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; color: var(--fg-700); }
.field input { margin-top: 4px; width: 100%; height: 44px; padding: 0 12px; background: var(--bg-100); border: 1px solid var(--bg-300); border-radius: 6px; font-size: 14px; color: var(--fg-950); outline: none; }
.field input:focus { border-color: var(--brand-500); }
.span2 { grid-column: span 2; }

/* Confirmation */
.confirm { text-align: center; padding: 16px 0; }
.confirm .circle { margin: 0 auto; width: 96px; height: 96px; border-radius: 999px; background: color-mix(in oklab,var(--green-500) 15%,transparent); display: flex; align-items: center; justify-content: center; animation: circle-pop .5s ease-out both; }
.confirm h3 { margin-top: 20px; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
.confirm p { margin-top: 8px; font-size: .875rem; color: var(--fg-700); }
.summary { margin: 24px auto 0; max-width: 24rem; text-align: left; background: var(--bg-100); border: 1px solid color-mix(in oklab,var(--bg-300) 60%,transparent); border-radius: 8px; padding: 20px; font-size: .875rem; }
.summary .r { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.summary .r span:first-child { color: var(--fg-700); }
.summary .r span:last-child { font-weight: 600; text-align: right; }
.pay-badge { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: color-mix(in oklab,var(--brand-500) 10%,transparent); border: 1px solid color-mix(in oklab,var(--brand-500) 40%,transparent); border-radius: 6px; }
.pay-badge i { color: var(--brand-500); }
.pay-badge span { font-family: var(--font-label); font-size: 14px; color: var(--brand-700); }
.checkout-total { padding-top: 8px; display: flex; align-items: center; justify-content: space-between; font-size: .875rem; }
.checkout-total b { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }

.draw-check { stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw-check .6s ease-out .2s forwards; }

/* Toast */
.toast-wrap { position: fixed; bottom: 16px; right: 16px; z-index: 80; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--fg-950); color: #fff; padding: 12px 16px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.3); display: flex; align-items: center; gap: 10px; animation: fade-in .3s ease; min-width: 220px; }
.toast i { color: var(--green-500); font-size: 18px; }
.toast b { font-family: var(--font-heading); font-size: .875rem; display: block; }
.toast small { color: var(--bg-300); }

/* Animations */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes circle-pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.hidden { display: none !important; }

/* ==========================================================================
   COOKIES (banner + panel de configuración)
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  background: var(--fg-950); color: var(--bg-50);
  border: 1px solid color-mix(in oklab, var(--brand-500) 35%, transparent);
  border-radius: 12px; box-shadow: 0 25px 60px rgba(0,0,0,.45);
  animation: fade-in .35s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 900px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; }
}
.cookie-text h4 { font-family: var(--font-heading); font-size: 1.05rem; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cookie-text h4 i { color: var(--brand-500); }
.cookie-text p { font-size: .85rem; color: var(--bg-300); max-width: 60ch; }
.cookie-text a { color: var(--brand-500); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { height: 42px; }
.cookie-actions .btn-ghost { background: color-mix(in oklab, var(--bg-50) 14%, transparent); color: var(--bg-50); }
.cookie-actions .btn-ghost:hover { background: color-mix(in oklab, var(--bg-50) 24%, transparent); }
.cookie-actions .btn-outline { background: transparent; color: var(--bg-50); border-color: color-mix(in oklab, var(--bg-50) 35%, transparent); }
.cookie-actions .btn-outline:hover { border-color: var(--brand-500); }

.cookie-config { padding: 8px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.cookie-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px; border: 1px solid color-mix(in oklab, var(--bg-300) 70%, transparent);
  border-radius: 10px; cursor: pointer;
}
.cookie-row b { font-family: var(--font-heading); font-size: .95rem; display: block; }
.cookie-row span { font-size: .8rem; color: var(--fg-700); display: block; margin-top: 2px; }
.cookie-row input { width: 20px; height: 20px; accent-color: var(--brand-500); flex-shrink: 0; }
.cookie-config-foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.cookie-config-foot .btn { height: 46px; flex: 1; }

/* ==========================================================================
   PÁGINAS LEGALES
   ========================================================================== */
.legal { padding: 56px 0 80px; }
.legal-inner { max-width: 60rem; }
.legal h1 { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; line-height: 1.1; margin-bottom: 16px; }
@media (min-width: 768px) { .legal h1 { font-size: 2.75rem; } }
.legal h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; margin: 36px 0 10px; padding-top: 8px; }
.legal h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin: 24px 0 8px; color: var(--fg-800); }
.legal p { color: var(--fg-700); margin-bottom: 14px; line-height: 1.7; }
.legal .legal-lead { font-size: 1.05rem; color: var(--fg-800); }
.legal a { color: var(--brand-600); text-decoration: underline; }
.legal-list { margin: 0 0 14px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-list li { position: relative; padding-left: 22px; color: var(--fg-700); line-height: 1.65; }
.legal-list li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; background: var(--brand-500); border-radius: 2px; }
.legal-list .legal-list { margin-top: 10px; }
.legal-sign { margin-top: 20px; }
.legal-updated { font-family: var(--font-label); font-size: .8rem; color: var(--fg-500); margin-top: 24px; }
.legal-back { margin-top: 32px; }

.cookie-table { border: 1px solid color-mix(in oklab, var(--bg-300) 70%, transparent); border-radius: 10px; overflow: hidden; margin: 12px 0 8px; }
.cookie-table-row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; border-bottom: 1px solid color-mix(in oklab, var(--bg-300) 60%, transparent); font-size: .88rem; }
.cookie-table-row:last-child { border-bottom: none; }
.cookie-table-row span:first-child { font-family: var(--font-heading); font-weight: 700; color: var(--fg-900, var(--fg-800)); }
.cookie-table-head { background: var(--bg-100); font-family: var(--font-label); font-size: 11px; letter-spacing: .15em; }
.cookie-table-head span { color: var(--fg-700) !important; }
@media (min-width: 768px) {
  .cookie-table-row { grid-template-columns: 1fr 2fr 1fr; gap: 16px; align-items: start; }
}
