/* ═══════════════════════════════════════════════════════════
   GLOBAL BIKE RENT — night-ride Miami
   display: Archivo Expanded · body: Archivo · data: IBM Plex Mono
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0B0B0E;
  --bg-2: #101015;
  --panel: #15151B;
  --line: rgba(255, 255, 255, 0.09);
  --text: #F4F3F6;
  --muted: #A3A2AE;
  --pink: #FF2E96;
  --pink-soft: rgba(255, 46, 150, 0.14);
  --pink-glow: rgba(255, 46, 150, 0.38);
  --silver: #C6CDD8;
  --gold: #E5B44E;
  --diamond: #8FD8FF;
  --showroom: #F3F2EE;
  --showroom-ink: #131316;
  --showroom-muted: #6B6A72;
  --showroom-line: rgba(19, 19, 22, 0.1);
  --radius: 18px;
  --pad: clamp(20px, 4.5vw, 64px);
  --display: "Archivo", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip corta igual ao hidden sem quebrar position:sticky nos filhos */
  overflow-x: clip;
}

::selection { background: var(--pink); color: #fff; }

img { max-width: 100%; display: block; }

/* ── grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%, 100% { background-position: 0 0; }
  20% { background-position: -9px 6px; }
  40% { background-position: 6px -9px; }
  60% { background-position: -6px -6px; }
  80% { background-position: 9px 9px; }
}

/* ── type helpers ──────────────────────────────────────── */
.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow::before { content: "– "; }

h1, h2, h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 125;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2.1rem, 5.2vw, 4rem); }
h2 em { font-style: normal; color: var(--pink); }

.section-sub {
  color: var(--muted);
  max-width: 62ch;
  margin-top: 20px;
  font-size: 1.02rem;
}

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 0; cursor: pointer;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 46, 150, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 42px var(--pink-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--showroom-ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--pink-glow);
}

.btn-sm { padding: 9px 18px; font-size: 0.68rem; }
.btn-lg { padding: 15px 32px; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ── header ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 11, 14, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad);
  max-width: 1560px; margin: 0 auto;
}

.brand img { height: 30px; width: auto; }

.main-nav { display: flex; gap: 20px; }
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--pink);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  background: transparent; border: 0; cursor: pointer;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { background: var(--pink); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column; gap: 6px;
  padding: 10px var(--pad) 26px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a {
  color: var(--text); text-decoration: none;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1rem; padding: 12px 0;
}
.mobile-drawer .btn { margin-top: 10px; }
.site-header.open .mobile-drawer { display: flex; }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad) 150px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  right: -280px; top: -280px;
  background: radial-gradient(circle, rgba(255, 46, 150, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 1560px; margin: 0 auto; width: 100%; }

.hero-title {
  font-size: clamp(2.9rem, 8.4vw, 7rem);
  margin: 8px 0 30px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title em { font-style: normal; display: inline-block; }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
}

.hero-sub {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 44px;
}

/* booking strip */
.book-strip {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(21, 21, 27, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  max-width: 900px;
  scroll-margin-top: 120px;
}
.book-strip .field {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 26px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.book-strip .field:nth-of-type(3) { border-right: 0; }
.book-strip label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.book-strip input,
.book-strip select {
  background: transparent; border: 0; outline: none;
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  color-scheme: dark;
}
.book-strip select option { background: var(--panel); }
.book-strip .btn { flex-shrink: 0; }

/* date fields: left-align the value (iOS Safari centers it) and draw our own
   calendar icon (iOS does not render the native picker indicator) */
.book-strip input[type="date"] {
  position: relative;
  text-align: left;
  padding-right: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A3A2AE' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4.5' width='18' height='17' rx='2.5'/%3E%3Cpath d='M16 2.5v4M8 2.5v4M3 9.5h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
}
.book-strip input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.book-strip input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute; inset: 0; width: auto; height: auto;
  margin: 0; padding: 0; opacity: 0; cursor: pointer;
}

/* hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  list-style: none;
  margin-top: 54px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--display);
  font-variation-settings: "wdth" 125;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--text);
}
.hero-stats span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(var(--pink), transparent);
  transform-origin: top;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 50% { transform: scaleY(0.4); opacity: 0.4; } }

/* ── marquee ───────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 38px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-variation-settings: "wdth" 125;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee i { color: var(--pink); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── sections ──────────────────────────────────────────── */
.section { padding: clamp(80px, 10vw, 150px) var(--pad); }
.section > * { max-width: 1560px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: clamp(40px, 5vw, 70px); }

/* ── tiers ─────────────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tier-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.tier-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--tier-color) 55%, transparent);
  box-shadow: 0 24px 70px -30px color-mix(in srgb, var(--tier-color) 55%, transparent);
}

.tier-silver { --tier-color: var(--silver); }
.tier-gold { --tier-color: var(--gold); }
.tier-diamond {
  --tier-color: var(--pink);
  background: linear-gradient(160deg, #1D1420 0%, var(--panel) 55%);
}

.tier-flag {
  position: absolute; top: 34px; right: -50px;
  width: 200px; text-align: center;
  background: var(--pink); color: #fff;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 0;
  transform: rotate(45deg);
}

.tier-badge {
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--tier-color);
  border: 1px solid color-mix(in srgb, var(--tier-color) 45%, transparent);
  border-radius: 999px;
  padding: 6px 16px;
  align-self: flex-start;
  display: inline-block;
}

.tier-price {
  font-family: var(--display);
  font-variation-settings: "wdth" 125;
  font-weight: 800;
  font-size: 2.7rem;
  margin-top: 22px;
  line-height: 1;
}
.tier-price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  font-variation-settings: "wdth" 100;
}
.tier-week {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 10px;
}

.tier-desc { color: var(--muted); font-size: 0.95rem; margin: 22px 0; }

.tier-card ul { list-style: none; margin-bottom: 30px; flex: 1; }
.tier-card li {
  padding: 11px 0 11px 28px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  position: relative;
}
.tier-card li:last-child { border-bottom: 0; }
.tier-card li::before {
  content: "";
  position: absolute; left: 2px; top: 50%;
  width: 10px; height: 10px;
  border: 2px solid var(--tier-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ── fleet (light showroom) ────────────────────────────── */
.fleet {
  background: var(--showroom);
  color: var(--showroom-ink);
  border-radius: clamp(24px, 4vw, 56px);
  margin: 0 clamp(8px, 1.2vw, 20px);
}
.fleet .eyebrow { color: #D9186F; }
.fleet h2 em { color: #E5147E; }
.fleet .section-sub { color: var(--showroom-muted); }

.fleet-filters {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}
.chip-group {
  display: inline-flex; gap: 6px;
  background: #fff;
  border: 1px solid var(--showroom-line);
  border-radius: 999px;
  padding: 5px;
}
.chip {
  border: 0; cursor: pointer;
  background: transparent;
  color: var(--showroom-muted);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.chip:hover { color: var(--showroom-ink); }
.chip.active { background: var(--showroom-ink); color: #fff; }
.chip-silver.active { background: #8B94A3; }
.chip-gold.active { background: #C1912F; }
.chip-diamond.active { background: #E5147E; }

.fleet-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--showroom-muted);
}

.bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.fleet-see-all { display: flex; justify-content: center; margin-top: 30px; }

.bike-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--showroom-line);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(19, 19, 22, 0.35);
}
.bike-card.hidden { display: none; }

.bike-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E9E8E4;
}
.bike-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.bike-card:hover .bike-photo img { transform: scale(1.05); }

.badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(6px);
}
.badge-silver { background: rgba(107, 118, 136, 0.88); }
.badge-gold { background: rgba(193, 145, 47, 0.92); }
.badge-diamond { background: rgba(229, 20, 126, 0.92); }

.bike-meta { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bike-brand {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--showroom-muted);
}
.bike-meta h3 { font-size: 1.45rem; margin: 4px 0 6px; }
.bike-tags {
  font-size: 0.8rem;
  color: var(--showroom-muted);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.sizes {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--showroom-line);
  padding: 3px 10px;
  border-radius: 999px;
}
.bike-price {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 18px;
  margin-top: auto;
}
.bike-price p {
  font-family: var(--display);
  font-variation-settings: "wdth" 118;
  font-weight: 800;
  font-size: 1.5rem;
}
.bike-price span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--showroom-muted);
  font-variation-settings: "wdth" 100;
  margin-left: 2px;
}
.bike-price .wk { font-size: 1.05rem; color: var(--showroom-muted); }

.fleet-note {
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--showroom-muted);
  text-align: center;
}

/* ── fit ───────────────────────────────────────────────── */
.fit { background: var(--bg); position: relative; overflow: hidden; }
.fit::after {
  content: "";
  position: absolute;
  left: -220px; bottom: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255, 46, 150, 0.1) 0%, transparent 62%);
  pointer-events: none;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1560px;
  margin: 0 auto;
}

.fit-list { list-style: none; margin-top: 40px; }
.fit-list li {
  display: flex; gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.fit-list li:last-child { border-bottom: 0; }
.fit-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--pink);
  min-width: 34px;
}
.fit-list strong {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 118;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}
.fit-list p { color: var(--muted); font-size: 0.86rem; margin-top: 2px; }

.fit-diagram {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 44px);
}
.fit-diagram svg { width: 100%; height: auto; }
.fit-diagram figcaption { color: var(--muted); margin-top: 16px; }

