/* ============================================================================
   Rentie — rentie-desktop.css   "Kinetic Velocity" desktop layer
   ----------------------------------------------------------------------------
   ONE desktop skin for every customer-facing page: the landing page, the
   search results (/shops/listing.html) and a shop's own page
   (/shops/[slug].html). Phones and tablets under 900px never load a single
   rule from the media blocks below — they keep the 430px app column each
   page already ships.

   Loaded LAST on every page that uses it, after rentie-ui.css, so the few
   rules that must beat that file's !important radius/shadow can do so.

   Rules that name a page-specific element (#heroSection, .shop-banner,
   .v-card) simply do not match on pages without it, which is why one file
   can dress all three without a per-page bundle.
   ========================================================================== */

/* ═══ LANDING RICHNESS (2026-08-22) ═══
   Base rules for the new pieces (trust strip, how-it-works, the
   list-your-shop card, desktop hero art/lead/login). Phones: the trust
   strip, hero art, lead line and header login stay hidden — the fold
   stays short. How-it-works and the shop CTA card show everywhere. */
.hero-lead, .hero-visual, .hero-cta, .desk-login, .trust-strip,
.how-aside, .foot-brand, .sec-eyebrow, .ht-lg { display: none; }
.how-it-works { margin-top: 8px; }
.how-grid { display: flex; flex-direction: column; gap: 10px; }
.how-step { display: flex; align-items: flex-start; gap: 12px; background: var(--surface); border-radius: 16px; padding: 14px; box-shadow: var(--elev-1); }
.how-n { width: 28px; height: 28px; flex-shrink: 0; border-radius: 999px; background: var(--crimson); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.how-step b { display: block; font-size: 14px; font-weight: 800; line-height: 1.2; margin-bottom: 3px; }
.how-step div > span { font-size: 12.5px; font-weight: 600; color: var(--tertiary); line-height: 1.5; }
/* #app + two classes on purpose: rentie-ui.css paints every card with
   `#app .shop-card { background: var(--surface) }` and loads later, so
   anything weaker than this stays white. */
#app .shop-card.shop-card--cta { background: var(--ink); color: #fff; justify-content: flex-start; }
.shop-cta-mark { width: 40px; height: 40px; border-radius: 12px; background: rgba(176,40,41,.28); display: flex; align-items: center; justify-content: center; }
.shop-cta-mark .msym { font-size: 22px; color: #ffb3ad; }
.shop-cta-title { font-size: 15px; font-weight: 800; line-height: 1.2; margin-top: 2px; }
.shop-cta-sub { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.72); line-height: 1.5; }
.shop-card--cta .shop-card-foot { border-top-color: rgba(255,255,255,.14); }
.shop-card--cta .shop-from { color: #fff; }
.shop-card--cta .shop-go { color: #ffb3ad; }

/* ══════════════════════════════════════════════════════════════════
   DESKTOP LANDING — "Kinetic Velocity" (2026-08-28)
   Rebuilt from the Stitch reference: a light blush canvas instead of a
   crimson band, a 1280px fixed grid, tonal layers + ambient shadows in
   place of borders, and an 8/16px rounding rhythm. Phones and tablets
   under 900px keep the 430px app column untouched — this whole block
   is desktop-only, and every image on it is one of ours (the pixel
   scooter, real fleet photos); the reference's stock lifestyle shot is
   replaced by a card that carries the actual document requirements.
   ══════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --kv-bg:      #FFF8F7;   /* blush canvas          */
    --kv-cream:   #F9F7F2;   /* alternating band      */
    --kv-tint:    #FFF0EF;   /* image panels, badges  */
    --kv-tint-2:  #FFE9E6;   /* pressed / hover tint  */
    --kv-ink:     #271816;
    --kv-muted:   #5B403D;
    --kv-line:    #F3E2DF;
    --kv-ok:      #2B8A3E;
    --kv-1: 0 4px 12px rgba(39,24,22,.04);
    --kv-2: 0 12px 28px -12px rgba(39,24,22,.18);
    --kv-3: 0 24px 56px -24px rgba(39,24,22,.28);
    --kv-max: 1280px;
    --kv-pad: max(24px, calc((100vw - var(--kv-max)) / 2 + 24px));
  }

  body { background: var(--kv-bg); color: var(--kv-ink); }
  #app { max-width: none; background: var(--kv-bg); }
  .section { max-width: var(--kv-max); padding: 0 24px; margin: 0 auto 80px; }
  .section-h { font-size: 30px; letter-spacing: -.02em; text-transform: none; color: var(--kv-ink); }
  .sec-eyebrow {
    display: block; font-size: 11px; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--crimson); margin: 0 0 6px;
  }
  .deck-head { align-items: flex-end; margin-bottom: 24px; }
  .see-all {
    font-size: 13px; font-weight: 700; text-transform: none; letter-spacing: 0;
    color: var(--kv-muted); display: inline-flex; align-items: center; gap: 2px;
    transition-property: color, gap; transition-duration: .15s;
  }
  .see-all:hover { color: var(--crimson); gap: 5px; }

  /* ── HEADER ────────────────────────────────────────────────── */
  .shop-strip { display: none; }
  header {
    padding: 14px var(--kv-pad); gap: 24px;
    border-bottom: 1px solid var(--kv-line);
    background: rgba(255,248,247,.88); backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 45;
  }
  .nav-burger { display: none; }
  .brand-logo { height: 34px; width: 34px; border-radius: 9px; }
  .wordmark { font-size: 21px; letter-spacing: -.02em; }
  .desk-nav { display: flex; align-items: center; gap: 2px; margin-left: 26px; }
  .desk-nav a {
    position: relative; font-size: 14px; font-weight: 600; color: var(--kv-muted);
    padding: 8px 14px; border-radius: 8px;
    transition-property: color, background-color; transition-duration: .15s;
  }
  .desk-nav a:hover { color: var(--kv-ink); background: var(--kv-tint); }
  /* Offers rail: same measure as the rest of the page; cards share the
     row instead of scrolling when they fit. */
  .offers-band { max-width: var(--kv-max); margin: 26px auto 0; padding: 0 24px; }
  .offers-rail { overflow: visible; flex-wrap: nowrap; }
  .offer-card { flex: 1 1 0; max-width: 320px; min-height: 104px; padding: 18px 20px; border-radius: 18px; }
  .offer-title { font-size: 16.5px; }

  /* Active state is a 2px rule under the current page's link, not a colour swap. */
  .desk-nav a[aria-current="page"] { color: var(--crimson); }
  .desk-nav a[aria-current="page"]::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 2px; border-radius: 2px; background: var(--crimson);
  }
  .loc-pill {
    border: 1px solid var(--kv-line); background: #fff; border-radius: 999px;
    padding: 8px 14px; font-size: 13px; font-weight: 700; box-shadow: var(--kv-1);
  }
  .desk-login {
    display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px;
    border-radius: 999px; background: var(--kv-ink); color: #fff;
    font-size: 13px; font-weight: 700; white-space: nowrap;
    transition-property: background-color, transform; transition-duration: .15s;
  }
  .desk-login .msym { font-size: 16px; color: #FFB4AC; }
  .desk-login:hover { background: var(--crimson); }
  .desk-login:active { transform: scale(.97); }
  header .icon-btn { border-radius: 999px; }

  /* ── HERO ──────────────────────────────────────────────────── */
  #heroSection {
    position: relative; max-width: none; margin: 0 0 96px; padding: 64px 0 0;
    background:
      radial-gradient(1100px 460px at 78% 8%, #FFE9E6 0%, rgba(255,233,230,0) 62%),
      var(--kv-bg);
  }
  #heroSection > * { max-width: var(--kv-max); margin: 0 auto; padding: 0 24px; }
  #heroSection .hero-plain {
    display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px;
  }
  #heroSection .hero-kicker {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--kv-tint-2); color: var(--crimson);
    padding: 7px 15px 7px 12px; border-radius: 999px;
    font-size: 11px; letter-spacing: .14em; margin-bottom: 20px;
  }
  #heroSection .hero-kicker::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--crimson);
  }
  .ht-sm { display: none; }
  .ht-lg { display: block; }
  #heroSection .hero-title {
    font-size: clamp(38px, 4vw, 52px); line-height: 1.06; letter-spacing: -.03em; color: var(--kv-ink);
  }
  .hero-lead {
    display: block; font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--kv-muted);
    max-width: 46ch; margin: 18px 0 0; text-wrap: pretty;
  }
  .hero-cta { display: flex; gap: 12px; margin-top: 28px; }
  .hero-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 52px; padding: 0 26px; border-radius: 999px; cursor: pointer;
    font-family: inherit; font-size: 14.5px; font-weight: 700; white-space: nowrap;
    transition-property: transform, box-shadow, background-color, color;
    transition-duration: .15s; transition-timing-function: cubic-bezier(.2,0,0,1);
  }
  .hero-btn .msym { font-size: 18px; }
  .hero-btn--fill { background: var(--crimson); color: #fff; border: none; box-shadow: 0 10px 22px -10px rgba(176,40,41,.7); }
  .hero-btn--fill:hover { background: #971f20; transform: translateY(-1px); box-shadow: 0 14px 26px -10px rgba(176,40,41,.75); }
  .hero-btn--ghost { background: #fff; color: var(--kv-ink); border: 1px solid var(--kv-line); box-shadow: var(--kv-1); }
  .hero-btn--ghost:hover { border-color: var(--crimson); color: var(--crimson); transform: translateY(-1px); }
  .hero-btn:active { transform: scale(.97); }

  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 24px; box-shadow: var(--kv-2);
    padding: 28px; min-height: 300px; justify-self: end; width: 100%;
  }
  .hero-visual img { width: 100%; max-width: 340px; height: auto; display: block; }

  /* Search bar floats over the hero's bottom edge, as in the reference. */
  /* #app-qualified: rentie-ui.css loads after this block and its own
     .search-card radius would otherwise win the tie. */
  #app #heroSection .search-card {
    margin: 44px auto -46px; position: relative; z-index: 3;
    display: grid; grid-template-columns: 1fr 1.15fr 1fr auto;
    align-items: center; gap: 0; padding: 10px;
    background: #fff; border-radius: 18px !important; box-shadow: var(--kv-3) !important;
  }
  #heroSection .sc-row { min-height: 68px; padding: 10px 22px; gap: 14px; border-radius: 12px; }
  #heroSection .sc-row:hover { background: var(--kv-tint); }
  #heroSection .sc-divider { display: none; }
  #heroSection .sc-divider + .sc-row { box-shadow: inset 1px 0 0 var(--kv-line); }
  #heroSection .sc-icon { font-size: 21px; width: 24px; color: var(--crimson); }
  #heroSection .sc-label { font-size: 10px; letter-spacing: .12em; margin-bottom: 3px; color: var(--kv-muted); }
  #heroSection .sc-value { font-size: 16px; font-weight: 700; color: var(--kv-ink); }
  #heroSection .dp-dur-btn { width: 30px; height: 30px; background: var(--kv-tint); }
  #heroSection .dp-dur-btn:hover { background: var(--kv-tint-2); }
  #heroSection .dp-dur strong { font-size: 16px; min-width: 42px; }
  #heroSection .btn-search {
    width: auto; margin: 0 2px 0 12px; padding: 0 30px; height: 60px;
    font-size: 14.5px; letter-spacing: .01em; text-transform: none;
    border-radius: 14px; white-space: nowrap; box-shadow: 0 10px 22px -12px rgba(176,40,41,.8);
  }
  #heroSection #dateHelper { grid-column: 1 / -1; margin: 6px 0 2px; }

  /* ── TRUST STRIP ───────────────────────────────────────────── */
  .trust-strip {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px; margin: 0 auto 96px; padding-top: 78px;
  }
  .trust-item { display: block; text-align: center; background: none; box-shadow: none; padding: 0; }
  .trust-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--kv-tint-2); margin-bottom: 14px;
  }
  .trust-badge .msym { font-size: 24px; color: var(--crimson); }
  .trust-item b { display: block; font-size: 15px; font-weight: 800; margin-bottom: 6px; color: var(--kv-ink); }
  .trust-item div > span {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
    line-height: 1.55; color: var(--kv-muted); display: block; max-width: 28ch; margin: 0 auto;
  }

  /* ── RECOMMENDED — its own cream band ──────────────────────── */
  #recSection {
    max-width: none; padding: 72px 0 76px; margin-bottom: 0;
    background: var(--kv-cream);
    border-top: 1px solid var(--kv-line); border-bottom: 1px solid var(--kv-line);
  }
  #recSection > * { max-width: var(--kv-max); margin-left: auto; margin-right: auto; padding: 0 24px; }
  .offers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  #bikeGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  #bikeGrid:empty, #bikeGrid[style*="display: none"] { display: none; }

  #app div.bike-card {
    position: relative; flex-direction: column; align-items: stretch; gap: 0;
    margin-bottom: 0; padding: 14px;
    background: #fff; border: none !important;
    border-radius: 16px !important; box-shadow: var(--kv-1) !important;
    transition-property: transform, box-shadow; transition-duration: .18s;
    transition-timing-function: cubic-bezier(.2,0,0,1);
  }
  #app div.bike-card:hover { transform: translateY(-3px); box-shadow: var(--kv-2) !important; }
  #app div.bike-card .bike-icon-wrap {
    width: 100%; height: 152px; background: var(--kv-tint);
    border-radius: 12px; margin-bottom: 14px; padding: 10px;
  }
  #app div.bike-card .bike-icon { max-height: 124px; }
  /* The availability chip belongs on the image panel, not beside the name. */
  #app div.bike-card .bike-name-row { flex-direction: column; align-items: flex-start; gap: 0; }
  #app div.bike-card .bike-tag {
    position: absolute; top: 24px; right: 24px;
    background: rgba(43,138,62,.12); color: var(--kv-ok);
    font-size: 10px; padding: 4px 10px; letter-spacing: .02em;
  }
  #app div.bike-card .bike-tag.booked { background: rgba(39,24,22,.08); color: var(--kv-muted); }
  #app div.bike-card .bike-title { font-size: 15px; -webkit-line-clamp: 1; letter-spacing: -.01em; }
  #app div.bike-card .bike-meta-line { font-size: 12px; font-weight: 600; color: var(--kv-muted); margin-top: 5px; }
  #app div.bike-card .bike-meta-line .msym { font-size: 14px; color: var(--kv-muted); }
  #app div.bike-card .bike-price-col {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
    text-align: left; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--kv-line);
  }
  #app div.bike-card .price { display: flex; flex-direction: column; }
  #app div.bike-card .price::before {
    content: "Starting from"; font-size: 9px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--kv-muted); margin-bottom: 3px;
  }
  #app div.bike-card .price .amt { font-size: 21px; letter-spacing: -.02em; }
  #app div.bike-card .price .unit { display: inline; margin: 0 0 0 2px; font-size: 11px; }
  /* "Book now" is drawn on the price row so the whole card stays one tap
     target — the card's own click handler opens the booking sheet. */
  #app div.bike-card .bike-price-col::after {
    content: "Book now"; flex-shrink: 0;
    font-size: 12px; font-weight: 700; color: #fff; background: var(--crimson);
    border-radius: 999px; padding: 9px 16px;
    transition-property: background-color; transition-duration: .15s;
  }
  #app div.bike-card:hover .bike-price-col::after { background: #971f20; }
  .bike-skel { height: 232px; border-radius: 16px; }

  /* ── HOW IT WORKS ──────────────────────────────────────────── */
  .how-it-works { margin-top: 88px; }
  .how-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; margin-top: 28px; }
  .how-grid { flex-direction: column; gap: 8px; }
  .how-step { background: none; box-shadow: none; padding: 14px 0; align-items: flex-start; gap: 18px; }
  .how-n {
    width: 34px; height: 34px; font-size: 14px; flex-shrink: 0;
    background: var(--kv-tint-2); color: var(--crimson);
  }
  .how-step:last-child .how-n { background: var(--crimson); color: #fff; }
  .how-step b { font-size: 17px; margin-bottom: 5px; }
  .how-step div > span { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; }

  .how-aside {
    display: block; background: #fff; border-radius: 20px;
    box-shadow: var(--kv-1); padding: 26px 26px 22px;
  }
  .how-aside__k {
    font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--crimson); margin: 0 0 16px;
  }
  .how-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
  .how-list li { display: flex; gap: 14px; align-items: flex-start; }
  /* The icon is a <span> too, so this MUST stay scoped to the text
     column — a bare `.how-list span` re-fonts the icon and Material
     Symbols renders the ligature name as literal text ("badge"). */
  .how-list .msym { font-family: 'Material Symbols Outlined'; font-size: 21px; color: var(--crimson); flex-shrink: 0; margin-top: 1px; }
  .how-list b { display: block; font-size: 14.5px; font-weight: 800; margin-bottom: 3px; }
  .how-list div span { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.55; color: var(--kv-muted); }
  .how-aside__link {
    display: inline-flex; align-items: center; gap: 3px; margin-top: 22px;
    font-size: 13px; font-weight: 700; color: var(--crimson);
    transition-property: gap; transition-duration: .15s;
  }
  .how-aside__link:hover { gap: 7px; }

  /* ── SHOPS ─────────────────────────────────────────────────── */
  #shopRail.shop-rail {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
    overflow: visible; margin: 0; padding: 0; scroll-snap-type: none;
  }
  #shopRail.shop-rail > .shop-card { width: auto; flex: none; }
  #app a.shop-card {
    border-radius: 16px !important; box-shadow: var(--kv-1) !important; border: none;
    transition-property: transform, box-shadow; transition-duration: .18s;
  }
  #app a.shop-card:hover { transform: translateY(-3px); box-shadow: var(--kv-2) !important; }
  .shop-cta-title { font-size: 17px; }
  #app a.shop-card.shop-card--cta { box-shadow: var(--kv-2) !important; }

  /* ── FOOTER ────────────────────────────────────────────────── */
  .site-foot {
    max-width: none; margin: 96px 0 0; padding: 56px var(--kv-pad) 0;
    background: var(--kv-tint); border-top: 1px solid var(--kv-line);
  }
  .foot-top {
    display: grid; grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 32px; max-width: var(--kv-max); margin: 0 auto;
  }
  .foot-brand { display: block; }
  .foot-brand .brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
  .foot-brand p {
    font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.65;
    color: var(--kv-muted); margin: 0; max-width: 34ch;
  }
  .foot-top .foot-grid { display: contents; }
  /* Pages whose footer has no .foot-top wrapper keep a plain column row. */
  .site-foot > .foot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; max-width: var(--kv-max); margin: 0 auto; }
  .foot-h { font-size: 11px; letter-spacing: .14em; color: var(--kv-ink); }
  .foot-grid a { font-size: 13px; color: var(--kv-muted); }
  .foot-grid a:hover { color: var(--crimson); }
  .foot-note {
    max-width: var(--kv-max); margin: 44px auto 0; padding: 22px 0 40px;
    border-top: 1px solid var(--kv-line);
    font-size: 12.5px; color: var(--kv-muted); text-align: left;
  }
  .foot-note br { display: none; }
  .foot-note a { color: var(--kv-muted); }

  /* Dialogs stay centred on a wide screen. */
  .modal-overlay { align-items: center; }
  .modal-sheet { border-radius: 24px; max-width: 480px; max-height: 86vh; animation: fadeUp .22s cubic-bezier(.2,0,0,1); }
  .ac-overlay { align-items: center; }
  .ac-sheet { border-radius: 24px; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  #cookieBanner { left: auto; right: 24px; transform: none; }
  .state { padding: 64px 16px; }
}

