/*  99Yard — design system.  Dark, premium, AI-forward.
    ===========================================================================
    KYUN DARK
    ---------
    Maalik ko chahiye tha ki dekhte hi lage "yeh AI-enabled platform hai".
    Halka safed card-grid har property site jaisa dikhta hai. Gehra base +
    ek hi jagah se aata glow + kaanch jaisi partein -- yahi aaj ke AI
    product ki bhasha hai, aur photo bhi ispar zyada ubharti hai.

    LAKEER KE TEEN DARJE (maalik ka niyam) — gehre par dobara naapi gayi:
      surface #0e1524 ke against
        --line          ~1.6:1   card ki lakeer
        --line-strong   ~3:1     input ki lakeer
      button apne bharav se hi 2.3:1 se kaafi upar hai.
    Nayi hadd YAHIN badlegi, neeche kahin hex likh kar nahi.

    MOTION
    ------
    Har animation `prefers-reduced-motion` ke peechhe hai. Chamak dikhane ke
    chakkar me kisi ko chakkar nahi aana chahiye.
=========================================================================== */

:root {
  color-scheme: dark;

  --shell:      1220px;
  --shell-form: 540px;

  /* base */
  --bg:         #070b14;
  --bg-2:       #0a0f1c;
  --surface:    #0e1524;
  --surface-2:  #16203a;
  --surface-3:  #1d2947;

  /* lakeerein — upar likha naap */
  --line:        #2a3348;
  --line-strong: #5b6784;

  /* ink */
  --ink:    #e8eef7;
  --ink-2:  #9fb0c9;
  --ink-3:  #6b7d99;

  /* accent */
  --a1: #4f8cff;   /* electric blue */
  --a2: #22d3ee;   /* cyan          */
  --a3: #a78bfa;   /* violet        */
  --brand-a: #f59e0b;
  --brand-b: #1e3a8a;

  --grad:      linear-gradient(120deg, var(--a1), var(--a2));
  --grad-soft: linear-gradient(120deg, rgba(79,140,255,.16), rgba(34,211,238,.10));
  --grad-ai:   linear-gradient(120deg, var(--a3), var(--a2));

  --ok:   #34d399;
  --warn: #fbbf24;

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(0,0,0,.5);
  --sh-2: 0 10px 30px -12px rgba(0,0,0,.7);
  --sh-glow: 0 0 0 1px rgba(79,140,255,.35), 0 12px 38px -14px rgba(79,140,255,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
  font-family: "Segoe UI Variable Display", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  /* Poore page ke peechhe ek halka jaal + do dhundhle gole. Yahi wo "kuch
     zinda hai" wala ehsaas deta hai bina kisi image ke (page hallka rehta). */
  background-image:
    radial-gradient(900px 520px at 12% -6%, rgba(79,140,255,.13), transparent 60%),
    radial-gradient(760px 460px at 92% 4%, rgba(167,139,250,.11), transparent 62%),
    linear-gradient(var(--bg), var(--bg-2));
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell      { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 20px; }
.shell-form { width: 100%; max-width: var(--shell-form); margin: 0 auto; padding: 0 16px; }
@media (max-width: 560px) { .shell { padding: 0 14px; } }

/* ── entrance ─────────────────────────────────────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rise { animation: rise .5s var(--ease) both; }
.d1 { animation-delay: .05s } .d2 { animation-delay: .11s } .d3 { animation-delay: .17s }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ── header ───────────────────────────────────────────────────────────── */
.y-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.y-head-in { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.y-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.y-mark {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--grad); color: #04121f;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; letter-spacing: -.5px;
  box-shadow: 0 6px 18px -8px rgba(79,140,255,.9);
}
.y-word { font-weight: 800; font-size: 17px; letter-spacing: -.4px; }
.y-word em { font-style: normal; color: var(--a2); }

.y-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.y-nav a {
  font-size: 13.5px; font-weight: 600; text-decoration: none; color: var(--ink-2);
  padding: 9px 12px; border-radius: var(--r-sm); transition: .18s var(--ease);
}
.y-nav a:hover { color: var(--ink); background: var(--surface-2); }
.y-nav a.cta {
  color: #04121f; background: var(--grad); font-weight: 700;
  padding: 9px 17px; border-radius: var(--r-pill);
  box-shadow: 0 6px 20px -10px rgba(79,140,255,.95);
}
.y-nav a.cta:hover { color: #04121f; filter: brightness(1.08); }
@media (max-width: 700px) { .y-nav a.hide-sm { display: none; } }

/* ── buttons / inputs ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 14px;
  padding: 12px 20px; border-radius: var(--r);
  border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--ink);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: .18s var(--ease);
}
.btn:hover { background: var(--surface-3); border-color: var(--a1); }
.btn-primary {
  border-color: transparent; color: #04121f; background: var(--grad);
  box-shadow: 0 10px 28px -12px rgba(79,140,255,.9);
}
.btn-primary:hover { filter: brightness(1.08); background: var(--grad); }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: var(--r-sm); }
.btn:disabled { opacity: .42; cursor: not-allowed; }
.btn:disabled:hover { background: var(--surface-2); border-color: var(--line-strong); }

.inp, .sel {
  font: inherit; font-size: 14.5px; width: 100%; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r);
  border: 1px solid var(--line-strong); background: var(--surface);
  transition: .18s var(--ease);
}
.sel {
  appearance: none; padding-right: 34px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239fb0c9' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.inp:focus, .sel:focus {
  outline: none; border-color: var(--a1);
  box-shadow: 0 0 0 3px rgba(79,140,255,.22);
}
.inp::placeholder { color: var(--ink-3); opacity: 1; }
.sel option { background: var(--surface-2); color: var(--ink); }

.chip {
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  cursor: pointer; white-space: nowrap; transition: .18s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--line-strong); }
.chip[aria-pressed="true"] {
  background: var(--grad); border-color: transparent; color: #04121f;
  box-shadow: 0 8px 22px -12px rgba(79,140,255,.95);
}

/* ── AI pill ──────────────────────────────────────────────────────────── */
.ai-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--r-pill);
  color: var(--a2); background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.32);
}
.ai-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--a2); box-shadow: 0 0 10px var(--a2);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