.fit-diagram .wheel { stroke: rgba(255, 255, 255, 0.3); stroke-width: 3; }
.fit-diagram .wheel-pink {
  stroke: var(--pink);
  stroke-width: 5;
  stroke-dasharray: 700 118;  /* broken ring, like the logo O */
  stroke-dashoffset: 90;
  filter: drop-shadow(0 0 16px var(--pink-glow));
}
.fit-diagram .wheel-inner { stroke: rgba(255, 255, 255, 0.1); stroke-width: 1.5; }
.fit-diagram .frame { stroke: #fff; stroke-width: 6; stroke-linejoin: round; stroke-linecap: round; }
.fit-diagram .hub { fill: var(--bg); stroke: #fff; stroke-width: 4; }
.fit-diagram .crank { stroke: #fff; stroke-width: 5; stroke-linecap: round; }
.fit-diagram .pedal { fill: var(--pink); }
.fit-diagram .post { stroke: #fff; stroke-width: 5; stroke-linecap: round; }
.fit-diagram .saddle { stroke: #fff; stroke-width: 7; stroke-linecap: round; fill: none; }
.fit-diagram .dim { stroke: var(--pink); stroke-width: 1.5; stroke-dasharray: 5 5; }
.fit-diagram .dim-thin { stroke: var(--pink); stroke-width: 1; opacity: 0.6; }
.fit-diagram .dot { fill: var(--pink); }
.fit-diagram .dim-label {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  fill: var(--pink);
}

/* ── how ───────────────────────────────────────────────── */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 44px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease;
}
.how-card:hover { transform: translateY(-6px); border-color: rgba(255, 46, 150, 0.4); }
.how-num {
  font-family: var(--display);
  font-variation-settings: "wdth" 125;
  font-weight: 900;
  font-size: 5.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 46, 150, 0.55);
  display: block;
  margin-bottom: 22px;
}
.how-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.how-card p { color: var(--muted); font-size: 0.94rem; }

/* ── compare ───────────────────────────────────────────── */
.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-row > div {
  padding: 20px 26px;
  font-size: 0.92rem;
  color: var(--muted);
  display: flex; align-items: center;
}
.cmp-row > div:first-child {
  color: var(--text);
  font-weight: 600;
  background: var(--bg-2);
}
.cmp-gbr {
  background: var(--pink-soft);
  color: var(--text) !important;
  font-weight: 600;
  border-left: 2px solid var(--pink);
}
.cmp-head > div {
  font-family: var(--mono);
  font-size: 0.66rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 26px;
}
.cmp-gbr-h {
  background: var(--pink) !important;
  color: #fff !important;
  border-left: 2px solid var(--pink);
  font-weight: 500;
}

/* ── miami ─────────────────────────────────────────────── */
.miami { position: relative; overflow: hidden; }
.miami-head { position: relative; z-index: 1; }
.miami-title {
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(100deg, #fff 18%, var(--pink) 52%, #FF7AC0 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.miami-photo { margin-top: clamp(34px, 4.5vw, 56px); }
.miami-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}
.miami-photo figcaption { color: var(--muted); margin-top: 14px; }
.miami-photo figcaption::before { content: "◉ "; color: var(--pink); }

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 70px);
}
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--panel);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease;
}
.route-card:hover { transform: translateY(-6px); border-color: rgba(255, 46, 150, 0.45); }
.route-card.has-photo { padding-top: 0; overflow: hidden; }
.route-photo {
  margin: -1px calc(-26px - 1px) 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.route-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.route-card.has-photo:hover .route-photo img { transform: scale(1.05); }

.route-km { color: var(--pink); margin-bottom: 14px; }
.route-card h3 { font-size: 1.06rem; margin-bottom: 10px; line-height: 1.25; }
.route-card p { color: var(--muted); font-size: 0.86rem; }

.miami-next {
  margin-top: 50px;
  color: var(--muted);
  font-size: 0.94rem;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline;
}
.miami-next .mono { color: var(--pink); }
.miami-next a { color: var(--text); text-decoration-color: var(--pink); text-underline-offset: 4px; }
.miami-next a:hover { color: var(--pink); }

/* ── quotes ────────────────────────────────────────────── */
.quotes { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 26px;
}
.quote-card blockquote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}
.quote-card figcaption { display: flex; flex-direction: column; gap: 4px; }
.quote-card figcaption strong {
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}
.quote-card .mono { color: var(--pink); font-size: 0.62rem; }

/* ── faq ───────────────────────────────────────────────── */
.page-head.faq-head > * { max-width: 880px; }
.faq-list { max-width: 880px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0;
  font-family: var(--display);
  font-variation-settings: "wdth" 115;
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--pink); }
.faq-list p {
  color: var(--muted);
  padding: 0 0 26px;
  max-width: 68ch;
  font-size: 0.96rem;
}

/* ── final cta ─────────────────────────────────────────── */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(110px, 14vw, 190px) var(--pad);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 46, 150, 0.22);
  border-radius: 50%;
  pointer-events: none;
  animation: cta-breathe 6s ease-in-out infinite;
}
.cta-ring::before {
  content: "";
  position: absolute; inset: 90px;
  border: 1px solid rgba(255, 46, 150, 0.12);
  border-radius: 50%;
}
@keyframes cta-breathe { 50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.7; } }

.final-cta h2 { font-size: clamp(2.4rem, 6.5vw, 5.2rem); position: relative; }
.final-cta p { color: var(--muted); margin: 26px 0 44px; position: relative; }
.cta-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ── footer ────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(60px, 7vw, 90px) var(--pad) 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  max-width: 1560px;
  margin: 0 auto;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; margin-bottom: 24px; }
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.footer-grid nav { display: flex; flex-direction: column; gap: 4px; }
.footer-grid nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}
.footer-grid nav a:hover { color: var(--text); transform: translateX(4px); }

.footer-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: clamp(44px, 6vw, 70px);
  padding-top: 28px;
  max-width: 1560px;
  margin-left: auto; margin-right: auto;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-bar .mono { color: var(--pink); }

/* ── reveal animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.42s; }
.reveal.d5 { transition-delay: 0.55s; }

.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tier-grid, .how-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .tier-diamond { grid-column: span 2; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-diagram { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* switch to the menu icon before the 8-item nav starts to cramp */
@media (max-width: 1120px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 800px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions .lang-switch { display: none; }
  .mobile-drawer .lang-inline { display: flex; }

  .hero { padding-top: 120px; }
  .hero-ring { opacity: 0.35; right: -46vw; }

  .book-strip {
    flex-direction: column;
    border-radius: 20px;
    gap: 2px;
    padding: 6px;
  }
  .book-strip .field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 7px 16px;
  }
  .book-strip .field:nth-of-type(3) { border-bottom: 0; }
  .book-strip label { font-size: 0.56rem; }
  .book-strip input,
  .book-strip select { font-size: 0.85rem; }
  .book-strip .btn { width: 100%; margin-top: 6px; }

  .tier-grid, .how-grid, .quote-grid, .route-grid { grid-template-columns: 1fr; }
  .tier-diamond { grid-column: auto; }

  .cmp-row { grid-template-columns: 1fr; }
  .cmp-row > div { padding: 14px 20px; }
  .cmp-row > div:first-child { padding-top: 20px; }
  .cmp-row > div:last-child { padding-bottom: 20px; }
  .cmp-head { display: none; }
  .cmp-row > div:nth-child(2)::before {
    content: "✈ " attr(data-label);
    display: block;
  }
  .cmp-gbr::before {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    content: "GBR – ";
    margin-right: 8px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 600px) {
  /* hero stats: clean 2-col grid with room to breathe */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 18px; margin-top: 36px; margin-bottom: 34px;
  }
  .hero-stats strong { font-size: 1.45rem; }
  /* the scroll cue overlaps the stats on small screens, hide it */
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   v2 — real-bike fit overlay · stores · subpages · hero video
   ═══════════════════════════════════════════════════════════ */

/* ── hero video ────────────────────────────────────────── */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* soft blur turns the footage into atmosphere and masks artifacts */
  filter: blur(4px) saturate(1.08) contrast(1.05);
  transform: scale(1.06); /* hides blurred edges */
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,14,0.92) 0%, rgba(11,11,14,0.55) 48%, rgba(11,11,14,0.35) 100%),
    linear-gradient(0deg, rgba(11,11,14,0.9) 0%, transparent 34%);
}
.hero-media:empty::after { display: none; }
.hero > .hero-inner { position: relative; z-index: 2; }
.hero > .hero-scroll { z-index: 2; }
.hero-glow { z-index: 1; }
.hero.has-video .hero-glow { display: none; }

/* ── fit: real photo with measurement overlay ──────────── */
.fit-photo { display: flex; flex-direction: column; gap: 16px; }
.fit-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ECEBE9;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
  aspect-ratio: 1536 / 1024;
  background: #FFFFFF;
}
/* front view: square studio photo letterboxed on white + strokes scaled
   to match the side view's visual weight (500 vs 1600 viewBox) */
.fit-view[data-view="front"] img { object-fit: contain; }
.fit-view[data-view="front"] .fdim { stroke-width: 1.4; stroke-dasharray: 4 3.4; }
.fit-view[data-view="front"] .fthin { stroke-width: 0.8; stroke-dasharray: 2.4 2.4; }
.fit-view[data-view="front"] .fdot { stroke-width: 1.2; }
.fit-view[data-view="front"] .fnum { stroke-width: 0.9; }
.fit-view[data-view="front"] .fnum-t { font-size: 6.8px; }
.fit-view {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
  pointer-events: none;
}
.fit-view.on { opacity: 1; transform: scale(1); }
.fit-view img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fit-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.fit-photo figcaption { color: var(--muted); }