@media (min-width: 900px) and (max-width: 1179px) {
  #bikeGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #shopRail.shop-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-top { grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .how-wrap { gap: 36px; }
  .hero-visual { min-height: 260px; padding: 22px; }
  .trust-strip { gap: 20px; }
}
@media (min-width: 1240px) {
  #heroSection { padding-top: 76px; }
  #heroSection .hero-title { font-size: 58px; }
  .hero-visual { min-height: 340px; padding: 34px; }
  .section-h { font-size: 32px; }
}

/* ══════════════════════════════════════════════════════════════════════
   SHOP PAGE  (/shops/[slug].html)
   Same canvas, grid and card language as the landing page. The banner
   becomes a contained rounded hero with the shop's name over it, and the
   search widget floats at its lower edge exactly as the home hero does.
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Header: back + this shop's brand, then the constant right-hand pair. */
  .head-left { gap: 14px; }
  .brand-shop-name { font-size: 17px; max-width: none; }
  .brand-powered { font-size: 11px; }
  .brand-logo-sm { height: 38px; width: 38px; border-radius: 10px; }

  /* Banner: contained, rounded, taller. Full-bleed at this width reads as
     a stray photo strip; boxed it reads as the shop's own header card. */
  /* rentie-ui.css pins .shop-banner to radius 0 !important (it assumes a
     clipping parent card). Standalone here, so take it back. */
  #app div.shop-banner {
    max-width: var(--kv-max); margin: 28px auto 0; padding: 0;
    height: 300px; border-radius: 22px !important; overflow: hidden;
    box-shadow: var(--kv-2);
  }
  .shop-banner .sb-foot { left: 36px; right: 36px; bottom: 28px; }
  .sb-name { font-size: 40px; letter-spacing: -.03em; }
  .sb-city { font-size: 15px; }
  .sb-demo-icon { font-size: 250px; margin-right: 40px; }

  .tagbar-row { max-width: var(--kv-max); margin: 0 auto; padding: 18px 24px 0; }
  .tagbar-scroll { overflow: visible; flex-wrap: wrap; }
  .open-pill { font-size: 12.5px; padding: 9px 16px; }

  /* The search widget: one horizontal bar, lifted over the banner's edge. */
  #app .search-card {
    display: grid; grid-template-columns: 1fr 1.15fr 1fr auto;
    align-items: center; gap: 0; padding: 10px;
    max-width: calc(var(--kv-max) - 96px); margin: -46px auto 0; position: relative; z-index: 3;
    background: #fff; border-radius: 18px !important; box-shadow: var(--kv-3) !important;
  }
  #app .search-card .sc-row { min-height: 68px; padding: 10px 22px; gap: 14px; border-radius: 12px; }
  #app .search-card .sc-row:hover { background: var(--kv-tint); }
  #app .search-card .sc-divider { display: none; }
  #app .search-card .sc-divider + .sc-row { box-shadow: inset 1px 0 0 var(--kv-line); }
  #app .search-card .sc-icon { font-size: 21px; width: 24px; color: var(--crimson); }
  #app .search-card .sc-label { font-size: 10px; letter-spacing: .12em; margin-bottom: 3px; color: var(--kv-muted); }
  #app .search-card .sc-value { font-size: 16px; font-weight: 700; color: var(--kv-ink); }
  #app .search-card .dp-dur-btn { width: 30px; height: 30px; background: var(--kv-tint); }
  #app .search-card .dp-dur strong { font-size: 16px; min-width: 42px; }
  #app .search-card .btn-search {
    width: auto; margin: 0 2px 0 12px; padding: 0 30px; height: 60px;
    font-size: 14.5px; text-transform: none; border-radius: 14px; white-space: nowrap;
    box-shadow: 0 10px 22px -12px rgba(176,40,41,.8);
  }
  #app .search-card #dateHelper { grid-column: 1 / -1; margin: 6px 0 2px; }

  /* Everything below the fold gets the landing page's rhythm. */
  #mapSection { margin-top: 0; }
  #app .map-card { border-radius: 16px !important; box-shadow: var(--kv-1) !important; }
  .map-embed { height: 380px; }
  .map-foot { padding: 18px 22px; }

  /* The shop page's first section carries the deck; give it the band. */
  .shop-deck-band {
    max-width: none; padding: 64px 0 68px; margin-bottom: 0;
    background: var(--kv-cream);
    border-top: 1px solid var(--kv-line); border-bottom: 1px solid var(--kv-line);
  }
  .shop-deck-band > * { max-width: var(--kv-max); margin-left: auto; margin-right: auto; padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESULTS PAGE  (/shops/listing.html)
   The vehicle-first result list becomes a three-column grid; the filter
   chips and heading sit on one contained row above it.
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  #app .shop-list, #app #resultGrid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px; align-items: start;
  }
  #app .v-card {
    margin-bottom: 0; border: none;
    border-radius: 16px !important; box-shadow: var(--kv-1) !important;
    transition-property: transform, box-shadow; transition-duration: .18s;
    transition-timing-function: cubic-bezier(.2,0,0,1);
  }
  #app .v-card:hover { transform: translateY(-3px); box-shadow: var(--kv-2) !important; }
  .v-img { height: 200px; background: var(--kv-tint); }
  .listing-head { max-width: var(--kv-max); margin: 0 auto; padding: 26px 24px 0; }
  .chip-row { max-width: var(--kv-max); margin: 0 auto; padding: 14px 24px 6px; overflow: visible; flex-wrap: wrap; }
  .results-label { max-width: var(--kv-max); margin: 0 auto; padding: 18px 24px 10px; font-size: 13px; }
  main { max-width: var(--kv-max); margin: 0 auto; padding: 0 24px 40px; }
}