/* ── hero ─────────────────────────────────────────────────────────────── */
.y-hero { position: relative; padding: 62px 0 40px; overflow: hidden; }
.y-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* Halka jaal — perspective ke bina, warna wo 2014 lagta hai. */
  background-image:
    linear-gradient(rgba(79,140,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,140,255,.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(70% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 20%, transparent 75%);
}
.y-hero .shell { position: relative; }
.y-hero h1 {
  margin: 16px 0 12px; font-size: clamp(30px, 5.2vw, 52px); line-height: 1.06;
  font-weight: 800; letter-spacing: -1.6px; max-width: 17ch;
}
.y-hero h1 .g {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.y-hero .sub { margin: 0 0 26px; font-size: clamp(14.5px, 1.6vw, 17px); color: var(--ink-2); max-width: 56ch; }

/* search panel — kaanch ki parat */
.y-search {
  background: rgba(14,21,36,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 16px;
  box-shadow: var(--sh-2);
}
.y-search-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 13px; }
.y-purpose { display: flex; gap: 8px; }
.y-searchrow { display: flex; gap: 10px; }
.y-searchrow .inp { flex: 1 1 auto; font-size: 15.5px; padding: 15px 17px; }
@media (max-width: 620px) {
  .y-searchrow { flex-direction: column; }
  .y-searchrow .btn { width: 100%; padding: 14px; }
}
.y-hints { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; align-items: center; }
.y-hints .lbl { font-size: 12px; color: var(--ink-3); margin-right: 2px; }
.y-hint {
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px dashed var(--line-strong); background: transparent; color: var(--ink-2);
  transition: .18s var(--ease);
}
.y-hint:hover { color: var(--a2); border-color: var(--a2); border-style: solid; }

/* parsed filter -> chips */
.y-parsed { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.y-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(79,140,255,.14); border: 1px solid rgba(79,140,255,.34); color: #bcd4ff;
}

/* ── stat strip ───────────────────────────────────────────────────────── */
.y-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 26px;
}
.y-stat { background: var(--surface); padding: 18px 16px; text-align: center; }
.y-stat b { display: block; font-size: 24px; font-weight: 800; letter-spacing: -.8px; }
.y-stat span { font-size: 11.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .7px; font-weight: 600; }
@media (max-width: 700px) { .y-stats { grid-template-columns: repeat(2, 1fr); } .y-stat b { font-size: 20px; } }

/* ── sections ─────────────────────────────────────────────────────────── */
.y-sec { padding: 52px 0 6px; }
.y-sec-head { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.y-sec h2 { margin: 0 0 4px; font-size: clamp(21px, 2.6vw, 28px); font-weight: 800; letter-spacing: -.8px; }
.y-sec .sub { margin: 0; font-size: 14.5px; color: var(--ink-2); max-width: 62ch; }
.y-sec-head .more { margin-left: auto; }

/* ── grid + property card ─────────────────────────────────────────────── */
.y-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
@media (max-width: 620px) { .y-grid { grid-template-columns: 1fr; gap: 14px; } }

.y-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.y-card:hover { transform: translateY(-4px); border-color: rgba(79,140,255,.55); box-shadow: var(--sh-glow); }

.y-photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(150deg, var(--surface-2), var(--surface-3));
  display: flex; align-items: center; justify-content: center;
}
.y-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.y-card:hover .y-photo img { transform: scale(1.06); }
/* Photo na ho to khaali dhabba nahi -- ek saaf nishaan. */
.y-noimg { display: flex; flex-direction: column; align-items: center; gap: 7px; color: var(--ink-3); }
.y-noimg svg { opacity: .55; }
.y-noimg span { font-size: 11px; letter-spacing: .6px; text-transform: uppercase; font-weight: 700; }

.y-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7,11,20,.86) 0%, rgba(7,11,20,0) 52%);
}
.y-badge {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(7,11,20,.78); border: 1px solid var(--line-strong); color: var(--ink);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.y-badge.rent { color: var(--a2); border-color: rgba(34,211,238,.5); }
.y-badge.sale { color: var(--a1); border-color: rgba(79,140,255,.5); }
.y-count {
  position: absolute; bottom: 11px; right: 11px; z-index: 2;
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--r-sm);
  background: rgba(7,11,20,.72); border: 1px solid var(--line); color: var(--ink-2);
}
.y-priceover {
  position: absolute; left: 13px; bottom: 11px; z-index: 2;
  font-size: 20px; font-weight: 800; letter-spacing: -.6px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.y-priceover small { font-size: 12px; font-weight: 600; color: #cbd8ea; }

.y-body { padding: 14px 15px 15px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.y-title {
  font-size: 15px; font-weight: 700; letter-spacing: -.2px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.y-loc { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 5px; }
.y-facts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.y-fact {
  font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-sm);
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2);
}
.y-foot-row {
  margin-top: auto; padding-top: 11px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-3);
}
.y-ava {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-ai); color: #04121f;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800;
}
.y-foot-row .ago { margin-left: auto; }