.fit-overlay .fm { transition: opacity 0.3s ease; }
.fit-overlay .fdim {
  stroke: #E5147E; stroke-width: 4; stroke-dasharray: 12 10; stroke-linecap: round;
}
.fit-overlay .fthin { stroke: #E5147E; stroke-width: 2; stroke-dasharray: 7 7; opacity: 0.65; }
.fit-overlay .fdot { fill: #E5147E; stroke: #fff; stroke-width: 3.5; }
.fit-overlay .fnum { fill: #131316; stroke: #E5147E; stroke-width: 2.5; }
.fit-overlay .fnum-t {
  fill: #fff;
  font-family: var(--mono);
  font-size: 21px;
  letter-spacing: 0.05em;
  text-anchor: middle;
  dominant-baseline: central;
}
/* hover focus: dim the others, punch the active one */
.fit-photo-frame.focused .fm { opacity: 0.14; }
.fit-photo-frame.focused .fm.on { opacity: 1; }
.fit-overlay .fm.on .fdim { stroke-width: 6; stroke-dasharray: none; }
.fit-overlay .fm.on .fnum { fill: #E5147E; stroke: #fff; }

.fit-list li { cursor: default; border-radius: 10px; transition: background 0.25s ease, padding 0.25s ease; }
.fit-list li:hover, .fit-list li.on {
  background: rgba(255, 46, 150, 0.07);
  padding-left: 14px; padding-right: 14px;
}
.fit-hint { color: var(--muted); margin-top: 18px; }
.fit-hint::before { content: "↞ "; color: var(--pink); }

/* ── partner stores ────────────────────────────────────── */
.stores { margin-top: clamp(60px, 8vw, 110px); }
.stores-head { margin-bottom: 38px; }
.stores-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.stores-title em { font-style: normal; color: var(--pink); }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.store-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease;
}
.store-card:hover { transform: translateY(-6px); border-color: rgba(255, 46, 150, 0.45); }
.store-top { display: flex; justify-content: space-between; align-items: center; }
.store-area { color: var(--muted); }
.store-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.store-status i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
}
.store-live { color: #3DDC97; }
.store-live i { background: #3DDC97; box-shadow: 0 0 12px rgba(61, 220, 151, 0.8); animation: live-pulse 2.2s ease-in-out infinite; }
@keyframes live-pulse { 50% { opacity: 0.4; } }
.store-card h4 {
  font-family: var(--display);
  font-variation-settings: "wdth" 120;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.store-desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.store-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.store-tags li {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--text);
}
.store-soon { opacity: 0.88; }
.store-soon h4 { color: var(--muted); }
.store-join {
  border-style: dashed;
  background: transparent;
  align-items: flex-start;
  justify-content: center;
}
.store-join h4 { color: var(--pink); }

/* ── subpages (page head, breadcrumb, active nav) ──────── */
.main-nav a.active { color: var(--text); }
.main-nav a.active::after { width: 100%; }

.page-head {
  padding: clamp(140px, 16vw, 200px) var(--pad) clamp(40px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.page-head > * { max-width: 1560px; margin-left: auto; margin-right: auto; }
.page-head .section-sub { margin-left: 0; }
@media (min-width: 1561px) { .page-head .section-sub { margin-left: auto; } }
.page-head h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}
.page-head h1 em { font-style: normal; color: var(--pink); }
.page-glow {
  position: absolute; right: -220px; top: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255, 46, 150, 0.14) 0%, transparent 62%);
  pointer-events: none;
}

.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  margin-bottom: 26px;
  transition: color 0.2s ease;
}
.breadcrumb:hover { color: var(--pink); }
.breadcrumb::before { content: "←"; color: var(--pink); }

/* ── catalog page ──────────────────────────────────────── */
.catalog-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 38px;
}
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--showroom-line);
  border-radius: 999px;
  padding: 4px 8px 4px 20px;
  flex: 1 1 260px;
  max-width: 420px;
}
.search-box svg { width: 16px; height: 16px; stroke: var(--showroom-muted); flex-shrink: 0; }
.search-box input {
  border: 0; outline: none; background: transparent;
  font-family: var(--display);
  font-size: 0.95rem;
  padding: 10px 0;
  width: 100%;
  color: var(--showroom-ink);
}
.dates-chip {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em;
  border: 1px dashed var(--showroom-line);
  color: var(--showroom-muted);
  padding: 8px 16px; border-radius: 999px;
}
.catalog-reset {
  border: 1px solid var(--showroom-line); background: #fff;
  color: var(--showroom-ink); cursor: pointer;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px; transition: all 0.2s ease;
}
.catalog-reset:hover { border-color: var(--pink); color: var(--pink); }

/* collapsible filters: desktop keeps the inline row (display: contents),
   mobile collapses everything behind one "Filters" button */
.filters-toggle { display: none; }
.filters-panel { display: contents; }
.filters-toggle {
  align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--showroom-line);
  border-radius: 999px; padding: 11px 18px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--showroom-ink); cursor: pointer; transition: all 0.2s ease;
}
.filters-toggle svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.filters-toggle[aria-expanded="true"] { border-color: var(--showroom-ink); background: var(--showroom-ink); color: #fff; }
.filters-toggle .f-count {
  background: var(--pink); color: #fff;
  border-radius: 999px; min-width: 17px; height: 17px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.58rem; letter-spacing: 0;
}

/* ── bike detail page ──────────────────────────────────── */
.bike-page { background: var(--showroom); color: var(--showroom-ink); border-radius: clamp(24px, 4vw, 56px); margin: 0 clamp(8px, 1.2vw, 20px); padding: clamp(120px, 14vw, 170px) var(--pad) clamp(70px, 8vw, 110px); }
.bike-page > * { max-width: 1560px; margin-left: auto; margin-right: auto; }
.bike-page .breadcrumb { color: var(--showroom-muted); }
.bike-page .breadcrumb:hover { color: #E5147E; }

.bike-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.bike-stage {
  background: #fff;
  border: 1px solid var(--showroom-line);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky; top: 100px;
}
.bike-stage img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.bike-info { display: flex; flex-direction: column; gap: 20px; }
.bike-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.bike-badges .badge { position: static; }
.badge-type { background: rgba(19, 19, 22, 0.85); }
.bike-info h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 0.95;
}
.bike-info .brand-line {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #E5147E;
}
.bike-specs-mini { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bike-specs-mini li {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  color: var(--showroom-muted);
  display: flex; gap: 10px;
}
.bike-specs-mini b { color: var(--showroom-ink); font-weight: 500; }

.bike-price-row {
  display: flex; align-items: baseline; gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--showroom-line);
  border-bottom: 1px solid var(--showroom-line);
}
.bike-price-row .p-day {
  font-family: var(--display); font-variation-settings: "wdth" 122;
  font-weight: 800; font-size: 2.4rem;
}
.bike-price-row .p-day small, .bike-price-row .p-week small {
  font-size: 0.8rem; font-weight: 600; color: var(--showroom-muted);
  font-variation-settings: "wdth" 100;
}
.bike-price-row .p-week {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  color: var(--showroom-muted);
}

.size-label {
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--showroom-muted);
  margin-bottom: 10px;
}
.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size-btn {
  min-width: 58px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--showroom-line);
  background: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.size-btn:hover { border-color: var(--showroom-ink); }
.size-btn.on { background: var(--showroom-ink); color: #fff; border-color: var(--showroom-ink); }

.bike-cta-row { display: flex; flex-direction: column; gap: 12px; }
.bike-cta-row .btn { width: 100%; }
.fit-included {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--showroom-muted);
}
.fit-included::before { content: "✓"; color: #E5147E; font-weight: 700; }

.spec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 70px);
}
.spec-card {
  background: #fff;
  border: 1px solid var(--showroom-line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.spec-card h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--showroom-line);
}
.spec-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spec-card li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 0.88rem; color: var(--showroom-muted);
}
.spec-card li b { color: var(--showroom-ink); font-weight: 600; text-align: right; }
.spec-card li.chk { justify-content: flex-start; }
.spec-card li.chk::before { content: "✓"; color: #E5147E; font-weight: 700; }
.spec-card li.add::before { content: "+"; color: #E5147E; font-weight: 700; }

.bike-notfound { text-align: center; padding: 60px 0; }
.bike-notfound h1 { margin-bottom: 18px; }

/* ── how-it-works page ─────────────────────────────────── */
.hiw-statement {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 62ch;
}
.eq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.eq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 22px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.3s ease;
}
.eq-card:hover { transform: translateY(-5px); border-color: rgba(255, 46, 150, 0.4); }
.eq-card .mono { color: var(--pink); display: block; margin-bottom: 12px; }
.eq-card h3 { font-size: 0.95rem; margin-bottom: 8px; line-height: 1.2; }
.eq-card p { color: var(--muted); font-size: 0.8rem; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg);
}
.who-card .who-n {
  font-family: var(--display); font-variation-settings: "wdth" 125;
  font-weight: 900; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.3px rgba(255, 46, 150, 0.55);
  display: block; margin-bottom: 14px;
}
.who-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.who-card p { color: var(--muted); font-size: 0.84rem; }

/* ── contact page ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px;
  align-items: start;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(26px, 3vw, 44px);
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink);
}
.form-field input, .form-field textarea, .form-field select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--display);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--pink);
}
.phone-row { display: flex; gap: 8px; }
.phone-row .ddi-input {
  flex: 0 0 62px;
  min-width: 0;
  text-align: center;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  padding-left: 8px; padding-right: 8px;
}
.phone-row input:not(.ddi-input) { flex: 1 1 auto; min-width: 0; }
.contact-side { display: flex; flex-direction: column; gap: 24px; }
.hours-list { list-style: none; display: flex; flex-direction: column; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem; color: var(--muted);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list b { color: var(--text); font-weight: 600; }
.hours-list .closed b { color: var(--pink); }
.quick-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.quick-links a {
  color: var(--muted); text-decoration: none;
  padding: 8px 0; font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content; display: inline-block;
}
.quick-links a:hover { color: var(--pink); transform: translateX(4px); }
.quick-links .mono { color: var(--pink); font-size: 0.6rem; display: block; margin-bottom: 6px; }

/* ── v2 responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .store-grid { grid-template-columns: 1fr 1fr; }
  .store-join { grid-column: span 2; }
  .eq-grid { grid-template-columns: repeat(3, 1fr); }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .bike-hero { grid-template-columns: 1fr; }
  .bike-stage { position: static; }
  .spec-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .store-grid { grid-template-columns: 1fr; }
  .store-join { grid-column: auto; }
  .eq-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .catalog-toolbar { align-items: center; gap: 12px; }
  .search-box { max-width: none; flex: 1 1 100%; }

  /* filters collapse behind a single "Filters" button (see .filters-*) */
  .filters-toggle { display: inline-flex; }
  .filters-panel { display: none; }
  .filters-panel.open {
    display: flex; flex-direction: column; gap: 14px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--showroom-line);
    border-radius: 18px;
    padding: 18px;
  }
  .filters-panel .chip-group {
    background: transparent; border: 0; border-radius: 0; padding: 0;
    flex-wrap: wrap; gap: 8px; width: 100%;
  }
  .filters-panel .chip-group + .chip-group {
    border-top: 1px dashed var(--showroom-line);
    padding-top: 14px;
  }
  .filters-panel .chip {
    border: 1px solid var(--showroom-line);
    padding: 8px 14px; font-size: 0.7rem; white-space: nowrap;
  }
  .filters-panel .chip.active { border-color: transparent; }
  .filters-panel .catalog-reset { align-self: flex-start; }
  .fleet-filters .fleet-count, .catalog-toolbar .fleet-count { margin-left: auto; }
}

