/* =====================================================
   MULTIMARKAS MOTOCENTRO — style.css
   Paleta: Negro profundo · Naranja KTM · Blanco
   Tipografía: Barlow Condensed (display) + Barlow (body)
   Filosofía: Minimalista · Industrial · Impacto
   ===================================================== */

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

:root {
  --black:        #0a0a0a;
  --black2:       #111111;
  --black3:       #1a1a1a;
  --black4:       #222222;
  --black5:       #2a2a2a;
  --orange:       #FF6600;
  --orange-deep:  #E55500;
  --orange-glow:  rgba(255,102,0,0.18);
  --orange-pale:  rgba(255,102,0,0.08);
  --white:        #ffffff;
  --white90:      rgba(255,255,255,0.9);
  --white60:      rgba(255,255,255,0.6);
  --white30:      rgba(255,255,255,0.3);
  --white10:      rgba(255,255,255,0.08);
  --muted:        rgba(255,255,255,0.4);
  --border:       rgba(255,255,255,0.1);
  --border-hot:   rgba(255,102,0,0.5);
  --radius:       16px;
  --radius-sm:    12px;
  --shadow-card:  0 2px 16px rgba(0,0,0,0.4);
  --shadow-hot:   0 8px 32px rgba(255,102,0,0.25);
  --font-h:       'Barlow Condensed', 'Impact', sans-serif;
  --font-b:       'Barlow', -apple-system, sans-serif;
}

html { -webkit-tap-highlight-color: transparent; }
html, body {
  overflow-x: hidden;
  scroll-behavior: auto;
  background: var(--black);
}
body {
  font-family: var(--font-b);
  color: var(--white);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-font-smoothing: antialiased;
  padding: 0;
}

/* =====================================================
   APP SHELL
   ===================================================== */
.app {
  max-width: 460px;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black2);
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  padding: 4px;
  border-radius: 8px;
  transition: all .2s;
  display: flex;
}
.btn-back:hover { background: var(--orange-pale); }

.progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.progress-track {
  flex: 1;
  height: 3px;
  background: var(--black5);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--orange);
  border-radius: 50px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px var(--orange);
}
.progress-lbl {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}

/* =====================================================
   SCREENS
   ===================================================== */
.screen { display: none; }
.screen.active {
  display: flex;
  align-items: flex-start;
  animation: screenIn .35s ease;
}
@keyframes screenIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

.sc-inner {
  width: 100%;
  padding: 28px 20px 48px;
}

/* =====================================================
   LANDING
   ===================================================== */
.landing-sc {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Hero — full bleed, logo centrado encima */
.landing-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.1) 45%,
    rgba(10,10,10,0.85) 100%
  );
}
/* Línea naranja inferior */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255,102,0,0.8);
}

/* Logo centrado sobre el hero */
.hero-logo-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  max-height: 52px;
  max-width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.hero-logo-txt {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

/* Tagline — centrado, debajo del hero */
.landing-tagline-block {
  text-align: center;
  padding: 28px 24px 0;
}
.tagline-sub {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.tagline-h1 {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
}
.tagline-h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Brand marks — monocromáticos, en fila centrada, separados por línea fina */
.brand-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 20px 0;
}
.brand-mark {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white30);
  padding: 0 14px;
  transition: color .2s;
}
.brand-marks:hover .brand-mark { color: rgba(255,255,255,0.2); }
.brand-mark:hover { color: var(--white) !important; }
.brand-mark-sep {
  width: 1px;
  height: 12px;
  background: var(--border);
  flex-shrink: 0;
}

/* Body */
.landing-body {
  padding: 24px 20px 0;
  text-align: center;
}
.landing-lead {
  font-size: 15px;
  color: var(--white60);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.landing-lead strong { color: var(--white); }

/* CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-hot);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.btn-cta:hover { background: var(--orange-deep); box-shadow: 0 12px 40px rgba(255,102,0,0.4); }
.btn-cta:hover::after { transform: translateX(100%); }
.btn-cta:active { transform: scale(0.98); }
.btn-cta:disabled { opacity: 0.5; cursor: not-allowed; }

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px 0 12px;
  padding: 16px 12px;
  background: var(--black4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-n {
  display: block;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.trust-t {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .3px;
}
.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.cities-tag {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 8px;
}

/* =====================================================
   QUESTION HEADER
   ===================================================== */
.q-header {
  margin-bottom: 28px;
}
.q-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border-hot);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.q-title {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.2px;
  text-transform: uppercase;
}
.q-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* =====================================================
   STEP 1 — CIUDAD INPUT + AUTOCOMPLETE
   ===================================================== */
.ciudad-field-wrap {
  position: relative;
  margin-bottom: 24px;
}

/* Input box */
.ciudad-input-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  transition: border-color .2s, box-shadow .2s;
}
.ciudad-input-box:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-pale);
}
.ciudad-icon {
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 16px 0;
}
.ciudad-input-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 500;
  padding: 17px 0;
  width: 100%;
}
.ciudad-input-box input::placeholder { color: var(--muted); font-weight: 400; }

.ciudad-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: color .2s;
}
.ciudad-clear:hover { color: var(--white); }

/* Dropdown */
.ciudad-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--black3);
  border: 1px solid var(--border-hot);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.dd-item:last-child { border-bottom: none; }
.dd-item:hover { background: var(--orange-pale); color: var(--orange); }
.dd-iva {
  margin-left: auto;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--orange);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Quick chips */
