  /* ── Root typography ── */
  body {
    font-kerning: normal;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  *:focus-visible {
    outline: 2px solid #d3bbff;
    outline-offset: 2px;
  }
  .tabular-nums { font-variant-numeric: tabular-nums; }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
  }
  .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
  }
  .glass-panel {
    background: #1d1f2a;
  }
  .glass-card {
    background: #1d1f2a;
  }
  .hero-gradient-text {
    color: #f1e3a9;
  }
  .glow-button {
    transition: all 0.3s ease;
  }
  .glow-button:hover {
    opacity: 0.9;
  }
  .planetary-line-venus { }
  .planetary-line-jupiter { }
  .asymmetric-grid-summary {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
  }
  @media (max-width: 1024px) {
    .asymmetric-grid-summary { grid-template-columns: 1fr; }
  }

  /* ── Summary: Celestial node ── */
  .celestial-node {
    transition: transform 0.3s, opacity 0.3s;
  }
  .celestial-node:hover {
    transform: scale(1.25);
  }
  .map-label {
    font-family: 'Noto Serif', serif;
    font-size: 0.75rem;
    font-style: italic;
    letter-spacing: 0.1em;
    background: rgba(17, 19, 29, 0.85);
    border: 1px solid rgba(74, 69, 81, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
    white-space: nowrap;
  }
  .page { display: none; opacity: 0; transition: opacity 0.3s ease; }
  .page.active { display: block; opacity: 1; }
  .page-map.active { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }

  /* Scrollbar styling */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #11131d; }
  ::-webkit-scrollbar-thumb { background: #4a4551; border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: #958e9c; }

  /* Progress bar animation */
  .progress-bar { transition: width 1s ease-out; }

  /* Onboarding multi-step */
  .onboarding-step { display: none; }
  .onboarding-step.active { display: block; animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  @keyframes stepIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* How it works icons */
  .how-it-works-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(211,187,255,0.15);
    background: rgba(75,44,130,0.12);
    transition: all 0.3s;
  }
  .how-it-works-icon:hover { border-color: rgba(211,187,255,0.4); background: rgba(75,44,130,0.25); }

  /* Calculating animation */
  @keyframes cosmicSpin {
    to { transform: rotate(360deg); }
  }
  .cosmic-spin { animation: cosmicSpin 2s linear infinite; }

  /* Tour overlay */
  .tour-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
  }
  .tour-step { display: none; }
  .tour-step.active { display: block; animation: stepIn 0.3s ease forwards; }

  /* Info tooltip */
  .info-tip { position: relative; display: inline-flex; cursor: help; }
  .info-tip .tip-bubble {
    position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
    width: 260px; padding: 14px 16px;
    background: #1d1f2a;
    border: 1px solid rgba(74, 69, 81, 0.4); border-radius: 14px;
    font-size: 12px; line-height: 1.6; color: #cbc4d2;
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 70;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  }
  .info-tip .tip-bubble::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: rgba(74, 69, 81, 0.4);
  }
  .info-tip:hover .tip-bubble, .info-tip:focus-within .tip-bubble { opacity: 1; pointer-events: auto; }

  /* Demo banner */
  .demo-banner {
    background: linear-gradient(90deg, rgba(75,44,130,0.25), rgba(79,71,27,0.25));
    border-bottom: 1px solid rgba(211,187,255,0.1);
  }

  /* Floating help button */
  .help-fab {
    position: fixed; bottom: 24px; left: 24px; z-index: 90;
    width: 48px; height: 48px; border-radius: 50%;
    background: #282934;
    border: 1px solid rgba(74, 69, 81, 0.4);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .help-fab:hover { background: #32343f; border-color: rgba(74, 69, 81, 0.6); transform: scale(1.05); }

  /* Contextual hint chip */
  .hint-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 20px;
    background: rgba(50, 52, 63, 0.5); border: 1px solid rgba(74, 69, 81, 0.3);
    font-size: 11px; color: #cbc4d2; cursor: pointer; transition: all 0.2s;
  }
  .hint-chip:hover { background: rgba(50, 52, 63, 0.8); border-color: rgba(74, 69, 81, 0.5); }
  .hint-chip .material-symbols-outlined { font-size: 14px; }

  /* Leaflet integration fixes */
  #leaflet-map {
    z-index: 1;
  }
  #leaflet-map .leaflet-pane { z-index: auto; }
  #leaflet-map .leaflet-tile-pane { z-index: 1; }
  #leaflet-map .leaflet-overlay-pane { z-index: 2; }
  #leaflet-map .leaflet-shadow-pane { z-index: 3; }
  #leaflet-map .leaflet-marker-pane { z-index: 4; }
  #leaflet-map .leaflet-tooltip-pane { z-index: 5; }
  #leaflet-map .leaflet-popup-pane { z-index: 6; }
  #leaflet-map .leaflet-control { z-index: 10; }
  .leaflet-map-cosmic::after { z-index: 7 !important; }

  /* Leaflet attribution dark theme */
  .leaflet-control-attribution {
    background: rgba(17,19,29,0.7) !important;
    color: rgba(149,142,156,0.6) !important;
    font-size: 9px !important;
    backdrop-filter: blur(4px);
  }
  .leaflet-control-attribution a {
    color: rgba(211,187,255,0.5) !important;
  }

  /* Panel — bottom sheet on small screens (handled in responsive section below) */

  /* Sidebar z-index above map but below tour */
  #sidebar { z-index: 100 !important; }

  /* Help FAB above map */
  .help-fab { z-index: 100 !important; }

  /* Share FAB — stacked above help FAB, respects sidebar on lg */
  .share-fab {
    position: fixed; bottom: 80px; left: 24px; z-index: 100;
    width: 48px; height: 48px; border-radius: 50%;
    background: #282934;
    border: 1px solid rgba(74, 69, 81, 0.4);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  @media (min-width: 1024px) {
    .share-fab { left: 304px; bottom: 24px; }
  }
  .share-fab:hover { background: #32343f; border-color: rgba(74, 69, 81, 0.6); transform: scale(1.05); }

  /* Share popup */
  .share-popup {
    position: fixed; bottom: 120px; left: 24px; z-index: 110;
    width: 240px; padding: 20px;
    background: #1d1f2a;
    border: 1px solid rgba(74, 69, 81, 0.4); border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    animation: stepIn 0.2s ease forwards;
  }
  @media (min-width: 1024px) {
    .share-popup {
      left: 16px; bottom: 160px; width: 256px;
    }
  }
  @media (max-width: 1024px) {
    .share-popup {
      left: 50%; transform: translateX(-50%); bottom: 140px;
    }
  }

  /* Toast notification */
  .share-toast {
    position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 120;
    padding: 10px 20px; border-radius: 10px;
    background: #282934;
    border: 1px solid rgba(74, 69, 81, 0.4);
    color: #e1e1f0; font-size: 13px; font-weight: 500;
    animation: stepIn 0.2s ease forwards;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }

  /* My Travels scrollbar */
  #my-travels-container::-webkit-scrollbar { height: 4px; }
  #my-travels-container::-webkit-scrollbar-track { background: transparent; }
  #my-travels-container::-webkit-scrollbar-thumb { background: rgba(74, 69, 81, 0.3); border-radius: 2px; }
  #my-travels-container::-webkit-scrollbar-thumb:hover { background: rgba(74, 69, 81, 0.6); }

  /* Timezone selector */
  .tz-select {
    appearance: none; -webkit-appearance: none;
    background: transparent; border: none; color: #e1e1f0;
    font-family: 'Manrope', sans-serif; font-size: 14px;
    width: 100%; padding: 12px 0; outline: none; cursor: pointer;
  }
  .tz-select option { background: #1d1f2a; color: #e1e1f0; }

  /* Accuracy mode indicator */
  .accuracy-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 20px; font-size: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase; letter-spacing: 0.1em;
  }

  /* City autocomplete dropdown */
  .city-autocomplete {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 300;
    max-height: 320px; overflow-y: auto;
    background: #1d1f2a;
    border: 1px solid rgba(74, 69, 81, 0.5); border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    display: none;
  }
  .city-autocomplete.visible { display: block; animation: stepIn 0.15s ease forwards; }
  .city-autocomplete-item {
    padding: 10px 16px; cursor: pointer;
    border-bottom: 1px solid rgba(74, 69, 81, 0.2);
    transition: background 0.15s;
    font-family: 'Manrope', sans-serif; font-size: 14px;
    color: #e1e1f0;
  }
  .city-autocomplete-item:last-child { border-bottom: none; }
  .city-autocomplete-item:hover, .city-autocomplete-item.active {
    background: rgba(75, 44, 130, 0.3);
  }
  .city-autocomplete-item .city-name { color: #d3bbff; font-weight: 600; }
  .city-autocomplete-item .city-coords {
    color: #958e9c; font-size: 12px; font-family: 'Plus Jakarta Sans', monospace;
  }
  .city-autocomplete-loading {
    padding: 14px 16px; color: #958e9c; font-size: 13px;
    display: flex; align-items: center; gap: 8px;
  }
  .city-autocomplete-loading::before {
    content: ''; width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid rgba(211,187,255,0.2); border-top-color: #d3bbff;
    animation: spin 0.6s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── Daily Transit ── */
  .transit-ring-anim {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .aspect-harmony {
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: #2DD4BF;
  }
  .aspect-tension {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.4);
    color: #FF4444;
  }
  .aspect-major {
    background: rgba(211, 187, 255, 0.15);
    border: 1px solid rgba(211, 187, 255, 0.4);
    color: #d3bbff;
  }
  /* ── Sky Condition Cards ── */
  .sky-condition-card { min-height: 220px; }

  .retro-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(158, 158, 158, 0.12);
    border: 1px solid rgba(158, 158, 158, 0.3);
    font-size: 13px; color: #cbc4d2;
    transition: all 0.2s;
  }
  .retro-badge:hover { background: rgba(158, 158, 158, 0.2); }
  .retro-planet-row + .retro-planet-row { margin-top: 8px; }

  /* All-planets-direct badge */
  .all-direct-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.35);
    font-size: 13px; font-weight: 500;
    color: #2DD4BF;
  }

  /* Ingress arrow */
  .ingress-arrow {
    color: #d3bbff; font-weight: 600;
    margin: 0 2px;
  }
  .ingress-row + .ingress-row {
    padding-top: 8px;
    border-top: 1px solid rgba(74, 69, 81, 0.15);
  }

  /* Lunar phase emphasis */
  .lunar-glow {
    /* no glow — rely on scale/color */
  }

  /* Lunar arc strip */
  .lunar-arc {
    display: flex; justify-content: center; gap: 6px;
    padding: 8px 0 2px;
  }
  .lunar-arc-phase {
    font-size: 16px; line-height: 1;
    transition: transform 0.2s;
  }
  .lunar-arc-active {
    transform: scale(1.35);
  }
  .aspect-card {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 16px;
    background: rgba(29, 31, 42, 0.6);
    border: 1px solid rgba(74, 69, 81, 0.2);
    transition: all 0.2s;
  }
  .aspect-card:hover { border-color: rgba(211, 187, 255, 0.3); background: rgba(29, 31, 42, 0.8); }

  /* ── Transit Narrative Card ── */
  .transit-narrative-card {
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
    background: rgba(25, 27, 38, 0.8);
    border: 1px solid rgba(74, 69, 81, 0.25);
    transition: border-color 0.3s;
  }
  .transit-narrative-card:hover { border-color: rgba(74, 69, 81, 0.5); }

  /* ── Star Rating ── */
  .transit-star { font-size: 1.5rem; transition: color 0.2s; }
  .star-filled { color: #FFD700; }
  .star-empty { color: rgba(74, 69, 81, 0.5); }

  /* ── Life Area Tags ── */
  .transit-life-tag {
    display: inline-flex; align-items: center;
    padding: 4px 14px; border-radius: 20px;
    font-size: 13px; font-weight: 500;
    transition: all 0.2s;
  }
  .transit-life-tag--positive { background: rgba(45, 212, 191, 0.15); border: 1px solid rgba(45, 212, 191, 0.4); color: #2DD4BF; }
  .transit-life-tag--positive-mild { background: rgba(45, 212, 191, 0.08); border: 1px solid rgba(45, 212, 191, 0.25); color: #5EECC6; }
  .transit-life-tag--neutral { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); color: #FFD700; }
  .transit-life-tag--negative { background: rgba(255, 68, 68, 0.12); border: 1px solid rgba(255, 68, 68, 0.35); color: #FF6666; }

  /* ── Cosmic Details Disclosure ── */
  .cosmic-details { border-radius: 2rem; }
  .cosmic-details-summary {
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    background: rgba(29, 31, 42, 0.4);
    border: 1px solid rgba(74, 69, 81, 0.2);
    font-size: 0.9rem; font-weight: 500;
    color: #cbc4d2;
    list-style: none;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .cosmic-details-summary::-webkit-details-marker { display: none; }
  .cosmic-details-summary::before { content: '▸'; transition: transform 0.2s; display: inline-block; }
  .cosmic-details[open] > .cosmic-details-summary::before { transform: rotate(90deg); }
  .cosmic-details-summary:hover { background: rgba(29, 31, 42, 0.7); border-color: rgba(211, 187, 255, 0.2); }

  /* ── Expandable Category Cards ── */
  .category-card-expandable {
    padding: 1.5rem;
    border-radius: 2rem;
    background: rgba(29, 31, 42, 0.4);
    border: 1px solid rgba(74, 69, 81, 0.15);
    cursor: pointer;
    transition: all 0.25s;
  }
  .category-card-expandable:hover { border-color: rgba(211, 187, 255, 0.25); background: rgba(29, 31, 42, 0.6); }
  .category-card-featured {
    background: rgba(25, 27, 38, 0.6);
    border-color: rgba(212, 199, 143, 0.15);
    padding: 1.75rem;
  }
  .category-card-featured:hover { border-color: rgba(212, 199, 143, 0.3); }
  .category-card-compact {
    background: transparent;
    border-style: dashed;
    border-color: rgba(74, 69, 81, 0.2);
    padding: 1.25rem;
  }
  .category-card-compact:hover { background: rgba(29, 31, 42, 0.3); border-style: solid; }
  .category-card-expandable .expand-icon { transition: transform 0.2s; }
  .category-detail { animation: slideDown 0.25s ease-out; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

  /* ── Location Detail Page ── */
  .text-gradient {
    color: #d4c78f;
  }
  .celestial-glow {
    /* removed drop-shadow glow */
  }

  /* ── Subscription & Paywall ── */
  .content-gated {
    position: relative;
    overflow: hidden;
  }
  .content-gated::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #11131d);
    pointer-events: none;
  }
  .paywall-lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .paywall-lock-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(212, 199, 143, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: #d4c78f;
  }
  .paywall-blur {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
  }
  .upgrade-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(212, 199, 143, 0.12);
    color: #d4c78f;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
  }
  .upgrade-badge:hover {
    background: rgba(212, 199, 143, 0.2);
  }
  /* Paywall overlay (fullscreen modal) */
  .paywall-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(17, 19, 29, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .paywall-card {
    background: #1d1f2a;
    border: 1px solid rgba(212, 199, 143, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 28rem;
    width: 100%;
    text-align: center;
  }
  /* Pricing card highlight */
  .pricing-card {
    background: #1d1f2a;
    border: 1px solid rgba(74, 69, 81, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .pricing-card:hover {
    border-color: rgba(212, 199, 143, 0.25);
  }
  .pricing-card--featured {
    border-color: rgba(212, 199, 143, 0.3);
    position: relative;
  }
  /* ── Auth Modal & Avatar ── */
  .auth-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
  }
  .auth-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .auth-input {
    transition: border-color 0.2s;
  }
  .auth-input:focus {
    border-color: rgba(212, 199, 143, 0.5);
  }
  #auth-modal .paywall-card {
    max-width: 26rem;
  }

  .pricing-card--featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 199, 143, 0.3), rgba(211, 187, 255, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  /* ══════════════════════════════════════════════════ */
  /* RESPONSIVE ADAPTATIONS                            */
  /* ══════════════════════════════════════════════════ */

  /* ── Safe area handling for notched devices ── */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    #topnav {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
    }
    .help-fab {
      bottom: max(24px, calc(24px + env(safe-area-inset-bottom)));
      left: max(24px, calc(24px + env(safe-area-inset-left)));
    }
    .share-fab {
      bottom: max(80px, calc(80px + env(safe-area-inset-bottom)));
      left: max(24px, calc(24px + env(safe-area-inset-left)));
    }
    #mobile-filter-btn {
      bottom: max(96px, calc(96px + env(safe-area-inset-bottom)));
    }
  }

  /* ── Small screens (< 640px) ── */
  @media (max-width: 639px) {
    /* Map page: adjust for smaller nav (h-16 = 4rem) */
    #page-map > main {
      height: calc(100vh - 4rem) !important;
      margin-top: 4rem !important;
    }

    /* Transit narrative card: tighter padding on mobile */
    .transit-narrative-card {
      padding: 1.25rem 1.5rem;
    }

    /* City autocomplete items: larger touch targets */
    .city-autocomplete-item {
      padding: 14px 16px;
      min-height: 44px;
    }

    /* Aspect cards: stack better on narrow screens */
    .aspect-card {
      padding: 10px 12px;
      gap: 8px;
    }

    /* Pricing cards: reduce inner padding */
    .pricing-card {
      padding: 1.25rem;
    }

    /* Paywall card: reduce padding */
    .paywall-card {
      padding: 1.5rem;
    }

    /* Summary asymmetric grid: single column earlier */
    .asymmetric-grid-summary {
      grid-template-columns: 1fr;
    }

    /* Sky condition cards: reduce min-height */
    .sky-condition-card {
      min-height: 180px;
    }
  }

  /* ── Medium+ screens: map page uses standard 5rem nav ── */
  @media (min-width: 640px) {
    #page-map > main {
      height: calc(100vh - 5rem) !important;
      margin-top: 5rem !important;
    }
  }

  /* ── City panel: improved mobile bottom sheet ── */
  @media (max-width: 768px) {
    #city-panel {
      left: 4px; right: 4px; top: auto; bottom: 0;
      width: auto; height: 50vh;
      border-radius: 1.5rem 1.5rem 0 0;
      padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
  }

  /* ── Coarse pointer devices (touch): larger tap targets ── */
  @media (pointer: coarse) {
    .city-autocomplete-item {
      padding: 14px 16px;
      min-height: 48px;
    }
    .nav-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
  }