/* ── 404 ───────────────────────────────────────────────── */
.nf-page {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 22px; padding: 40px var(--pad);
}
.nf-code { color: var(--pink); letter-spacing: 0.3em; }
.nf-title { font-size: clamp(3rem, 9vw, 7rem); }
.nf-title em { font-style: normal; color: var(--pink); }
.nf-page .section-sub { margin-top: 0; }

/* ── legal pages ───────────────────────────────────────── */
.legal-updated { color: var(--muted); margin-top: 18px; display: block; }
.legal-body { max-width: 860px !important; margin-left: 0; }
.legal-body article { border-bottom: 1px solid var(--line); padding: 30px 0; }
.legal-body article:last-child { border-bottom: 0; }
.legal-body h3 { font-size: 1.1rem; margin-bottom: 12px; }
.legal-body p { color: var(--muted); font-size: 0.96rem; max-width: 68ch; }

/* ── reserve page ──────────────────────────────────────── */
.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 24px;
  align-items: start;
}
.reserve-form { display: flex; flex-direction: column; gap: 20px; }
.reserve-form h3 { display: flex; align-items: baseline; gap: 12px; }
.step-n { color: var(--pink); font-size: 0.72rem; }
.rs-note { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }
.rs-hint { color: var(--pink); margin-top: 14px; font-size: 0.66rem; }
.measure-grid .form-field input::placeholder { color: rgba(163, 162, 174, 0.5); }

.addon-list { display: flex; flex-direction: column; }
.addon-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
}
.addon-row:last-child { border-bottom: 0; }
.addon-row input {
  appearance: none;
  width: 40px; height: 22px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  position: relative; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.addon-row input::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease;
}
.addon-row input:checked { background: var(--pink-soft); border-color: var(--pink); }
.addon-row input:checked::after { transform: translateX(18px); background: var(--pink); }
.addon-name { flex: 1; font-size: 0.94rem; }
.addon-price { color: var(--muted); }

.rs-agree { margin-top: 8px; border-top: 1px dashed var(--line); gap: 10px; }
.rs-agree .addon-name { flex: 0 1 auto; }
.rs-agree a { color: var(--pink); text-decoration: underline; }
.contact-card.needs-agree { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink) inset; }
.contact-card.needs-agree .rs-agree input { border-color: var(--pink); }

.reserve-summary { position: sticky; top: 100px; }
.sum-lines { display: flex; flex-direction: column; margin-bottom: 8px; }
.sum-line {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.94rem; color: var(--muted);
}
.sum-line b { color: var(--text); font-weight: 600; white-space: nowrap; }
.sum-sub { font-size: 0.8rem; border-bottom: 1px dashed var(--line); }
.sum-total { border-bottom: 0; font-weight: 700; color: var(--text); }
.sum-total b {
  font-family: var(--display); font-variation-settings: "wdth" 120;
  font-size: 1.6rem; color: var(--pink);
}
.sum-card .btn { margin-top: 16px; }

@media (max-width: 1100px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-summary { position: static; }
}

/* ── auth + account ────────────────────────────────────── */
.login-link {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s ease;
}
.login-link:hover { color: var(--pink); }
.account-chip {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 0.72rem; letter-spacing: 0.04em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.account-chip:hover { border-color: var(--pink); color: var(--pink); }
.account-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3DDC97; box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.18);
  flex-shrink: 0;
}

.auth-page {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; padding: 40px var(--pad);
}
.auth-logo img { height: 40px; width: auto; }
.auth-card { width: min(440px, 100%); }
.auth-head { margin-bottom: 22px; }
.auth-title { font-family: var(--display); font-weight: 800; font-size: 1.85rem; letter-spacing: -0.02em; margin-top: 6px; line-height: 1.05; }
.auth-tabs { display: flex; gap: 4px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 24px; }
.auth-tab {
  flex: 1; background: transparent; border: 0;
  color: var(--muted); border-radius: 999px; padding: 10px 12px;
  font-family: var(--display); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  transition: all 0.2s ease;
}
.auth-tab.on { background: var(--pink); color: #fff; }
.auth-forgot-row { margin-top: -8px; align-items: flex-end; }
.auth-tab.auth-link {
  flex: none; display: inline; width: auto; padding: 0; background: transparent; border: 0;
  color: var(--muted); font-family: var(--mono); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.02em; text-transform: none;
}
.auth-tab.auth-link:hover { color: var(--pink); }
.auth-tab.auth-link.on { background: transparent; color: var(--pink); }
.auth-msg {
  margin-top: 18px; font-size: 0.88rem; color: #FF7A7A;
  border: 1px solid rgba(255, 122, 122, 0.3); border-radius: 12px; padding: 12px 16px;
}
.auth-msg.ok { color: #3DDC97; border-color: rgba(61, 220, 151, 0.3); }
.auth-alt { margin-top: 22px; }
.auth-alt a { color: var(--pink); }

.ac-tabs-wrap { margin-bottom: 30px; }
.ac-tabs { background: var(--panel); border-color: var(--line); }
.ac-tabs .chip { color: var(--muted); }
.ac-tabs .chip:hover { color: var(--text); }
.ac-tabs .chip.active { background: var(--pink); color: #fff; }
.ac-tabs { max-width: 100%; }
@media (max-width: 800px) {
  .ac-tabs { flex-wrap: wrap; background: transparent; border: 0; padding: 0; gap: 8px; }
  .ac-tabs .chip { border: 1px solid var(--line); }
  .ac-tabs .chip.active { border-color: var(--pink); }
}
/* units segmented control */
.units-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.seg-btn {
  border: 0; background: transparent; cursor: pointer; color: var(--muted);
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; transition: all 0.2s ease;
}
.seg-btn.active { background: var(--pink); color: #fff; }
.fld-unit { color: var(--muted); text-transform: none; letter-spacing: 0; }

/* avatar */
.avatar-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.avatar-wrap {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--line); background: var(--bg-2);
}
.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initials {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--pink);
}
.avatar-row label.btn { margin-bottom: 8px; }

/* garage */
.garage-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.garage-card {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.garage-card > img, .garage-noimg { width: 100%; height: 160px; object-fit: cover; display: block; }
.garage-noimg { background: linear-gradient(135deg, #16161d, #0e0e13); }
.garage-meta { padding: 16px 18px; }
.garage-meta h4 { font-size: 1.05rem; }
.garage-meta .mono { color: var(--muted); font-size: 0.7rem; margin-top: 6px; }
.garage-notes { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
.garage-actions { display: flex; gap: 8px; margin-top: 14px; }
.garage-edit, .garage-del {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all 0.2s ease;
}
.garage-edit:hover, .garage-del:hover { border-color: var(--pink); color: var(--pink); }
.garage-add-btn { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; }

/* empty state */
.empty-state {
  text-align: center; padding: clamp(40px, 6vw, 70px) 24px;
  border: 1px dashed var(--line); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.empty-state svg { width: 46px; height: 46px; stroke: var(--pink); opacity: 0.9; }
.empty-state h3 { font-size: 1.3rem; }
.empty-state p { color: var(--muted); max-width: 440px; }
.empty-state .btn { margin-top: 8px; }

.res-list { display: flex; flex-direction: column; gap: 10px; }
.res-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 24px 24px 20px;
}
.res-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.res-num { color: var(--muted); }
.res-status {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}
.res-status.ok { color: #3DDC97; border-color: rgba(61, 220, 151, 0.4); }
.res-status.warn { color: var(--gold); border-color: rgba(229, 180, 78, 0.4); }
.res-status.off { opacity: 0.6; }
.res-line { color: var(--muted); font-size: 0.88rem; }
.res-line.mono { font-size: 0.66rem; margin-top: 6px; }
.res-total {
  font-family: var(--display); font-variation-settings: "wdth" 120;
  font-weight: 800; font-size: 1.5rem; color: var(--pink); margin-top: 14px;
}

/* ── stores map page ─────────────────────────────────────── */
.stores-grid {
  display: grid; grid-template-columns: minmax(320px, 420px) 1fr; gap: 24px;
  align-items: start;
}
.stores-map-wrap { position: sticky; top: 100px; }
#storesMap {
  height: min(72vh, 640px); width: 100%;
  border-radius: 18px; border: 1px solid var(--line); overflow: hidden;
  background: #0e0e13;
}
.leaflet-container { background: #0e0e13; font-family: var(--display); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: #16161d; color: var(--text); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.leaflet-popup-content { font-size: 0.9rem; }
.gbr-pin span {
  display: block; width: 16px; height: 16px; border-radius: 50%;
  background: var(--pink); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--pink), 0 4px 12px rgba(255,46,150,0.6);
}

/* bike detail: where to pick up */
.bike-pickup {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: clamp(44px, 6vw, 72px); align-items: stretch;
}
.pickup-info h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 10px 0 18px; }
.pickup-store { font-weight: 700; font-size: 1.1rem; }
.pickup-addr { color: var(--showroom-muted); margin-top: 6px; }
.pickup-hours { color: var(--showroom-muted); font-size: 0.7rem; margin-top: 6px; }
.pickup-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.pickup-actions .btn-ghost { color: var(--showroom-ink); box-shadow: inset 0 0 0 1.5px var(--showroom-line); }
.pickup-actions .btn-ghost:hover { color: var(--pink); box-shadow: inset 0 0 0 1.5px var(--pink); }
.pickup-note { color: var(--showroom-muted); font-size: 0.85rem; margin-top: 18px; max-width: 40ch; }
.pickup-map {
  min-height: 300px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--showroom-line);
}
.pickup-map .leaflet-container { background: #e8e6e0; }
@media (max-width: 760px) {
  .bike-pickup { grid-template-columns: 1fr; }
  .pickup-map { min-height: 260px; }
}
.loc-btn { display: inline-flex; align-items: center; gap: 8px; }
.stores-list { display: flex; flex-direction: column; gap: 16px; }
.store-search { flex: 0 0 auto; width: 100%; max-width: none; }
#storeCards { display: flex; flex-direction: column; gap: 20px; margin-top: 4px; }
.store-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
  background: rgba(255,255,255,0.02); cursor: pointer; transition: border-color 0.2s ease;
}
.store-card:hover { border-color: var(--pink); }
.store-card-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.store-card-head h3 { font-size: 1.15rem; }
.store-dist { margin-left: auto; color: var(--pink); font-size: 0.8rem; }
.store-addr { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.store-hours { color: var(--muted); font-size: 0.68rem; margin-top: 4px; }
.store-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--text); text-decoration: none;
  transition: color 0.2s ease;
}
.store-phone svg { width: 14px; height: 14px; stroke: var(--pink); flex-shrink: 0; }
.store-phone:hover { color: var(--pink); }
.store-bikes { margin-top: 12px; font-size: 0.92rem; }
.store-bikes b { color: var(--pink); }
.store-bikes-none { color: var(--muted); font-size: 0.85rem; }
.store-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.store-filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--pink);
  color: var(--pink); font-size: 0.72rem;
}
.store-filter-chip a { color: var(--pink); text-decoration: none; font-size: 1rem; }
@media (max-width: 860px) {
  .stores-grid { grid-template-columns: 1fr; }
  .stores-map-wrap { position: static; order: -1; }
  #storesMap { height: 52vh; }
}

/* ============ polish QA (jul/2026) ============ */
/* dropdowns: seta branca e folga da margem (nao afeta o book-strip da home) */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 15px;
  padding-right: 46px;
}
/* icone de calendario dos date inputs em branco (book-strip desenha o proprio, fica intacto) */
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; }
/* botao do checkout em uma linha, menos alto */
.reserve-summary .btn { white-space: nowrap; font-size: 0.72rem; letter-spacing: 0.06em; padding: 15px 18px; }
/* resumo acompanha a rolagem no desktop */
.reserve-summary { position: sticky; top: 92px; align-self: start; }
@media (max-width: 900px) { .reserve-summary { position: static; } }