/* ── AI feature cards ─────────────────────────────────────────────────── */
.y-feat {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px; overflow: hidden;
  transition: .22s var(--ease);
}
.y-feat:hover { border-color: rgba(167,139,250,.5); transform: translateY(-3px); }
.y-feat::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--grad-ai);
}
.y-feat .ico {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  background: var(--grad-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--a2);
}
.y-feat h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; letter-spacing: -.3px; }
.y-feat p  { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }

/* ── cities ───────────────────────────────────────────────────────────── */
.y-cities { display: flex; flex-wrap: wrap; gap: 9px; }
.y-city {
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 10px 17px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  transition: .18s var(--ease);
}
.y-city:hover { border-color: var(--a1); color: var(--a1); background: var(--surface-2); }
.y-city span { color: var(--ink-3); font-weight: 500; margin-left: 4px; }

/* ── CTA band ─────────────────────────────────────────────────────────── */
.y-band {
  margin-top: 56px; border: 1px solid var(--line); border-radius: var(--r-xl);
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(79,140,255,.20), transparent 62%),
    radial-gradient(600px 300px at 90% 100%, rgba(167,139,250,.16), transparent 60%),
    var(--surface);
  padding: 36px 30px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.y-band h2 { margin: 0 0 6px; font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -.7px; }
.y-band p { margin: 0; color: var(--ink-2); font-size: 14.5px; max-width: 54ch; }
.y-band .acts { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 760px) { .y-band { padding: 26px 20px; } .y-band .acts { margin-left: 0; width: 100%; } .y-band .acts .btn { flex: 1; } }