.ciudad-quick-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ciudad-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ciudad-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--white60);
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.ciudad-chip:hover {
  border-color: var(--border-hot);
  color: var(--white);
  background: var(--black4);
}
.ciudad-chip.active {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}
.chip-sub {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}
.ciudad-chip.active .chip-sub { color: var(--orange); opacity: .7; }
.chip-badge {
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--orange);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 4px;
}
.btn-ciudad-next { margin-top: 0; }

/* =====================================================
   BRAND CARDS (Step 2)
   ===================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.brand-card-wide { grid-column: 1 / -1; }

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-b);
  overflow: hidden;
  transition: all .25s;
  text-align: center;
}
.brand-card-wide {
  flex-direction: row;
  align-items: center;
}
.brand-card:hover {
  border-color: var(--border-hot);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hot);
}
.brand-card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-hot);
}

.bc-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black4);
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.brand-card-wide .bc-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
}
.bc-logo img { max-width: 70%; max-height: 60%; object-fit: contain; filter: brightness(0) invert(1); }
.bc-ktm     { background: var(--black4); }
.bc-husq    { background: #0d1a0f; }
.bc-tvs     { background: #0a0f1a; }
.bc-ceronte { background: var(--black4); }
.bc-txt {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.bc-body {
  padding: 12px 14px 16px;
}
.brand-card-wide .bc-body {
  padding: 16px 20px;
  text-align: left;
}
.bc-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.bc-body small { font-size: 12px; color: var(--muted); }

/* =====================================================
   USE CARDS (Step 3)
   ===================================================== */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.use-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-b);
  text-align: center;
  transition: all .25s;
}
.use-card:hover {
  border-color: var(--border-hot);
  background: var(--black4);
  transform: translateY(-3px);
}
.use-card.selected {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 0 0 1px var(--orange);
}
.uc-icon { font-size: 32px; }
.use-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.use-card small { font-size: 11px; color: var(--muted); }

/* =====================================================
   PILLS (Step 4)
   ===================================================== */
.pills-col { display: flex; flex-direction: column; gap: 10px; }

.pill {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-b);
  text-align: left;
  transition: all .25s;
}
.pill:hover { border-color: var(--border-hot); background: var(--black4); }
.pill.selected { border-color: var(--orange); background: var(--orange-pale); box-shadow: 0 0 0 1px var(--orange); }
.pill-icon { font-size: 26px; flex-shrink: 0; }
.pill-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.pill-text small { font-size: 12px; color: var(--muted); }

/* =====================================================
   FORM (Step 5)
   ===================================================== */
.form-sc { padding-top: 24px; }

.form-summary {
  background: var(--black4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.sum-row:last-child { border-bottom: none; }
.sum-k { color: var(--muted); }
.sum-v { color: var(--white); font-weight: 600; }

.form-fields label {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 16px 0 6px;
}
.form-fields label:first-of-type { margin-top: 0; }
.form-fields input {
  width: 100%;
  padding: 15px 18px;
  background: var(--black4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-b);
  transition: all .25s;
}
.form-fields input::placeholder { color: var(--muted); }
.form-fields input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-pale);
}

.btn-submit { margin-top: 28px; font-size: 16px; }
.form-legal {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}

/* =====================================================
   ADVISORS (Step 6)
   ===================================================== */
.advisors-sc { padding-top: 24px; }
.advisors-title { font-size: 28px; }

/* City filter */
.city-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cf-btn {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--black4);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.cf-btn:hover, .cf-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Advisors grid — 2 columns vertical */
.advisors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.advisor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: all .25s;
  cursor: pointer;
}
.advisor-card:hover {
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.15);
}
.advisor-card:active { transform: scale(0.98); }

/* Photo */
.ac-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black5);
}
.ac-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .3s;
}
.advisor-card:hover .ac-photo img { transform: scale(1.04); }
.ac-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--black4);
}

/* Online dot */
.ac-online {
  position: absolute;
  top: 10px; right: 10px;
  width: 10px; height: 10px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid var(--black3);
  box-shadow: 0 0 8px rgba(37,211,102,0.6);
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Info row */
.ac-info {
  width: 100%;
  padding: 10px 12px 4px;
}
.ac-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.ac-city {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* WA CTA */
.ac-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 12px 12px;
  color: #25d366;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.advisors-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* =====================================================
   COOKIE BAR
   ===================================================== */
.cookie-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  max-width: 440px;
  width: calc(100% - 32px);
  background: var(--black3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  transition: transform .5s cubic-bezier(.2,.9,.3,1.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.cookie-bar p { flex: 1; font-size: 12px; color: var(--muted); line-height: 1.5; }
.cookie-ok {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.cookie-ok:hover { background: var(--orange-deep); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 480px) {
  .app { min-height: auto; }
  body { padding: 0; align-items: flex-start; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .cookie-ok { width: 100%; text-align: center; }
}
@media (max-width: 400px) {
  .q-title { font-size: 26px; }
  .tagline-h1 { font-size: 36px; }
  .sc-inner { padding: 22px 16px 40px; }
}

/* =====================================================
   SMOOTH SELECTIONS — pulse
   ===================================================== */
.card-city.selected::before,
.brand-card.selected::before,
.use-card.selected::before,
.pill.selected::before {
  content: '✓';
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px var(--orange-glow);
}
/* only for cards that are position:relative */
.card-city,
.brand-card,
.use-card,
.pill {
  position: relative;
}