/* densidade dos formularios (inputs mais baixos, grid mais compacto) */
.form-field input, .form-field textarea, .form-field select { padding: 11px 14px; font-size: 0.9rem; border-radius: 10px; }
.form-field select { padding: 11px 44px 11px 14px; }
.form-field label { margin-bottom: 6px; }
.form-grid { gap: 14px 20px; }
/* remover as setinhas de spin dos number inputs */
.form-field input[type="number"] { -moz-appearance: textfield; }
.form-field input[type="number"]::-webkit-outer-spin-button,
.form-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ============ paginas legais: coluna de leitura, secoes numeradas ============ */
.legal-body { counter-reset: sec; }
.legal-body article { max-width: 740px; padding: 26px 0; border-top: 1px solid var(--line); }
.legal-body article:first-child { border-top: 0; padding-top: 0; }
.legal-body article h3 { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; }
.legal-body article h3::before { counter-increment: sec; content: counter(sec, decimal-leading-zero); color: var(--pink); font-family: var(--mono); font-weight: 500; font-size: 0.8rem; }
.legal-body article p { color: var(--muted); line-height: 1.78; font-size: 0.98rem; max-width: 68ch; }
.legal-updated { color: var(--muted); }

/* guia visual do fit */
.fit-guide-btn {
  width: 17px; height: 17px; margin-left: 7px; padding: 0; flex: none;
  border: 1px solid var(--line); border-radius: 50%; background: transparent;
  color: var(--muted); font-family: var(--mono); font-size: 0.62rem; line-height: 1;
  cursor: pointer; vertical-align: middle; transition: all .18s ease;
}
.fit-guide-btn:hover { border-color: var(--pink); color: var(--pink); }
.fit-guide-modal {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.72); padding: 24px;
}
.fit-guide-modal[hidden] { display: none; }
.fit-guide-card {
  position: relative; width: min(520px, 100%);
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; text-align: left;
}
.fit-guide-shot { position: relative; border-radius: 12px; overflow: hidden; background: var(--bg); }
.fit-guide-card img { width: 100%; display: block; }
.fit-guide-shot .fit-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.fit-guide-shot.is-front .fdim { stroke-width: 1.4; stroke-dasharray: 4 3.4; }
.fit-guide-shot.is-front .fthin { stroke-width: 0.8; stroke-dasharray: 2.4 2.4; }
.fit-guide-shot.is-front .fdot { stroke-width: 1.2; }
.fit-guide-shot.is-front .fnum { stroke-width: 0.9; }
.fit-guide-shot.is-front .fnum-t { font-size: 6.8px; }
.fit-guide-card h4 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin: 14px 0 6px; }
.fit-guide-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.fit-guide-close {
  position: absolute; top: 10px; right: 12px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  background: rgba(0,0,0,.55); border: 1px solid var(--line); color: #fff; font-size: 1.2rem; line-height: 1;
}
.fit-guide-close:hover { border-color: var(--pink); color: var(--pink); }

/* tamanho indisponivel no periodo escolhido */
.size-btn.size-off {
  opacity: .34; cursor: not-allowed; position: relative;
  border-style: dashed;
}
.size-btn.size-off:hover { transform: none; }

/* bike ja escolhida no catalogo: texto fixo em vez de seletor */
.bike-fixed {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; flex-wrap: wrap;
}
.bike-fixed-name { font-family: var(--display); font-weight: 700; font-size: 0.98rem; }
.bike-fixed-price { color: var(--muted); font-size: 0.8rem; margin-left: 10px; }
.bike-fixed-swap { color: var(--pink); font-size: 0.74rem; text-decoration: none; white-space: nowrap; }
.bike-fixed-swap:hover { text-decoration: underline; }
#rsSeeAvail { margin-top: 10px; }

/* no formulario (fundo escuro) o tamanho selecionado precisa do rosa da marca,
   o preto do showroom sumia no escuro */
#reservePage .size-btn { border-color: var(--line); color: var(--text); }
#reservePage .size-btn:hover:not(.size-off) { border-color: var(--pink); color: var(--pink); }
#reservePage .size-btn.on {
  background: var(--pink); color: #fff; border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
#reservePage .size-btn.on:hover { color: #fff; }

/* ============ area do cliente: identidade + cards ============ */
.ac-head { padding-bottom: clamp(16px, 2vw, 26px); }
.ac-id {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 30px);
  flex-wrap: wrap;
}
.ac-id-avatar {
  width: clamp(72px, 8vw, 96px); height: clamp(72px, 8vw, 96px);
  border: 2px solid var(--pink); box-shadow: 0 0 0 5px var(--pink-soft);
  flex: none;
}
.ac-id-who { min-width: 240px; flex: 1; }
.ac-id-who h1 { margin: 4px 0 6px; }
.ac-id-who .section-sub { margin: 0; }
.ac-id-cta { flex: none; }
@media (max-width: 700px) { .ac-id-cta { width: 100%; text-align: center; } }

/* cards de reserva: faixa lateral + hierarquia */
.res-card {
  position: relative; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.res-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--pink); opacity: .85;
}
.res-card:hover { transform: translateY(-2px); border-color: var(--pink); }
.res-line { margin-top: 2px; }