/* ── filters (search page) ────────────────────────────────────────────── */
.y-filters {
  position: sticky; top: 61px; z-index: 30;
  background: rgba(7,11,20,.86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.y-filterrow { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.y-filterrow::-webkit-scrollbar { display: none; }
.y-filterrow > * { flex: 0 0 auto; }
.y-filterrow .sel { width: auto; min-width: 136px; padding: 10px 32px 10px 13px; font-size: 13.5px; }

/* ── states ───────────────────────────────────────────────────────────── */
.y-note {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); padding: 26px 22px; text-align: center; color: var(--ink-2); font-size: 14px;
}
.y-note strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.y-warn {
  text-align: left; padding: 14px 16px; font-size: 13.5px;
  border-color: rgba(251,191,36,.4); background: rgba(251,191,36,.07); color: #f5d99b;
  display: flex; gap: 10px; align-items: flex-start;
}
.y-warn::before { content: "!"; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--warn); color: #23180a; font-weight: 900; font-size: 12px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/*  Kiraye wali soochna -- 99Lease ka rang (violet), taaki wo "kuch galat
    hua" wale peele warning se alag dikhe. Yeh galti nahi hai, raasta hai. */
.y-lease {
  border-color: rgba(167,139,250,.42);
  background:
    radial-gradient(420px 180px at 50% 0%, rgba(167,139,250,.14), transparent 70%),
    var(--surface);
}
.y-lease span { display: block; margin-top: 2px; }
.y-lease b { color: var(--a3); }
.y-lease .soon {
  margin-top: 13px; font-size: 12.5px; font-weight: 700; letter-spacing: .3px;
  color: var(--a3);
}

@keyframes shim { 0% { background-position: 100% 0 } 100% { background-position: -100% 0 } }
.y-sk {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 37%, var(--surface) 63%);
  background-size: 400% 100%; animation: shim 1.5s ease infinite; border-radius: var(--r-sm);
}

/* ── footer ───────────────────────────────────────────────────────────── */
.y-foot {
  margin-top: 64px; border-top: 1px solid var(--line);
  background: rgba(10,15,28,.7); padding: 30px 0; font-size: 13px; color: var(--ink-3);
}
.y-foot-in { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.y-foot a { color: var(--ink-2); text-decoration: none; }
.y-foot a:hover { color: var(--a2); }
.y-foot .sp { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }


/* ── shortlist ka dil (card par) ──────────────────────────────────────── */
.y-save {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(7, 11, 20, .62);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: .18s var(--ease);
}
/* Bina bhara hua dil = "abhi saved nahi". Bhara hua = saved. Sirf rang
   badalne se colour-blind ko farq nahi dikhta, isliye bharav bhi badalta. */
.y-save svg { fill: none; stroke: var(--ink); stroke-width: 1.8; }
.y-save:hover { border-color: #f472b6; }
.y-save:hover svg { stroke: #f472b6; }
.y-save.on { background: rgba(244, 114, 182, .18); border-color: #f472b6; }
.y-save.on svg { fill: #f472b6; stroke: #f472b6; }

/* Header par shortlist ki ginti */
.y-nav .count {
  display: inline-block; min-width: 18px; padding: 0 5px; margin-left: 6px;
  border-radius: 999px; background: var(--a1); color: #04121f;
  font-size: 11px; font-weight: 800; text-align: center; line-height: 18px;
}


/* ── compare table (shortlist) ────────────────────────────────────────── */
/* Chaudi table mobile par page ko todti hai. Isliye wo APNE andar scroll
   karti hai -- page kabhi baayen-daayen nahi khiskta. */
.y-tablewrap {
  overflow-x: auto; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: var(--surface);
}
.y-table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 13.5px; }
.y-table th, .y-table td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.y-table thead th {
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--surface-2); position: sticky; top: 0;
}
.y-table thead th a { color: var(--a1); text-decoration: none; }
.y-table thead th a:hover { text-decoration: underline; }
.y-table tbody th {
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap; width: 1%;
}
.y-table tbody td { color: var(--ink); font-weight: 600; }
.y-table tr:last-child th, .y-table tr:last-child td { border-bottom: 0; }


/* Header ka Save button jab saved ho */
.btn.on { border-color: #f472b6; color: #f9a8d4; background: rgba(244, 114, 182, .12); }
.btn.on:hover { border-color: #f472b6; background: rgba(244, 114, 182, .2); }

/* ── breadcrumb (city page) ───────────────────────────────────────────── */
.y-crumb { padding: 18px 0 4px; font-size: 12.5px; color: var(--ink-3); }
.y-crumb a { color: var(--ink-2); text-decoration: none; }
.y-crumb a:hover { color: var(--a2); }
.y-crumb span { margin: 0 6px; }
.y-crumb span:last-child { margin: 0; color: var(--ink); font-weight: 600; }