/* garagem: cards com foto em destaque */
.garage-card { overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.garage-card:hover { transform: translateY(-2px); border-color: var(--pink); }

/* perfil em leitura: cards de dados */
.pf-vgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-bottom: 24px; }
.pf-vcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 22px 24px;
}
.pf-vcard h3 { margin-bottom: 14px; }
.pf-vcard dl { display: flex; flex-direction: column; }
.pf-vcard dl > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.pf-vcard dl > div:last-child { border-bottom: 0; }
.pf-vcard dt { color: var(--muted); font-size: 0.82rem; flex: none; }
.pf-vcard dd { font-size: 0.9rem; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.pf-vcard dd.pf-empty { color: var(--muted); font-weight: 400; }

/* acoes do perfil + popup de senha + respiro da garagem */
.pf-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pw-card { width: min(420px, 100%); }
.pw-card h3 { margin-top: 4px; }
.ac-pane [data-i18n="ac.garageIntro"] { margin-bottom: 22px; }

/* linha de salvar/cancelar compacta (botoes com largura natural) */
.pf-save-row { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.pf-save-row .btn { width: auto; padding: 13px 26px; font-size: 0.78rem; }

/* auth: refinamento (ritmo, notas e botao mais contido) */
.auth-card .form-grid { gap: 14px; }
.auth-note { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 6px; }
.auth-hint { color: var(--muted); font-size: 0.72rem; font-family: var(--mono); margin-top: 7px; }
.auth-card .btn-block { padding: 15px 20px; margin-top: 6px; }
.auth-title { font-size: 1.6rem; }
.auth-head { margin-bottom: 18px; }
.auth-tabs { margin-bottom: 20px; }
@media (max-width: 520px) {
  .auth-page { padding: 28px 14px; gap: 20px; }
  .auth-card { padding: 26px 20px; }
  .auth-logo img { height: 34px; }
}

/* botao de mostrar/esconder senha */
.pw-wrap { position: relative; display: block; }
.pw-wrap input { width: 100%; padding-right: 48px; }
.pw-toggle {
  position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--muted); cursor: pointer; padding: 0;
}
.pw-toggle:hover { color: var(--pink); }
.pw-toggle svg { width: 18px; height: 18px; }

/* notas do auth ocupam a largura toda do card (estavam presas numa coluna do grid) */
.auth-pane .auth-note { grid-column: 1 / -1; margin-bottom: 2px; }

/* card-resumo da bike escolhida no reserve */
.bcs { display: flex; gap: 20px; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 16px; align-items: center; }
.bcs-photo { flex: none; width: min(190px, 38%); border-radius: 10px; overflow: hidden; background: #101014; }
.bcs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.bcs-info { min-width: 0; flex: 1; }
.bcs-tier { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--pink); margin-bottom: 4px; }
.bcs-name { font-family: var(--display); font-variation-settings: "wdth" 120; font-weight: 800; font-size: 1.25rem; line-height: 1.1; }
.bcs-specs { color: var(--muted); font-size: 0.82rem; margin-top: 5px; }
.bcs-meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.bcs-chip {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em;
  border: 1px solid var(--pink); color: var(--pink); border-radius: 999px; padding: 5px 13px;
  cursor: pointer;
}
.bcs-chip:hover { background: var(--pink-soft); }
.bcs-price { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.bcs .bike-fixed-swap { display: inline-block; margin-top: 12px; }
@media (max-width: 560px) { .bcs { flex-direction: column; align-items: stretch; } .bcs-photo { width: 100%; } }

/* respiro na secao do fit (nota e labels estavam colados) */
#reservePage .contact-card > .rs-note { margin: 4px 0 20px; line-height: 1.6; }
#reservePage .contact-card h3 { margin-bottom: 10px; }

/* periodo compacto: data + hora emparelhados */
.period-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.period-group label { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.period-pair { display: flex; gap: 8px; }
.period-pair input[type="date"], .period-pair select {
  background-color: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font-family: var(--display); font-size: 0.88rem;
  padding: 10px 12px; outline: none; min-width: 0; color-scheme: dark;
}
.period-pair input[type="date"] { flex: 1.5; }
.period-pair select { flex: 1; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 13px; padding-right: 32px;
}
.period-pair input[type="date"]:focus, .period-pair select:focus { border-color: var(--pink); }
@media (max-width: 640px) { .period-grid { grid-template-columns: 1fr; } }

/* cupom no resumo */
.coupon-row { display: flex; gap: 8px; margin: 14px 0 0; }
.coupon-row input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font-family: var(--display); font-size: 0.85rem; padding: 10px 13px; outline: none;
  text-transform: uppercase;
}
.coupon-row input::placeholder { text-transform: none; }
.coupon-row input:focus { border-color: var(--pink); }
.coupon-row .btn { flex: none; white-space: nowrap; }
#rsCouponMsg { margin-top: 7px; }
#rsCouponMsg.ok { color: #3DDC97; }
.sum-coupon-line b { color: #3DDC97; }

/* resumo: ritmo vertical (texto x botao) */
.reserve-summary .sum-total { padding-top: 16px; }
.reserve-summary .rs-note { margin: 14px 0 0; line-height: 1.6; }
.reserve-summary .btn { margin-top: 22px; width: 100%; }
.reserve-summary .coupon-row .btn { width: auto; margin-top: 0; }
.reserve-summary .btn + .rs-note.mono,
.reserve-summary .rs-note.mono { margin-top: 22px; margin-bottom: 4px; font-size: 0.6rem; line-height: 1.9; letter-spacing: 0.12em; opacity: 0.7; text-align: center; }

/* seletor de idioma minimalista: texto puro, ativo em rosa */
.lang-switch { border: 0; padding: 0; gap: 0; background: transparent; }
.lang-switch button {
  padding: 6px 7px; border-radius: 0; font-size: 0.66rem; letter-spacing: 0.1em;
  color: var(--muted); background: transparent !important; position: relative;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: var(--pink); background: transparent !important; }
.lang-switch button.active::after {
  content: ""; position: absolute; left: 7px; right: 7px; bottom: 1px; height: 2px;
  background: var(--pink); border-radius: 2px;
}
.lang-switch button + button::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 10px; background: var(--line);
}

/* wizard do cadastro */
.wiz-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.wiz-title { font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.wiz-count { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.14em; }
.wiz-bar { height: 3px; background: var(--line); border-radius: 999px; margin-bottom: 20px; overflow: hidden; }
.wiz-bar i { display: block; height: 100%; width: 33%; background: var(--pink); border-radius: 999px; transition: width 0.25s ease; }
.wiz-nav { display: flex; gap: 10px; margin-top: 20px; }
.wiz-nav .btn { flex: 1; padding: 14px 18px; }
#wizErr { margin-top: 12px; }

/* area logada: escala mais contida e minimalista */
#accountPage .page-head h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
/* o header é fixo (~74px), então o topo precisa passar dele */
#accountPage .page-head { padding-top: clamp(110px, 12vw, 140px); padding-bottom: 14px; }
#accountPage .ac-id-avatar { width: 60px; height: 60px; box-shadow: 0 0 0 3px var(--pink-soft); }
#accountPage .avatar-initials { font-size: 1.05rem; }
#accountPage .eyebrow { font-size: 0.58rem; }
#accountPage .section-sub { font-size: 0.85rem; }
#accountPage .ac-tabs .chip { padding: 8px 14px; font-size: 0.66rem; }
#accountPage .pf-vcard { padding: 18px 20px; }
#accountPage .pf-vcard h3 { font-size: 0.82rem; letter-spacing: 0.04em; }
#accountPage .pf-vcard dt { font-size: 0.76rem; }
#accountPage .pf-vcard dd { font-size: 0.84rem; }
#accountPage .pf-vcard dl > div { padding: 8px 0; }
#accountPage .pf-actions .btn { padding: 12px 22px; font-size: 0.72rem; }
#accountPage .ac-id-cta { padding: 12px 24px; font-size: 0.72rem; }

/* footer sempre no pe da pagina (paginas curtas como a area do cliente) */
body { display: flex; flex-direction: column; min-height: 100svh; }
body > main { flex: 1 0 auto; width: 100%; }
.site-footer { margin-top: auto; }

/* estado vazio compacto na area logada */
#accountPage .empty-state { padding: 30px 22px; gap: 8px; max-width: 480px; margin: 0 auto; }
#accountPage .empty-state svg { width: 32px; height: 32px; }
#accountPage .empty-state h3 { font-size: 0.95rem; letter-spacing: 0.02em; }
#accountPage .empty-state p { font-size: 0.82rem; line-height: 1.55; max-width: 360px; }
#accountPage .empty-state .btn { margin-top: 6px; padding: 11px 22px; font-size: 0.68rem; }

/* cards do perfil em estilo ficha técnica (rotulo mono em cima, valor embaixo) */
#accountPage .pf-vcard h3 {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 18px;
}
#accountPage .pf-vcard h3::before { content: "– "; }
#accountPage .pf-vcard dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
#accountPage .pf-vcard dl > div { display: block; padding: 0; border-bottom: 0; }
#accountPage .pf-vcard dl > div.pf-wide { grid-column: 1 / -1; }
#accountPage .pf-vcard dt {
  font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
#accountPage .pf-vcard dd {
  text-align: left; font-family: var(--display); font-weight: 600; font-size: 0.94rem;
  overflow-wrap: anywhere;
}
#accountPage .pf-vcard dd.pf-empty { color: var(--line); font-weight: 400; }

/* perfil/fisico: folha unica com secoes (substitui os 3 cards) */
#accountPage .pf-sheet , #reservationPage .pf-sheet {
  border: 1px solid var(--line); border-radius: 16px; background: var(--panel);
  padding: 8px 28px 24px; max-width: 880px;
}
#accountPage .pf-sec , #reservationPage .pf-sec { padding: 22px 0; border-bottom: 1px solid var(--line); }
#accountPage .pf-sec:last-of-type , #reservationPage .pf-sec:last-of-type { border-bottom: 0; }
#accountPage .pf-sec-h , #reservationPage .pf-sec-h {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 18px;
}
#accountPage .pf-sec-h::after , #reservationPage .pf-sec-h::after { content: ""; flex: 1; height: 1px; background: var(--line); }
#accountPage .pf-specs , #reservationPage .pf-specs { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px 26px; margin: 0; }
#accountPage .pf-specs > div , #reservationPage .pf-specs > div { display: block; padding: 0; border: 0; }
#accountPage .pf-specs dt , #reservationPage .pf-specs dt {
  font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
#accountPage .pf-specs dd , #reservationPage .pf-specs dd {
  font-family: var(--display); font-weight: 600; font-size: 0.94rem;
  text-align: left; overflow-wrap: anywhere;
}
#accountPage .pf-specs dd.pf-empty , #reservationPage .pf-specs dd.pf-empty { color: var(--line); font-weight: 400; }
#accountPage .pf-foot { display: flex; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }
#accountPage .pf-foot .btn { padding: 10px 20px; font-size: 0.64rem; letter-spacing: 0.08em; }

/* area logada: coluna central limitada (nada de esticar em tela larga) */
#acContent > * { max-width: 780px; margin-left: auto; margin-right: auto; }
#accountPage .pf-sheet , #reservationPage .pf-sheet { max-width: none; padding: 4px 24px 18px; }
#accountPage .pf-sec , #reservationPage .pf-sec { padding: 16px 0; }
#accountPage .pf-sec-h , #reservationPage .pf-sec-h { margin-bottom: 14px; }
#accountPage .pf-specs , #reservationPage .pf-specs { gap: 12px 22px; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
#accountPage .pf-specs dd , #reservationPage .pf-specs dd { font-size: 0.88rem; }
#accountPage .pf-none { color: var(--muted); font-size: 0.8rem; }
#accountPage .pf-foot { padding-top: 16px; }

/* formulario de edicao na mesma escala */
#accountPage .contact-card { padding: 22px 24px; }
#accountPage .contact-card h3 { font-size: 0.92rem; letter-spacing: 0.02em; margin-bottom: 4px; }
#accountPage .form-grid { gap: 12px 16px; }
#accountPage .form-field input, #accountPage .form-field select, #accountPage .form-field textarea {
  padding: 9px 12px; font-size: 0.85rem; border-radius: 9px;
}
#accountPage .avatar-row { margin-bottom: 18px; }

/* area logada: UMA coluna. Cabecalho, abas e conteudo nas mesmas bordas */
#accountPage .ac-id { max-width: 780px; margin: 0 auto; }
#accountPage .page-head { padding-bottom: 6px; }
#accountPage #acContent { padding-top: 18px; }
#accountPage .ac-tabs-wrap { margin-bottom: 22px; }
#accountPage .ac-tabs { display: inline-flex; }
#accountPage .empty-state { max-width: none; margin: 0; }

/* header logado: botao de conta com icone (sem bola verde) */
.account-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; color: var(--text); text-decoration: none;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color .18s ease, color .18s ease;
}
.account-chip svg { width: 14px; height: 14px; color: var(--pink); }
.account-chip:hover { border-color: var(--pink); }
.account-dot { display: none; }

/* cabecalho de secao com link Editar */
#accountPage .pf-sec-h , #reservationPage .pf-sec-h { display: flex; align-items: center; gap: 14px; }
#accountPage .pf-sec-h::after , #reservationPage .pf-sec-h::after { content: none; }
#accountPage .pf-sec-h .ln , #reservationPage .pf-sec-h .ln { flex: 1; height: 1px; background: var(--line); }
.pf-edit-link {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); padding: 4px 2px;
}
.pf-edit-link:hover { color: var(--pink); }

/* periodo: relogio no seletor de hora (o calendario vem da regra global) */
.period-pair select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  background-size: 15px;
}

/* barra de filtros do catalogo: alturas iguais, chips menores, contagem a direita */
.catalog-toolbar { gap: 10px 12px; }
.catalog-toolbar .search-box { flex: 0 1 340px; min-width: 240px; padding: 0 16px; }
.catalog-toolbar .search-box input { padding: 11px 0; font-size: 0.85rem; }
.catalog-toolbar .chip-group { padding: 3px; gap: 0; }
.catalog-toolbar .chip { font-size: 0.56rem; letter-spacing: 0.1em; padding: 9px 13px; }
.catalog-toolbar #catalogReset {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--showroom-muted, #6b6b66); padding: 8px 6px;
}
.catalog-toolbar #catalogReset:hover { color: var(--pink); }
.catalog-toolbar .fleet-count { margin-left: auto; }

/* folha leve: sem fios, secoes separadas por respiro */
#accountPage .pf-sheet , #reservationPage .pf-sheet { border: 0; background: rgba(255, 255, 255, 0.025); padding: 10px 28px 20px; }
#accountPage .pf-sec , #reservationPage .pf-sec { border-bottom: 0; padding: 18px 0 6px; }
#accountPage .pf-sec-h , #reservationPage .pf-sec-h { justify-content: space-between; }
#accountPage .pf-sec-h .ln , #reservationPage .pf-sec-h .ln { display: none; }
#accountPage .pf-foot { border-top: 0; padding-top: 14px; }

/* botao adicionar bike compacto */
.garage-add-btn { padding: 10px 20px !important; font-size: 0.66rem !important; letter-spacing: 0.1em; }

/* canetinha de foto no avatar do topo */
.ac-id-avatar { position: relative; overflow: visible; }
.ac-id-avatar img, .ac-id-avatar .avatar-initials { border-radius: 50%; overflow: hidden; }
.avatar-edit {
  position: absolute; right: -4px; bottom: -4px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--pink); border: 2px solid var(--bg);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
}
.avatar-edit svg { width: 12px; height: 12px; }
.avatar-edit:hover { background: #ff5cae; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* botões de salvar/cancelar da conta: compactos */
.pf-save-row { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.pf-save-row .btn {
  padding: 9px 20px !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.08em;
}

/* volta do pagamento: recado curto, não outdoor */
.pm-page { gap: 14px; max-width: 560px; margin: 0 auto; }
.pm-page .nf-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.1; }
.pm-page .nf-code { font-size: 0.66rem; letter-spacing: 0.24em; }
.pm-page .section-sub { font-size: 1rem; max-width: 44ch; }
.pm-page .cta-actions { margin-top: 10px; }
.pm-page .cta-actions .btn { padding: 12px 24px; font-size: 0.7rem; }
.pm-page .rs-hint { margin: 0; opacity: 0.75; }

/* reservas em lista, com o detalhe abrindo na própria linha */
.res-row {
  border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 14px;
  background: rgba(255, 255, 255, 0.025); overflow: hidden;
}
.res-row {
  display: grid; grid-template-columns: auto 1fr auto auto auto 16px;
  align-items: center; gap: 16px; padding: 15px 18px;
  color: inherit; text-decoration: none; transition: border-color 0.15s ease, background 0.15s ease;
}
.res-row:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 46, 150, 0.35); }
.res-row .res-num { color: var(--muted); font-size: 0.66rem; }
.res-bike { font-size: 0.9rem; }
.res-when { color: var(--muted); font-size: 0.66rem; white-space: nowrap; }
.res-val { font-family: var(--mono); font-size: 0.82rem; color: var(--pink); }
.res-caret {
  width: 8px; height: 8px; border-top: 1.5px solid var(--muted); border-right: 1.5px solid var(--muted);
  transform: rotate(45deg); justify-self: end;
}
.res-row:hover .res-caret { border-color: var(--pink); }
.res-det { padding: 4px 18px 18px; }
.res-det .pf-specs { margin: 0; }
@media (max-width: 700px) {
  .res-row { grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px 16px; }
  .res-row .res-num { grid-column: 1; }
  .res-status { grid-column: 2; grid-row: 1; justify-self: end; }
  .res-bike { grid-column: 1 / -1; }
  .res-when { grid-column: 1; }
  .res-val { grid-column: 2; justify-self: end; }
  .res-caret { display: none; }
}
.res-det .pf-specs dd { white-space: pre-line; }

/* ── página de uma reserva ─────────────────────────────── */
.rv-head { padding-bottom: clamp(18px, 3vw, 30px); }
.rv-back {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  margin-bottom: 20px; padding: 9px 18px 9px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14); color: var(--muted);
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.rv-back svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.rv-back:hover { color: #fff; border-color: rgba(255, 46, 150, 0.5); background: rgba(255, 46, 150, 0.08); }
.rv-back:hover svg { transform: translateX(-2px); }
.rv-headsub {
  color: var(--muted); font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px;
}
#reservationPage .rv-head h1 em { font-style: normal; color: var(--pink); font-family: var(--mono); font-size: 0.62em; }
.rv-wrap { display: flex; flex-direction: column; gap: 18px; max-width: var(--app-w); margin: 0 auto; }
.rv-state { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rv-state-b {
  border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 14px;
  background: rgba(255, 255, 255, 0.025); padding: 16px 18px;
}
.rv-k { color: var(--muted); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; }
.rv-v { margin-top: 8px; font-size: 1.05rem; }
.rv-state-b .rs-hint { margin-top: 6px; }
.rv-bike {
  display: grid; grid-template-columns: minmax(200px, 300px) 1fr; gap: 22px; align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 14px;
  background: rgba(255, 255, 255, 0.025); padding: 18px;
}
.rv-bike-photo { background: var(--showroom-bg, #F3F2EE); border-radius: 10px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rv-bike-photo img { width: 100%; height: 100%; object-fit: contain; }
.rv-tier { color: var(--pink); font-size: 0.6rem; letter-spacing: 0.2em; }
.rv-bike-info h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-top: 6px; }
.rv-specs { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.rv-chips { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.rv-cols { display: grid; grid-template-columns: 1fr minmax(260px, 320px); gap: 18px; align-items: start; }
.rv-notes { color: var(--muted); white-space: pre-line; font-size: 0.92rem; }
.rv-side .sum-card { position: sticky; top: 92px; }
.rv-side .btn { margin-top: 16px; }
@media (max-width: 860px) {
  .rv-cols, .rv-bike, .rv-state { grid-template-columns: 1fr; }
  .rv-side .sum-card { position: static; }
}

/* na reserva não há botão de editar, então o fio da seção volta */
#reservationPage .pf-sec-h { justify-content: flex-start; }
#reservationPage .pf-sec-h .ln { display: block; }
#reservationPage .pf-sheet { padding: 6px 24px 18px; }
#reservationPage .rv-head h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
#reservationPage .rv-head { padding-bottom: 10px; }

/* na reserva, "falar com a gente" é um link discreto, não um botão */
.rv-help {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  color: var(--muted); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.rv-help::after { content: "\2192"; transition: transform 0.15s ease; }
.rv-help:hover { color: var(--pink); }
.rv-help:hover::after { transform: translateX(3px); }

/* tags da bike na reserva: etiqueta de dado, não botão */
.rv-tag {
  display: inline-flex; align-items: center;
  padding: 6px 11px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.rv-chips { gap: 7px; margin-top: 16px; }
#reservationPage .rv-state-b .rs-hint { color: var(--muted); }


/* cancelamento na página da reserva */
.rv-cancel { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.rv-cancel .rs-hint { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 0.78rem; line-height: 1.5; }
.rv-cancel-btn {
  margin-top: 12px; background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--muted); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px;
}
.rv-cancel-btn:hover { color: #FF6B6B; }
/* link dentro do popup segue a paleta, não o azul do navegador */
#rvCancelModal a { color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
#rvCancelModal a:hover { color: var(--pink); }

/* popup de cancelamento: pergunta curta, saída segura em destaque */
.rvc-modal {
  position: fixed; inset: 0; z-index: 130; background: rgba(6, 6, 9, 0.82);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px;
}
.rvc-card {
  position: relative; width: min(400px, 100%);
  background: #14141A; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 26px 24px 22px;
}
.rvc-card h3 {
  font-size: 1.15rem; text-transform: none; letter-spacing: 0;
  font-variation-settings: "wdth" 100; padding-right: 28px;
}
.rvc-text { color: var(--muted); font-size: 0.88rem; line-height: 1.55; margin-top: 10px; }
.rvc-msg { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }
.rvc-msg.ok { color: #3DDC97; }
.rvc-actions { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.rvc-actions .btn { padding: 11px 22px; font-size: 0.64rem; }
.rvc-go {
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--muted);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.rvc-go:hover { color: #FF6B6B; }
.rvc-go:disabled { opacity: 0.5; cursor: default; }
.rvc-policy {
  display: inline-block; margin-top: 20px; color: var(--line);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
}
.rvc-policy:hover { color: var(--muted); }
.rvc-close {
  position: absolute; top: 14px; right: 14px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 0; color: var(--muted); font-size: 1rem;
  line-height: 1; cursor: pointer;
}
.rvc-close:hover { color: #fff; }

/* ── fale com a gente: oficina de um lado, formulário do outro ── */
#contactPage .ct-head h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
#contactPage .ct-head { padding-bottom: 6px; }
#contactPage .section-sub { max-width: 46ch; }
.ct-grid2 {
  display: grid; grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 26px; align-items: start; max-width: var(--app-w); margin: 0 auto;
}
.ct-aside { display: flex; flex-direction: column; gap: 18px; }
.ct-photo { position: relative; border-radius: 14px; overflow: hidden; margin: 0; }
.ct-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ct-photo figcaption {
  position: absolute; left: 14px; bottom: 12px; color: #fff;
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}
.ct-chan { list-style: none; display: flex; flex-direction: column; }
.ct-chan li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.ct-chan li:last-child { border-bottom: 0; }
.ct-chan span { color: var(--muted); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; }
.ct-chan a { color: inherit; text-decoration: none; font-size: 0.88rem; text-align: right; }
.ct-chan a:hover { color: var(--pink); }
.ct-hours { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ct-hours li { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 0.78rem; }
.ct-hours b { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; color: #fff; }
.ct-hours li:last-child b { color: var(--pink); }
.ct-form { background: rgba(255, 255, 255, 0.025); border-radius: 14px; padding: 18px 22px 22px; }
.ct-form .pf-sec-h {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  color: var(--pink); font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.ct-form .pf-sec-h .ln { flex: 1; height: 1px; background: var(--line); }
.ct-form .form-grid { gap: 14px; }
.ct-form input, .ct-form select, .ct-form textarea { padding: 10px 12px; font-size: 0.92rem; }
.ct-send { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.ct-send .btn { padding: 11px 26px; font-size: 0.66rem; }
.ct-faq { color: var(--muted); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.ct-faq::after { content: " \2192"; }
.ct-faq:hover { color: var(--pink); }
@media (max-width: 860px) {
  .ct-grid2 { grid-template-columns: 1fr; }
  .ct-photo img { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .ct-form { padding: 16px; }
  .ct-send { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .ct-send .btn { width: 100%; }
}
/* legenda da foto precisa de base escura para não sumir na imagem clara */
.ct-photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(transparent, rgba(6, 6, 9, 0.75)); pointer-events: none;
}
.ct-photo figcaption { z-index: 1; text-shadow: none; }

/* topo com foto: ela é atmosfera atrás do título, não o assunto da tela */
.page-head.has-photo {
  position: relative; overflow: hidden;
  padding-top: clamp(120px, 13vw, 165px);
  padding-bottom: clamp(34px, 4vw, 56px);
}
.page-photo { position: absolute; inset: 0; z-index: 0; }
.page-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 45%; opacity: 0.34; }
.page-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 4%, rgba(11, 11, 14, 0.85) 38%, rgba(11, 11, 14, 0.5) 100%),
    linear-gradient(to top, var(--bg) 6%, rgba(11, 11, 14, 0.2) 60%);
}
/* o glow já é absoluto: mexer no position dele quebrava a altura do topo */
.page-head.has-photo > *:not(.page-photo):not(.page-glow) { position: relative; z-index: 1; }
.page-head.has-photo .page-glow { z-index: 1; }
@media (max-width: 700px) {
  .page-photo img { opacity: 0.24; object-position: 60% 45%; }
}

/* ── escala: nada grita mais alto que a marca ───────────── */
/* 404 usava tamanho de hero numa página de erro */
.nf-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
/* o subtítulo do topo é apoio, não manchete */
.page-head .section-sub { max-width: 60ch; font-size: 0.98rem; }
/* botão de cartão não precisa de largura total gritando */
.tier-card .btn, .fleet-card .btn { font-size: 0.7rem; padding: 11px 22px; }
/* botão nunca fica mais baixo que o alvo de toque confortável */
.btn { min-height: 40px; }
.btn-sm { min-height: 34px; }
/* nota da frota lia como uma linha de 1348px, agora respeita a coluna de leitura */
.fleet-note { max-width: 68ch; }

/* ── página de checkout ─────────────────────────────────── */
.co-header {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px var(--pad); border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.co-header .brand img { height: 26px; }
.co-secure { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; }
.co-secure svg { width: 14px; height: 14px; }
.co-section { padding-top: clamp(26px, 4vw, 44px); }
#checkoutPage .rv-back { margin-bottom: 22px; }
.co-grid { display: grid; grid-template-columns: 1fr minmax(280px, 340px); gap: 28px; align-items: start; }
.co-pay h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.co-note {
  border: 1px solid rgba(61, 220, 151, 0.35); background: rgba(61, 220, 151, 0.07);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 20px;
}
.co-note-t { color: #3DDC97; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.co-note-s { color: var(--muted); font-size: 0.88rem; line-height: 1.55; margin-top: 6px; }
#coMount { min-height: 340px; background: #fff; border-radius: 12px; padding: 6px; }
.co-legal { color: var(--line); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 16px; }
.co-card { background: rgba(255, 255, 255, 0.025); border-radius: 14px; padding: 18px 20px 20px; position: sticky; top: 24px; }
.co-card .pf-sec-h {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  color: var(--pink); font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.co-card .pf-sec-h .ln { flex: 1; height: 1px; background: var(--line); }
.co-bike { font-size: 1rem; }
.co-period { color: var(--muted); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; margin-bottom: 16px; }
.co-card .rs-note { margin-top: 14px; }
@media (max-width: 860px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-card { position: static; order: -1; }
}
/* pagamento não concluído: caminho de volta visível na própria reserva */
.rv-resume { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.rv-resume .rs-hint { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 0.76rem; }

/* ── uma coluna só para as telas de aplicação ────────────
   Cabeçalho e conteúdo passam a nascer na mesma linha vertical,
   em vez de cada bloco escolher a própria largura. */
:root { --app-w: 1040px; }
.app-wrap { max-width: var(--app-w); margin: 0 auto; }
/* a conta ficou de propósito numa coluna mais estreita, então fica de fora */
#reservationPage .page-head > *, #contactPage .page-head > * {
  max-width: var(--app-w); margin-left: auto; margin-right: auto;
}
#reservationPage .page-head .section-sub, #contactPage .page-head .section-sub { margin-left: auto; }

/* ── campos de data e hora, iguais em toda parte ──────────
   O iOS Safari centraliza o valor, desenha o próprio botão de calendário e
   ignora parte do estilo do input. Aqui a gente neutraliza isso: valor à
   esquerda, ícone nosso, área de toque confortável e o indicator nativo
   invisível por cima do campo inteiro (é ele que abre o seletor). */
input[type="date"], input[type="time"], input[type="month"] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  text-align: left;
  min-height: 44px;
  padding-right: 40px;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A3A2AE' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4.5' width='18' height='17' rx='2.5'/%3E%3Cpath d='M16 2.5v4M8 2.5v4M3 9.5h18'/%3E%3C/svg%3E");
}
input[type="time"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A3A2AE' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value {
  text-align: left; margin: 0; min-height: 1.2em;
}
input[type="date"]::-webkit-datetime-edit, input[type="time"]::-webkit-datetime-edit { padding: 0; }
/* o botão nativo cobre o campo inteiro, invisível: toque em qualquer ponto abre o seletor */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute; inset: 0; width: auto; height: auto;
  margin: 0; padding: 0; opacity: 0; cursor: pointer; filter: none;
}
input[type="date"]:focus, input[type="time"]:focus { border-color: var(--pink); }
/* o campo dentro do par data+hora já tem o ícone, então não repete o fundo */
.period-pair input[type="date"] { padding-right: 36px; }
@media (max-width: 700px) {
  input[type="date"], input[type="time"] { font-size: 16px; }   /* abaixo disso o iOS dá zoom */
}
/* no celular o iOS dá zoom em campo com fonte menor que 16px, então trava aqui */
@media (max-width: 700px) {
  .period-pair input[type="date"],
  #accountPage input[type="date"],
  .form-field input[type="date"],
  input[type="date"], input[type="time"] { font-size: 16px; }
}
/* o ícone precisa de espaço, mesmo onde a página aperta o padding do campo */
#accountPage input[type="date"], .form-field input[type="date"], .co-form input[type="date"] { padding-right: 40px; }

/* ── filtros no celular: ar entre as opções ───────────────
   A regra compacta da barra do desktop (.catalog-toolbar .chip-group)
   estava vencendo dentro do painel e colando os chips uns nos outros. */
@media (max-width: 800px) {
  .catalog-toolbar .filters-panel.open { gap: 16px; padding: 16px; }
  .catalog-toolbar .filters-panel .chip-group {
    gap: 10px; padding: 0; background: transparent; border: 0;
  }
  .catalog-toolbar .filters-panel .chip-group + .chip-group { padding-top: 16px; }
  .catalog-toolbar .filters-panel .chip {
    font-size: 0.62rem; letter-spacing: 0.1em; padding: 10px 16px; line-height: 1;
  }
  .catalog-toolbar .filters-panel #catalogReset { padding: 4px 2px; margin-top: 2px; }
}

/* ── mapas nunca passam por cima do header ────────────────
   O Leaflet empilha painéis e controles em z-index de 400 a 1000, o que
   fazia o mapa cobrir o cabeçalho fixo ao rolar. Isolando o contexto do
   container, tudo o que ele cria fica preso dentro dele. */
#pickupMap, #storesMap, .pickup-map, .stores-map {
  position: relative; z-index: 0; isolation: isolate;
}
.site-header { z-index: 1200; }
.mobile-drawer { z-index: 1190; }

/* ── tamanhos na reserva: o fundo branco do showroom sumia no escuro ──
   O botão herdava background branco e texto claro, então o rótulo ficava
   invisível. Aqui ele vira um chip escuro, e o indisponível fica legível
   em vez de quase apagado. */
#reservePage .size-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
#reservePage .size-btn:hover:not(.size-off) {
  background: rgba(255, 46, 150, 0.12); border-color: var(--pink); color: #fff;
}
#reservePage .size-btn.size-off {
  opacity: 1;
  background: transparent;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
#reservePage .size-btn.size-off:hover { border-color: rgba(255, 255, 255, 0.14); color: var(--muted); }

/* TEMP — ocultar contato/follow até ter dados reais (remover este bloco + voltar o grid para 2fr 1fr 1fr 1fr para restaurar) */
.ct-chan{display:none!important}
.footer-grid nav[aria-label="Social"]{display:none!important}
/* /TEMP */

/* alinhar o parágrafo do how-it-works à esquerda, sob o título */
.page-head p.hiw-statement { max-width: 1560px; margin-left: auto; margin-right: auto; }
