/* Square Yards–style chrome for 59Realtors. Loaded after site.css. */

:root {
  --header: #111;
  --sy-yellow: #FFD100;
  --sy-yellow-2: #F5C518;
  --sy-heart: #F5A524;
}

body { padding-bottom: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0;
  margin: 0;
  background: var(--header);
  color: #fff;
  overflow: visible;
}
.header-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}
.header-actions { margin-left: auto; gap: 8px; flex-shrink: 0; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  padding: 0 4px 0 9px;
  color: #eee;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.site-header .brand-mark {
  background: #fff;
  color: #111;
}
.site-header .brand-name { color: #fff; letter-spacing: 0.14em; }

.nav-desktop {
  display: flex;
  align-items: stretch;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.nav-item { position: relative; }
.nav-item:hover::after,
.nav-item.is-open::after,
.nav-item.open::after,
.nav-item.is-pinned::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 22px;
  width: min(780px, 86vw);
  z-index: 239;
}
.nav-trigger {
  display: flex;
  align-items: center;
  height: 44px;
  padding-right: 4px;
  border-radius: 8px;
}
.nav-item:hover > .nav-trigger,
.nav-item.is-open > .nav-trigger,
.nav-item.open > .nav-trigger,
.nav-item.is-pinned > .nav-trigger {
  background: rgba(255,255,255,.08);
}
.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item.is-open .nav-link,
.nav-item.open .nav-link {
  color: var(--sy-yellow);
}
.nav-caret { font-size: 9px; opacity: 0.7; }
.nav-drop {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.city-chip .nav-drop {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.nav-item:hover .nav-drop,
.nav-item.is-open .nav-drop,
.nav-item.open .nav-drop,
.nav-item.is-pinned .nav-drop {
  background: var(--sy-yellow);
  color: #111;
  border-color: var(--sy-yellow);
}

.site-header .brand {
  position: relative;
  z-index: 260;
  pointer-events: auto;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  padding-right: 8px;
}
.nav-chevron {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: transform .18s ease;
  flex-shrink: 0;
  display: block;
}
.nav-item:hover .nav-chevron,
.nav-item.is-open .nav-chevron,
.nav-item.open .nav-chevron,
.nav-item.is-pinned .nav-chevron {
  transform: rotate(180deg);
}
.nav-caret { display: none; }

.mega {
  display: grid;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: min(780px, 86vw);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  padding: 22px 20px 18px;
  grid-template-columns: minmax(180px, 0.9fr) repeat(2, minmax(160px, 1fr));
  gap: 16px 24px;
  z-index: 240;
  transition: opacity .16s ease, visibility .16s ease;
}
.mega::before,
.city-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 24px;
}
.mega.mega-2 { grid-template-columns: repeat(2, minmax(160px, 1fr)); min-width: min(440px, 86vw); }
.mega.mega-end { left: auto; right: 0; }
.nav-item:hover > .mega,
.nav-item.is-open > .mega,
.nav-item.open > .mega,
.nav-item.is-pinned > .mega,
.nav-item:focus-within > .mega {
  display: grid;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mega h5 {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin: 10px 0 8px;
}
.mega h5:first-child { margin-top: 0; }
.mega a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  font-size: 13px;
  color: #222;
}
.mega a:hover { color: #000; background: #fff6c2; }
.mega-feature a.mega-cta:hover { background: var(--sy-yellow) !important; color: #111 !important; }
.mega-feature a.mega-cta.ghost:hover { background: rgba(255,255,255,.12) !important; color: #fff !important; }
.mega .count { color: #999; font-size: 12px; }
.soon-badge {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--sy-yellow);
  color: #111;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.free-badge {
  background: #1f6b4a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 6px;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  max-width: 160px;
}
.city-chip svg { flex-shrink: 0; }
.city-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 300px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  padding: 10px 8px 8px;
  z-index: 240;
  max-height: 420px;
  overflow: auto;
  transition: opacity .16s ease, visibility .16s ease;
}
.nav-item:hover > .city-menu,
.nav-item:focus-within > .city-menu,
.nav-item.is-open > .city-menu,
.nav-item.open > .city-menu,
.nav-item.is-pinned > .city-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.city-menu a, .city-menu button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #222;
  background: none;
  text-align: left;
}
.city-menu a:hover, .city-menu button:hover { background: #f4f4f4; }

.header-actions { margin-left: auto; gap: 8px; }
.header-actions .btn { height: 36px; }
.btn-yellow,
a.btn-yellow {
  background: var(--sy-yellow) !important;
  color: #111 !important;
  border: 0 !important;
  font-weight: 700;
  box-shadow: none !important;
}
.btn-yellow:hover { filter: brightness(0.96); transform: none; }
.btn-yellow-line,
a.btn-yellow-line {
  background: transparent !important;
  color: var(--sy-yellow) !important;
  border: 1px solid var(--sy-yellow) !important;
  font-weight: 700;
}
.header-heart {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
}
.header-heart:hover { background: rgba(255,255,255,.08); color: var(--sy-heart); }
.header-heart .count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--sy-yellow);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.header-heart .count.is-empty { display: none; }
.header-heart.is-flash {
  background: rgba(255,255,255,.16);
  color: #e11d48;
  box-shadow:
    0 0 0 6px rgba(255,209,0,.4),
    0 0 18px rgba(255,107,139,.5);
  animation: sl-icon-flash 1.4s ease;
}
#shortlistTab.is-flash {
  color: #e11d48;
  animation: sl-icon-flash 1.4s ease;
}

.avatar-wrap { position: relative; }
.avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3d6bff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  padding: 0;
}
.avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 280px;
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  padding: 14px 0 8px;
  z-index: 240;
}
.avatar-wrap.open .avatar-panel,
.avatar-wrap.is-open .avatar-panel,
.avatar-wrap:hover .avatar-panel { display: block; }
.avatar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 12px;
  border-bottom: 1px solid #eee;
}
.avatar-head .avatar-btn { width: 44px; height: 44px; font-size: 16px; }
.avatar-head strong { display: block; font-size: 14px; }
.avatar-edit { font-size: 12px; color: #666; }
.avatar-panel a, .avatar-panel button.row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 16px;
  font-size: 13.5px;
  color: #222;
  background: none;
  text-align: left;
}
.avatar-panel a:hover, .avatar-panel button.row:hover { background: #f6f6f6; }
.avatar-panel .soon-badge { margin-left: auto; }

.menu-btn { color: #fff; }
.site-header .nav { display: none; }

/* Shortlist modal */
.sl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 570;
  background: rgba(10,10,10,.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sl-modal.open { display: flex; }
.sl-sheet {
  width: min(520px, 100%);
  max-height: min(86vh, 720px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.sl-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 10px;
}
.sl-head .heart-ico { color: var(--sy-heart); }
.sl-head h3 { font-size: 18px; }
.sl-head p { font-size: 13px; color: #777; }
.sl-close { margin-left: auto; font-size: 22px; color: #888; }
.sl-tabs { display: flex; gap: 18px; padding: 0 18px; border-bottom: 1px solid #eee; }
.sl-tabs button {
  padding: 10px 0;
  font-weight: 700;
  font-size: 14px;
  color: #888;
  border-bottom: 2px solid transparent;
}
.sl-tabs button.on { color: #111; border-bottom-color: var(--sy-yellow); }
.sl-body { flex: 1; overflow: auto; padding: 16px 18px; min-height: 220px; }
.sl-empty { text-align: center; padding: 28px 12px; color: #666; }
.sl-empty svg { margin: 0 auto 12px; color: #cfcfcf; }
.sl-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
}
.sl-row img { width: 72px; height: 56px; object-fit: cover; border-radius: 8px; }
.sl-foot {
  display: flex;
  gap: 10px;
  padding: 12px 18px 16px;
  border-top: 1px solid #eee;
}
.sl-foot .btn { flex: 1; }

.toast-sl {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 500;
  display: none;
}
.toast-sl.show { display: block; }
@media (max-width: 720px) {
  .toast-sl { bottom: 72px; }
}

.sl-popper {
  position: fixed;
  inset: 0;
  z-index: 560;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sl-popper.on { display: flex; }
.sl-popper-burst {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sl-popper-burst i {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 8px;
  height: 14px;
  margin: 0;
  border-radius: 2px;
  background: var(--sy-yellow);
  transform: translate(-50%, -50%) scale(.3);
  animation: sl-confetti 1.15s cubic-bezier(.12,.72,.22,1) forwards;
}
.sl-popper-burst i.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sl-popper-burst i.ribbon {
  width: 4px;
  height: 18px;
  border-radius: 2px;
}
.sl-popper-card {
  position: relative;
  z-index: 1;
  min-width: 210px;
  padding: 18px 22px 16px;
  border-radius: 20px;
  background: #111;
  color: #fff;
  text-align: center;
  box-shadow:
    0 18px 50px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,228,240,.55),
    0 0 28px rgba(255,176,204,.5);
  animation: sl-pop-in .48s cubic-bezier(.2,1.15,.3,1);
}
.sl-popper-trophy {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  color: #d4a017;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 4px #ffe4f0,
    0 0 18px rgba(255,176,204,.75);
  animation: sl-trophy-bounce .7s ease;
}
.sl-popper-card strong { display: block; font-size: 16px; font-weight: 800; }
.sl-popper-card span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}
@keyframes sl-confetti {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(.35); opacity: 1; }
  72% { opacity: 1; }
  100% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r)) scale(1);
    opacity: 0;
  }
}
@keyframes sl-pop-in {
  0% { transform: scale(.72); opacity: 0; }
  70% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes sl-trophy-bounce {
  0% { transform: scale(.4) rotate(-18deg); }
  55% { transform: scale(1.14) rotate(8deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes sl-icon-flash {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(1.28); }
  36% { transform: scale(.96); }
  54% { transform: scale(1.18); }
}

.heart-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.heart-listed {
  display: none;
  position: absolute;
  right: calc(100% + 8px);
  top: 7px;
  white-space: nowrap;
  background: rgba(17, 17, 17, .8);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}
.heart-wrap.on .heart-listed { display: block; }
.heart-tick {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  place-items: center;
  box-shadow: 0 2px 8px rgba(22, 163, 74, .4);
}
.heart-wrap.on .heart-tick { display: grid; }
.heart-btn {
  position: relative;
  top: auto;
  right: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #6b7280;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  overflow: visible;
  border: 0;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.heart-glow {
  display: none;
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 120, .7), rgba(255,255,255,.4) 38%, transparent 70%);
  animation: ping-rose 1.5s ease-out infinite;
  pointer-events: none;
}
.heart-btn.on .heart-glow { display: block; }
.heart-btn svg { position: relative; z-index: 1; }
.heart-btn .heart-ico-on { display: none; }
.heart-btn .heart-ico-off { display: block; fill: none; stroke: currentColor; }
.heart-btn .heart-ico-off path { fill: none; stroke: currentColor; stroke-width: 2; }
.heart-btn.on .heart-ico-off { display: none; }
.heart-btn.on .heart-ico-on { display: block; }
.heart-btn.on .heart-ico-on path { fill: currentColor; stroke: none; }
.heart-btn.on { color: #e11d48; }
.buy-card .prop-media { overflow: hidden; }
.buy-card .prop-media img {
  border-radius: 0;
  display: block;
}

.prime-chip { font-size: 11px; color: #666; }
.prime-chip s { color: #999; }
.prime-chip strong { color: #1f6b4a; }
.buy-card { display: flex; flex-direction: column; overflow: hidden; }
.buy-card-link { color: inherit; text-decoration: none; display: block; }
.buy-card .prop-body { padding-bottom: 10px; }
.prop-foot { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.tv-lock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff4f7;
  font-size: 13px;
  line-height: 1.4;
  background:
    radial-gradient(120% 90% at 92% 8%, rgba(255, 150, 186, .32), transparent 44%),
    linear-gradient(135deg, #3d0c1c 0%, #6b1634 36%, #9a2a52 64%, #4e1026 100%);
  background-size: 100% 100%, 220% 220%;
  animation: tv-ember 4.2s ease-in-out infinite;
  border: 1px solid rgba(255, 176, 198, .28);
  box-shadow: 0 10px 24px rgba(48, 6, 20, .4);
  overflow: visible;
}
@keyframes tv-ember {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}
.tv-lock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.tv-lock p {
  margin: 0;
  color: #f6d4de;
  font-size: 12px;
}
.tv-lock strong {
  font-size: 15px;
  color: #fff6f8;
  font-weight: 800;
}
.tv-lock .tv-unlock {
  position: relative;
  overflow: visible;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
  background: #ffe8ee !important;
  color: #111 !important;
  border: 0 !important;
  animation: tv-unlock-clash 1.8s ease-in-out infinite;
}
.tv-lock .tv-unlock:hover { filter: none; background: #ffd6e0 !important; }
@keyframes tv-unlock-clash {
  0%, 100% {
    box-shadow:
      0 0 10px 3px rgba(255, 210, 222, .7),
      0 0 22px 8px rgba(255, 160, 186, .38) !important;
  }
  50% {
    box-shadow:
      0 0 16px 6px rgba(255, 236, 242, .95),
      0 0 32px 12px rgba(255, 170, 196, .55) !important;
  }
}
.tv-more {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #ffd6e4;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.tv-extra {
  display: none;
  margin-top: 4px;
}
.tv-lock.is-open .tv-extra { display: block; }
.tv-lock.is-open .tv-more { font-weight: 700; }
.tv-lock .tv-star { color: #e8b8c8 !important; margin-top: 8px !important; }
.prime-modal .prime-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 10px;
}
.prime-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tv-star {
  margin: 12px 0 0 !important;
  font-size: 12px !important;
  color: #666 !important;
}
@keyframes tv-flash {
  0%, 100% { background-position: 0% 50%; filter: brightness(1); }
  50% { background-position: 100% 50%; filter: brightness(1.25); }
}
@keyframes ping-rose {
  0% { transform: scale(.7); opacity: .9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(.7); opacity: 0; }
}

.search-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 430;
  background: #fff;
  flex-direction: column;
}
.search-sheet.open { display: flex; }
body.search-open { overflow: hidden; }
body.search-open .assist-fab { display: none; }
.search-sheet-top {
  flex: 0 0 auto;
  padding: 10px 14px 8px;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.search-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.search-sheet-head strong { font-size: 18px; }
.search-sheet-x {
  width: 36px;
  height: 36px;
  border: 0;
  background: #f4f4f4;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.search-sheet-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.search-sheet-ico {
  position: absolute;
  left: 14px;
  color: #888;
  pointer-events: none;
}
.search-sheet-form input {
  flex: 1;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 14px 0 42px;
  font-size: 16px;
  min-width: 0;
}
.search-sheet-form .btn { height: 48px; flex: 0 0 auto; }
.search-sheet-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 0;
  -webkit-overflow-scrolling: touch;
}
.search-sheet-chips::-webkit-scrollbar { display: none; }
.search-sheet-chips button {
  flex: 0 0 auto;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  isolation: isolate;
}
.search-sheet-chips button.on {
  background: var(--sy-yellow);
  border-color: var(--sy-yellow);
}
.search-sheet-chips .ai-mode-tab.on {
  background: #fff;
  border-color: #ffe4f0;
  box-shadow: none;
}
.search-sheet-chips .ai-mode-tab {
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  border-color: rgba(255, 226, 238, .9);
}
.search-sheet-chips .ai-mode-tab .ai-radiance {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: none;
  border: 1.5px solid rgba(255, 228, 240, .95);
  box-shadow:
    0 0 8px 1px rgba(255, 176, 204, .7),
    0 0 16px 3px rgba(255, 214, 230, .35);
  filter: none;
  opacity: .85;
  animation: border-glow 2.6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
.search-sheet-chips .ai-mode-tab.on .ai-radiance {
  inset: -2px;
  opacity: 1;
  filter: none;
}
.search-sheet-form .btn.ai-ask {
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  background: var(--sy-yellow) !important;
  border: 1px solid #ffe4f0 !important;
  box-shadow: none !important;
}
.search-sheet-form .btn.ai-ask:hover { filter: none; }
.search-sheet-form .btn.ai-ask > span { position: relative; z-index: 2; }
.search-sheet-form .btn.ai-ask::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: none;
  border: 1.5px solid rgba(255, 228, 240, .95);
  box-shadow:
    0 0 8px 1px rgba(255, 176, 204, .7),
    0 0 16px 3px rgba(255, 214, 230, .35);
  animation: border-glow 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.search-sheet-form .btn.ai-ask::after { content: none; }
.search-sheet-suggest {
  flex: 1;
  overflow: auto;
  padding: 6px 0 88px;
  background: #fafafa;
}
.search-suggest-label {
  padding: 12px 16px 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
}
.search-suggest-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}
.search-suggest-item:hover { background: #fffdf4; }
.search-suggest-item svg { flex-shrink: 0; margin-top: 2px; color: #888; }
.search-suggest-item strong { display: block; font-size: 14px; color: #111; }
.search-suggest-item span { display: block; font-size: 12px; color: #777; }
.search-suggest-empty { padding: 28px 16px; color: #888; font-size: 13px; }

.prime-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 410;
  background: rgba(10,10,10,.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.prime-modal.open { display: flex; }
.prime-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
}
.prime-card h3 { font-size: 20px; margin-bottom: 8px; }

.bottom-tabs {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 58px;
  background: #fff;
  border-top: 1px solid #ececec;
  z-index: 180;
  grid-template-columns: repeat(4, 1fr);
}
.bottom-tabs a, .bottom-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #666;
  background: none;
}
.bottom-tabs a.on, .bottom-tabs button.on { color: #111; }

.nav-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #0f0f10;
  color: #fff;
  overflow: auto;
  padding: 0 0 90px;
  text-align: left;
}
.nav-sheet.open { display: block; }
.drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-head .brand-name { color: #fff; }
.drawer-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.drawer-account {
  margin: 16px 20px;
  padding: 14px;
  border-radius: 16px;
  background: #1a1a1c;
  display: grid;
  gap: 10px;
}
.drawer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-align: left;
}
.drawer-profile em { display: block; font-style: normal; font-size: 12px; color: #999; }
.drawer-profile span:last-child { min-width: 0; }
.drawer-profile .avatar-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sy-yellow);
  color: #111;
  font-weight: 800;
  flex-shrink: 0;
}
.drawer-account .btn-line {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.drawer-list {
  display: flex !important;
  align-items: center;
  margin: 0 20px 14px;
  height: 48px;
  justify-content: center;
  font-weight: 800;
}
.drawer-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 20px 18px;
}
.drawer-quick a, .drawer-quick button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 12px;
  background: #1a1a1c;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 0 10px;
}
.nav-sheet h4 { margin: 16px 20px 8px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #888; }
.nav-acc {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-acc summary {
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.nav-acc summary::-webkit-details-marker { display: none; }
.nav-acc summary::after { content: "▾"; color: #888; font-size: 12px; flex-shrink: 0; margin-left: 12px; }
.nav-acc a, .nav-acc .avatar-panel a, .nav-acc .avatar-panel button.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: 12px;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.35;
  color: #ddd;
  background: none;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  border: 0;
}
.nav-acc a .count,
.nav-acc a .soon-badge,
.nav-acc a .free-badge {
  margin-left: 0;
  justify-self: end;
  flex-shrink: 0;
}
.nav-acc .count { color: #888; }
.nav-acc .avatar-panel { position: static; display: block; width: auto; box-shadow: none; background: transparent; padding: 0; }
.nav-acc .avatar-head { display: none; }
body.nav-open { overflow: hidden; }

/* Homepage SY */
.sy-hero {
  background: #111;
  color: #fff;
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.sy-hero::before { display: none; }
.sy-hero .container {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.sy-hero h1 { font-family: var(--display); font-size: clamp(28px, 4vw, 44px); line-height: 1.15; max-width: 720px; margin: 0; }
.sy-hero-browse {
  min-height: 0;
  padding: 32px 0 28px;
  overflow: visible;
}
.sy-hero-browse .hero-stage { border-radius: 0; }
.sy-hero-browse h1 { margin-bottom: 8px; }
.sy-hero-browse .hero-lead {
  margin: 0 0 4px;
  max-width: 54ch;
  color: #ddd;
  font-size: 14px;
}
.sy-hero-browse .hero-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.sy-hero-browse .hero-search {
  max-width: min(920px, 100%);
  display: flex;
  align-items: center;
  gap: 0;
}
.sy-hero-browse .browse-city {
  flex: 0 1 220px;
  min-width: 0;
  padding: 0 4px 0 8px;
  color: #111;
}
.sy-hero-browse .browse-city .loc-picker,
.sy-hero-browse .buy-search .loc-picker {
  border: 0 !important;
  background: transparent !important;
  min-height: 40px;
  padding: 0;
  border-radius: 0;
  color: #111;
}
.sy-hero-browse .hero-search .loc-picker-input {
  padding: 0 4px;
  height: 40px;
  font-size: 14px;
  color: #111;
}
.sy-hero-browse .hero-search #q {
  flex: 1 1 180px;
  border-left: 1px solid #eee;
  padding-left: 14px;
  height: 40px;
}
.sy-hero-browse .hero-search .search-ico { display: none; }
.sy-hero-browse .hero-search.is-ai .search-ico { display: block; }
.sy-hero-browse .hero-search.is-ai .browse-city { display: none; }
.sy-hero-browse .hero-search.is-ai #q {
  border-left: 0;
  padding-left: 40px;
}
.sy-hero-browse .hero-search .btn { margin-left: 8px; }
.browse-page { padding: 36px 0 72px; }
.browse-page .section-head { margin-bottom: 16px; }
.browse-page .buy-crumb a { color: #111; }
.browse-page .buy-filters select,
.browse-page .buy-filters input {
  border-radius: 10px;
  border: 1px solid var(--line);
}
.browse-page .filter-card {
  border: 1px solid rgba(255, 209, 0, .28);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.browse-page .buy-empty-opt { border-color: rgba(255, 209, 0, .45); }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 20px 0 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}
.hero-tabs::-webkit-scrollbar { display: none; }
.hero-tabs a, .hero-tabs button {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.hero-tabs a.on, .hero-tabs button.on { background: var(--sy-yellow); color: #111; }
.hero-search {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  max-width: min(760px, 100%);
  width: 100%;
  box-sizing: border-box;
}
.hero-search input {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  padding: 10px 12px;
  outline: none;
  color: #111;
}
.proof-line {
  margin: 12px 0 0;
  max-width: 720px;
  font-size: 13px;
  color: #eee;
}
.proof-viewport {
  position: relative;
  overflow: hidden;
  height: 1.45em;
  line-height: 1.45;
}
.proof-copy {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(0);
  transition: transform .5s cubic-bezier(.22, .8, .28, 1);
  z-index: 2;
}
.proof-copy.is-leave { transform: translateY(-110%); z-index: 1; }
.proof-copy.is-enter { transform: translateY(110%); z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .proof-copy { transition: none; }
}
.proof-rule {
  display: block;
  height: 2px;
  width: min(480px, 92%);
  margin-top: 6px;
  background: linear-gradient(90deg, #FFD100 0%, #F5C518 50%, rgba(255, 209, 0, 0) 100%);
  border-radius: 2px;
}

.h-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.h-scroll > * { scroll-snap-align: start; flex: 0 0 min(280px, 78vw); }
.city-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.city-pills a, .city-pills button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  background: #fff;
}
.city-pills a.on, .city-pills button.on { background: var(--sy-yellow); border-color: var(--sy-yellow); font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.service-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.service-tile strong { display: block; margin-top: 8px; }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  min-width: 260px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.specs-grid div {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 10px 12px;
}
.specs-grid span { display: block; font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .04em; }
.specs-grid strong { font-size: 14px; }
.browse-layout { display: grid; grid-template-columns: 260px 1fr; gap: 22px; align-items: start; }
.filter-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; position: sticky; top: 72px; }
.filter-card h4 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #888; margin: 12px 0 8px; }
.filter-card label { display: flex; gap: 8px; font-size: 13px; padding: 4px 0; }

.prop-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.prop-mosaic img, .prop-mosaic video { width: 100%; height: 100%; object-fit: cover; }
.prop-mosaic .hero-shot { grid-row: 1 / span 2; }
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 58px;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 12px;
  z-index: 170;
  gap: 8px;
}
.sticky-cta .heart-wrap {
  position: static;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.sticky-cta .heart-listed {
  position: static;
  right: auto;
  top: auto;
  order: 0;
}
.sticky-cta .heart-btn {
  position: static;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  order: 1;
}
.sticky-cta .heart-wrap .heart-tick,
.sticky-cta .heart-wrap.on .heart-tick { display: none; }
.account-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.prime-banner {
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
}
.ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--sy-yellow) calc(var(--p, 0) * 1%), #ececec 0);
  padding: 3px;
}

.admin-queue { display: grid; gap: 10px; }
.q-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  position: relative;
}
.q-row img { width: 88px; height: 66px; object-fit: cover; border-radius: 8px; }
.q-preview {
  display: none;
  position: absolute;
  left: 110px;
  top: 100%;
  z-index: 20;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  padding: 12px;
}
.q-row:hover .q-preview { display: block; }
.decision-bar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 1320px) {
  .nav-optional { display: none; }
}

@media (max-width: 720px) {
  #openFilters { display: inline-flex !important; }
  .buy-tabs a.is-on { background: var(--sy-yellow) !important; color: #111 !important; border-color: var(--sy-yellow) !important; }
  .nav-desktop, .header-actions .btn-ghost, .header-actions .sign-in-text, .avatar-wrap { display: none; }
  .header-actions .btn-list { display: none !important; }
  .menu-btn { display: grid; }
  .header-shell { width: 100%; padding: 6px 16px; box-sizing: border-box; }
  .brand-name { display: inline; font-size: 11px; letter-spacing: 0.1em; }
  .city-item { flex-shrink: 1; min-width: 0; }
  .city-item .city-chip { max-width: 120px; }
  .city-item:hover::after,
  .city-item.is-open::after,
  .city-item.open::after,
  .city-item.is-pinned::after { display: none; }
  .city-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 56px;
    min-width: 0;
    width: auto;
    max-width: none;
    max-height: min(70vh, 420px);
  }
  .bottom-tabs { display: grid; }
  body { padding-bottom: 58px; }
  .browse-layout { grid-template-columns: 1fr; }
  .filter-card { display: none; position: static; }
  .filter-card.sheet {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    top: auto;
    z-index: 250;
    border-radius: 16px 16px 0 0;
    max-height: 80vh;
    overflow: auto;
  }
  .prop-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .prop-mosaic .side { display: none; }
  .sticky-cta { display: flex; }
  .account-grid { grid-template-columns: 1fr; }
  .sl-modal { padding: 0; }
  .sl-sheet { width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .mega { position: static; box-shadow: none; min-width: 0; }
}

@media (max-width: 560px) {
  .city-chip span.label { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }
}

.btn-list .short { display: none; }
.mega-hint { font-size: 11px; color: #888; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px 8px; }
.mega-feature {
  background: linear-gradient(160deg, #111 0%, #2a2208 100%);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-kicker { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--sy-yellow); }
.mega-feature p { font-size: 13px; color: #ddd; line-height: 1.4; }
.mega-cta {
  display: inline-flex !important;
  justify-content: center;
  height: 34px;
  align-items: center;
  border-radius: 8px;
  background: var(--sy-yellow);
  color: #111 !important;
  font-weight: 700;
  font-size: 12px;
  padding: 0 10px;
}
.mega-cta.ghost { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.25); }
.city-row { display: flex !important; align-items: center; gap: 8px; }
.city-row img { width: 28px; height: 28px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.city-row span { flex: 1; }

.assist-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 370;
  overflow: visible;
}
.assist-fab .radiance {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #4B8BFF, #9B6BFF, #FF6BCB, #FFD100, #4B8BFF);
  filter: blur(7px);
  opacity: 0.9;
  animation: spin-glow 3.2s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.assist-fab-face {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.assist-fab-face svg { display: block; width: 24px; height: 24px; }
.assist-fab.on .assist-fab-face {
  box-shadow: 0 0 0 3px rgba(255,209,0,.45), 0 10px 28px rgba(0,0,0,.22);
}
.assist-fab.mini {
  position: relative;
  right: auto;
  bottom: auto;
  width: 40px;
  height: 40px;
  z-index: 1;
  flex-shrink: 0;
  pointer-events: none;
}
.assist-fab.mini .radiance { inset: -8px; filter: blur(7px); }
.assist-fab.mini .assist-fab-face {
  width: 36px;
  height: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
@keyframes spin-glow { to { transform: rotate(360deg); } }

.assist-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, .48);
  z-index: 478;
}
.assist-backdrop.open { display: block; }
.assist-dock {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: min(560px, calc(100vw - 24px));
  height: min(78vh, 720px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
  z-index: 480;
  flex-direction: column;
  overflow: hidden;
}
.assist-dock.open { display: flex; }
body.assist-open { overflow: hidden; }
body.assist-open .assist-fab:not(.mini) { visibility: hidden; }
.assist-dock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #eee;
}
.assist-dock-head p { font-size: 12px; color: #777; }
.assist-full { margin-left: auto; font-size: 12px; font-weight: 700; color: #111; }
.assist-dock-head #assistDockClose { margin-left: auto; font-size: 22px; color: #888; width: 36px; height: 36px; border-radius: 50%; }
.assist-dock-log { flex: 1; overflow: auto; padding: 16px 14px 18px; display: flex; flex-direction: column; gap: 12px; background: #f7f7f8; }
.bubble { max-width: 86%; padding: 10px 12px; border-radius: 12px; font-size: 13px; line-height: 1.45; }
.bubble.bot { background: #fff; border: 1px solid #eee; align-self: flex-start; max-width: 100%; }
.bubble.me { background: #111; color: #fff; align-self: flex-end; }
.assist-suggests {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.assist-suggest {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  color: #111;
  text-decoration: none;
}
.assist-suggest img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}
.assist-suggest strong { display: block; font-size: 13px; }
.assist-suggest span { display: block; font-size: 12px; color: #777; margin-top: 2px; }
.assist-dock-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #eee; background: #fff; }
.assist-dock-form input { flex: 1; height: 44px; border: 1px solid #ddd; border-radius: 12px; padding: 0 14px; font-size: 15px; }

.offer-ticker {
  background: #111;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,209,0,.25);
}
.offer-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.offer-track span { display: inline-flex; align-items: center; gap: 8px; color: #eee; }
.offer-track em { color: var(--sy-yellow); font-style: normal; font-size: 10px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-stage { position: absolute; inset: 0; overflow: hidden; border-radius: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: 22% center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-slide.is-on { opacity: 1; }
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.95) 36%, rgba(0,0,0,.90) 54%, rgba(0,0,0,.68) 78%, rgba(0,0,0,.50) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, transparent 16%, transparent 80%, rgba(0,0,0,.32) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  isolation: isolate;
}
.hero-copy::before,
.sy-hero-browse .container::before {
  content: "";
  position: absolute;
  left: -36px;
  top: -32px;
  width: min(92%, 560px);
  height: 72%;
  background: radial-gradient(ellipse at 22% 38%, rgba(0,0,0,.48) 0%, rgba(0,0,0,.16) 46%, transparent 74%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}
.sy-hero h1,
.sy-hero .hero-lead,
.sy-hero .proof-copy,
.sy-hero .hero-live {
  text-shadow:
    0 1px 2px rgba(0,0,0,.4),
    0 6px 24px rgba(0,0,0,.38),
    0 0 36px rgba(0,0,0,.22);
}
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
.stars-inline { display: inline-flex; color: #F5C518; gap: 1px; vertical-align: middle; }
.g-ico { flex-shrink: 0; }
.g-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #666; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: ping 1.6s ease-out infinite;
  display: inline-block;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes ping-gold {
  0% { box-shadow: 0 0 0 0 rgba(255,209,0,.85); }
  70% { box-shadow: 0 0 0 10px rgba(255,209,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,209,0,0); }
}
.hero-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 0;
  cursor: pointer;
}
.hero-tabs button.on { background: var(--sy-yellow); color: #111; }
.tab-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  opacity: .35;
}
.hero-tabs a.on .tab-dot,
.hero-tabs button.on .tab-dot,
.search-mode button.on .tab-dot {
  background: #e11d48;
  opacity: 1;
  animation: ping 1.2s ease-out infinite;
}
.search-mode { display: flex; gap: 10px; margin: 8px 0 16px; padding: 8px 2px; overflow: visible; }
.search-mode button {
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.search-mode button.on { background: #fff; color: #111; border-color: #fff; }
.search-mode .ai-mode-tab {
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  border-color: rgba(255, 226, 238, .9);
}
.search-mode .ai-mode-tab .ai-radiance {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: none;
  border: 1.5px solid rgba(255, 228, 240, .95);
  box-shadow:
    0 0 8px 1px rgba(255, 176, 204, .7),
    0 0 16px 3px rgba(255, 214, 230, .35);
  filter: none;
  opacity: .85;
  animation: border-glow 2.6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
.search-mode .ai-mode-tab.on {
  background: #fff;
  color: #111;
  border-color: #ffe4f0;
  box-shadow: none;
}
.search-mode .ai-mode-tab.on .ai-radiance {
  inset: -2px;
  opacity: 1;
  filter: none;
}
@keyframes border-glow {
  0%, 100% {
    opacity: .55;
    box-shadow:
      0 0 6px 1px rgba(255, 176, 204, .4),
      0 0 12px 2px rgba(255, 220, 235, .2);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 10px 2px rgba(255, 176, 204, .8),
      0 0 18px 4px rgba(255, 220, 235, .4);
  }
}
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  max-width: min(760px, 100%);
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}
.hero-search input {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  border: 0;
  outline: 0;
  padding-left: 40px;
  height: 40px;
  font-size: 14px;
  background: transparent;
}
.hero-search .btn { flex: 0 0 auto; height: 40px; }
.hero-search .btn.ai-ask {
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  background: var(--sy-yellow) !important;
  border: 1px solid #ffe4f0 !important;
  box-shadow: none !important;
}
.hero-search .btn.ai-ask:hover { filter: none; }
.hero-search .btn.ai-ask::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: none;
  border: 1.5px solid rgba(255, 228, 240, .95);
  box-shadow:
    0 0 8px 1px rgba(255, 176, 204, .7),
    0 0 16px 3px rgba(255, 214, 230, .35);
  animation: border-glow 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.hero-search .btn.ai-ask::after { content: none; }
.hero-search .search-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}
.hero-live { margin-top: 10px; font-size: 13px; color: #f5d76e; min-height: 18px; }
.hero-floaters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.floater {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 650;
  animation: floaty 4.5s ease-in-out infinite;
}
.floater.f2 { animation-delay: .6s; }
.floater.f3 { animation-delay: 1.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.tile-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fff7cc; color: #111;
}
.tile-ico.pulse { animation: ping 2s ease-out infinite; }
.service-tile { transition: transform .2s ease, box-shadow .2s ease; }
.service-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.service-tile.photo {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 14px;
  color: #fff;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.service-tile.photo .tile-photo {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.06);
  animation: kenburns 14s ease-in-out infinite alternate;
  z-index: 0;
}
.service-tile.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.93) 58%, rgba(0,0,0,.97) 100%);
  z-index: 1;
}
.service-tile.photo > *:not(.tile-photo) { position: relative; z-index: 2; }
.service-tile.photo .tile-ico { background: rgba(255,255,255,.92); }
.service-tile.photo strong { color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.service-tile.photo .sub { color: #f2f2f2 !important; }
.one-place {
  background: #111;
  color: #fff;
  padding: 36px 0 44px !important;
}
.one-place .section-head h2 {
  background-image: linear-gradient(92deg, #ffffff 0%, #ffe566 52%, #ffd100 100%);
  background-size: 140% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.one-place .section-head p {
  color: #ece6d8;
}
.one-place .service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.one-place .service-tile.photo {
  min-height: 0;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
}
.one-place .service-tile.photo::after {
  content: none;
}
.one-place .service-tile.photo .tile-photo {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 118px;
  flex: 0 0 118px;
  background-size: cover;
  background-position: center;
}
.one-place .service-tile.photo .tile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
  pointer-events: none;
}
.one-place .tile-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  min-height: 128px;
  flex: 1 1 auto;
}
.one-place .service-tile.photo .tile-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.one-place .service-tile.photo strong {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  min-height: 19px;
  max-height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-shadow: none;
}
.one-place .service-tile.photo .sub {
  margin-top: auto;
  min-height: 28px;
  font-size: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #cfcfcf !important;
}
.one-place .flash-free-tag {
  margin-top: auto;
  min-height: 28px;
  height: 28px;
  padding: 0 12px;
}
.service-tile.photo:nth-child(2) .tile-photo { animation-delay: .8s; }
.service-tile.photo:nth-child(3) .tile-photo { animation-delay: 1.4s; }
.service-tile.photo:nth-child(4) .tile-photo { animation-delay: 2s; }
.service-tile.photo:nth-child(5) .tile-photo { animation-delay: 2.6s; }

.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.promo-card {
  background:
    radial-gradient(140% 130% at 12% -10%, rgba(212,160,23,.16), transparent 55%),
    linear-gradient(165deg, #fffdf6 0%, #ffffff 100%);
  border: 1px solid rgba(184,147,54,.24);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 128px;
  position: relative;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--clay);
  transition: transform .25s ease, box-shadow .25s ease;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(14,20,36,0.04), 0 22px 44px rgba(184,147,54,0.16); }
.promo-card:nth-child(2) { background: radial-gradient(140% 130% at 12% -10%, rgba(203,111,55,.16), transparent 55%), linear-gradient(165deg, #fffaf6 0%, #ffffff 100%); }
.promo-card:nth-child(3) { background: radial-gradient(140% 130% at 12% -10%, rgba(61,74,107,.14), transparent 55%), linear-gradient(165deg, #f9fafc 0%, #ffffff 100%); }
.promo-card:nth-child(4) { background: radial-gradient(140% 130% at 12% -10%, rgba(120,120,120,.12), transparent 55%), linear-gradient(165deg, #fafafa 0%, #ffffff 100%); }
.promo-card .mega-kicker { color: var(--gold-ink); font-size: 11px; }
.promo-card strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.promo-card p { color: var(--muted); font-size: 13px; margin: 0; }
.promo-card.flash { outline: 1px solid rgba(184,147,54,.4); animation: card-glow 2.4s ease-in-out infinite; }
.promo-card.flash:nth-child(2) { animation-delay: .4s; }
.promo-card.flash:nth-child(3) { animation-delay: .8s; }
.promo-card.flash:nth-child(4) { animation-delay: 1.2s; }
.promo-card .live-dot { position: absolute; top: 14px; right: 14px; background: #FFD100; border: 2px solid #fff; box-shadow: 0 0 0 0 rgba(255,209,0,.7); animation: ping-gold 1.6s ease-out infinite; }
@keyframes card-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,209,0,0); }
  50% { box-shadow: 0 0 0 6px rgba(255,209,0,.18); }
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .7fr);
  gap: 28px;
  align-items: end;
}
.hero-offers { display: grid; gap: 18px; }
.hero-offer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,209,0,.35);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.hero-offer strong { font-size: 14px; }
.hero-offer p { font-size: 12px; color: #eee; }
.hero-offer .mega-kicker { color: var(--sy-yellow); }
.use-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.use-card {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  animation: card-glow 2.6s ease-in-out infinite;
}
.use-card:nth-child(2) { animation-delay: .5s; background: #1a1400; }
.use-card:nth-child(3) { animation-delay: 1s; }
.use-card:nth-child(4) { animation-delay: 1.5s; background: #161616; }
.use-photo {
  display: block;
  width: 100%;
  height: 128px;
  flex: 0 0 128px;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: kenburns 14s ease-in-out infinite alternate;
}
.use-card:nth-child(2) .use-photo { animation-delay: 1.2s; }
.use-card:nth-child(3) .use-photo { animation-delay: 2.4s; }
.use-card:nth-child(4) .use-photo { animation-delay: 3.6s; }
.use-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42));
  pointer-events: none;
}
.use-card .use-photo { position: relative; overflow: hidden; }
.use-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1 1 auto;
  min-width: 0;
}
.use-card .live-dot { position: absolute; top: 12px; right: 12px; z-index: 2; }
.use-card strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: break-word;
  color: #fff;
}
.use-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #ddd;
  margin: 0;
  overflow-wrap: break-word;
}
.use-card .btn { margin-top: auto; align-self: flex-start; height: auto; min-height: 32px; padding: 7px 12px; font-size: 12px; white-space: nowrap; }
.plan-chip { animation: plan-pulse 3.2s ease-in-out infinite; }
.plan-chip:nth-child(odd) { animation-delay: .6s; }
@keyframes plan-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,209,0,0); }
  50% { box-shadow: 0 0 0 4px rgba(255,209,0,.16); }
}
.plan-strip { display: flex; gap: 16px; overflow-x: auto; padding: 14px 0 4px; }
.plan-chip {
  flex: 0 0 auto;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.plan-chip.soon { background: #3a3a3a; }
.plan-chip span { color: var(--sy-yellow); }

.heat-card { margin-top: 10px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; position: relative; }
.heat-map { width: 100%; min-height: 220px; height: 260px; background: #e8e8e8; }
.heat-map > div,
.heat-map .gm-style {
  height: 100% !important;
}
.heat-map img,
.heat-map canvas,
.heat-map svg,
.gm-style img,
.gm-style canvas,
.gm-style svg {
  max-width: none !important;
  max-height: none !important;
}
.heat-map canvas,
.gm-style canvas {
  max-width: none !important;
  max-height: none !important;
}
.heat-legend {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 8px 12px; background: #fff; color: #555; font-size: 12px;
  border-top: 1px solid var(--line);
}
.heat-pin {
  font: 13px/1.4 Inter, sans-serif;
  min-width: 168px;
  max-width: 220px;
  color: #222;
  padding: 2px 0 4px;
}
.heat-pin-name {
  display: inline-block;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  font-size: 15px;
}
.heat-pin-name:hover { color: #b45309; text-decoration: underline; }
.heat-pin-meta { color: #666; margin-top: 4px; }
.heat-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sy-yellow);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.heat-go:hover { filter: brightness(0.96); }
.gm-style-iw-d { overflow: hidden !important; max-height: none !important; }
.stat-card { transition: transform .2s ease; }
.stat-card:hover { transform: translateY(-2px); }

.discover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.discover-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  animation: discover-float 5s ease-in-out infinite, card-glow 3.2s ease-in-out infinite;
  transform-origin: center;
}
.discover-card:nth-child(2) { animation-delay: .5s, .5s; }
.discover-card:nth-child(3) { animation-delay: 1s, 1s; }
.discover-card:nth-child(4) { animation-delay: 1.5s, 1.5s; }
.discover-cover {
  height: 140px;
  background-size: cover;
  background-position: 30% center;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  animation: discover-pan 12s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}
.discover-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,209,0,.28) 48%, transparent 64%);
  transform: translateX(-130%);
  animation: discover-shine 3.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.discover-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,.72));
}
.discover-cover strong { position: relative; z-index: 2; font-size: 18px; }
@keyframes discover-pan {
  from { background-position: 18% 50%; }
  to { background-position: 82% 40%; }
}
@keyframes discover-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes discover-shine {
  0%, 35% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}
.discover-cities a {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 13px;
  transition: background .2s ease, transform .2s ease;
  animation: discover-row .55s ease both;
}
.discover-cities a:nth-child(1) { animation-delay: .08s; }
.discover-cities a:nth-child(2) { animation-delay: .16s; }
.discover-cities a:nth-child(3) { animation-delay: .24s; }
.discover-cities a:nth-child(4) { animation-delay: .32s; }
.discover-cities a:hover { background: #fff8e1; transform: translateX(6px); }
.discover-cities img { width: 32px; height: 32px; object-fit: cover; border-radius: 8px; }
.discover-cities em { margin-left: auto; color: #888; font-style: normal; }
@keyframes discover-row {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}

.locality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.locality-card {
  position: relative; border-radius: 14px; overflow: hidden; min-height: 160px; display: block;
}
.locality-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.locality-card span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; display: flex; justify-content: space-between;
}
.locality-card em { font-style: normal; opacity: .85; font-size: 12px; }

.place-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.place-grid-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.place-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 180px; display: block; color: #fff;
}
.place-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.place-card .shade { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.72)); }
.place-card .body { position: relative; z-index: 1; padding: 16px; margin-top: 70px; }
.place-card .name { font-weight: 800; font-size: 18px; }
.place-card .meta { font-size: 12px; opacity: .85; }
.place-chip {
  display: flex; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 8px 10px;
}
.place-chip img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.place-chip .nm { display: block; font-weight: 700; font-size: 13px; }
.place-chip .st { font-size: 12px; color: #777; }

.assist-page { max-width: 920px; margin: 0 auto; padding: 28px 16px 80px; }
.assist-chat-shell {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 380px;
}
.assist-chat-log { flex: 1; padding: 12px; background: #f6f7fb; display: flex; flex-direction: column; gap: 8px; min-height: 220px; }
.tag-ico { display: inline-flex; align-items: center; gap: 6px; }

.insight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.stat-slim {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-slim span { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .04em; }
.stat-slim strong { font-size: 16px; }
.stat-slim .btn { height: 28px; padding: 0 10px; font-size: 12px; width: fit-content; }

.tile-ico { width: 34px; height: 34px; border-radius: 10px; }

.section-head h2 {
  display: inline-block;
  font-weight: 750;
  letter-spacing: -0.025em;
  background-image: linear-gradient(92deg, #160d00 0%, #6b4300 48%, #d4a017 100%);
  background-size: 140% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-head p { color: #5c4a28; }
.section-head h2.hot-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
}
.hot-word {
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.03em;
  background-image: linear-gradient(92deg, #ffb000 0%, #ff4d00 36%, #ff7a00 68%, #ffd100 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hot-shift 3.2s ease-in-out infinite;
}
.hot-fire {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  animation: fire-flicker 0.7s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 90, 0, .75));
  transform-origin: 50% 90%;
}
.hot-fire::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 14px;
  height: 8px;
  margin-left: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, .55), transparent 70%);
  animation: fire-glow 0.9s ease-in-out infinite;
}
.hot-fire svg {
  width: 34px;
  height: 34px;
  display: block;
  position: relative;
  z-index: 1;
}
@keyframes fire-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1) rotate(-3deg); }
  25% { transform: scaleY(1.1) scaleX(.94) rotate(4deg); }
  50% { transform: scaleY(.94) scaleX(1.06) rotate(-5deg); }
  75% { transform: scaleY(1.08) scaleX(.96) rotate(2deg); }
}
@keyframes fire-glow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes hot-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.one-place .service-tile.photo { animation: card-glow 2.8s ease-in-out infinite; }
.one-place .flash-tile { outline: 1px solid rgba(255,209,0,.55); }
.flash-free-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sy-yellow);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
  animation: ping-gold 1.4s ease-out infinite, tv-flash 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,209,0,.7);
}
.use-tools {
  padding-top: 56px !important;
  margin-top: 8px;
  background: linear-gradient(180deg, #fff7e8 0%, #ffedc2 42%, #fff8e9 100%);
}
.band-warm {
  background: linear-gradient(180deg, #fff7e8 0%, #fff3d6 38%, #ffffff 100%);
  padding-top: 56px;
  padding-bottom: 36px;
}
.band-warm + .band-warm {
  padding-top: 64px;
}
.browse-page.band-warm {
  padding: 36px 0 72px;
}
.compare-page .container {
  width: min(var(--max), calc(100% - 48px));
}
.compare-sheet {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(184, 147, 54, .22);
  box-shadow: 0 12px 36px rgba(22, 13, 0, .06);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  background: #fff;
}
.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #f1eee8;
  vertical-align: top;
  text-align: left;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fffaf2;
  font-weight: 800;
  color: #6b5428;
  min-width: 112px;
  width: 112px;
}
thead .compare-label { background: #fff; }
.compare-col {
  min-width: 240px;
  max-width: 280px;
  background: #fff;
}
.compare-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 132px;
  background: #eee;
  margin-bottom: 10px;
}
.compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare-media .heart-wrap { top: 8px; right: 8px; }
.compare-title {
  display: block;
  font-weight: 800;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.compare-price { font-weight: 800; font-size: 16px; color: #111; }
.compare-price small { display: block; font-size: 12px; font-weight: 600; color: #777; margin-top: 2px; }
.compare-empty {
  padding: 32px 22px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(184, 147, 54, .22);
}
.compare-empty p { margin: 0 0 14px; color: #5c4a28; }
.promo-grid-wrap.band-warm {
  background: linear-gradient(180deg, #ffe7b0 0%, #fff6e4 55%, #fff 100%);
}
.loans-section {
  padding-top: 48px;
}

.bottom-tabs .wa-tab { color: #128C7E; }
.bottom-tabs .wa-tab svg { color: #25D366; }
.assist-fab { touch-action: none; cursor: grab; }
.assist-fab.is-dragging { cursor: grabbing; }

.acct-page { padding: 28px 0 80px; }
.acct-flash {
  background: #ecfdf3;
  color: #166534;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.acct-flash.err { background: #fef2f2; color: #991b1b; }
.acct-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.acct-hero-copy { flex: 1; min-width: 0; }
.acct-hero h1 { margin: 0; font-size: 32px; line-height: 1.15; }
.acct-photo-btn.ring {
  width: 84px;
  height: 84px;
  padding: 4px;
}
.acct-photo-btn {
  position: relative;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.acct-photo-btn input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.acct-avatar { width: 72px; height: 72px; font-size: 22px; }
.acct-photo-add {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sy-yellow);
  color: #111;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}
.acct-grid { display: grid; gap: 14px; margin-top: 18px; }
.acct-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.acct-section h2 { font-size: 18px; margin: 0 0 8px; }
.acct-empty { color: #888; margin: 0; }
.acct-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
  color: inherit;
}
.acct-row:last-of-type { border-bottom: 0; }
.acct-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

@media (max-width: 980px) {
  .promo-grid, .discover-grid, .locality-grid, .place-grid { grid-template-columns: repeat(2, 1fr); }
  .use-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .one-place .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-offers { grid-template-columns: 1fr 1fr 1fr; }
  .mega { min-width: min(92vw, 640px); grid-template-columns: 1fr 1fr; }
  .hero-stage::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 36%, rgba(0,0,0,.12) 64%, rgba(0,0,0,.02) 100%),
      linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 22%, transparent 74%, rgba(0,0,0,.38) 100%);
  }
  .hero-slide { background-position: 78% center; }
}
@media (max-width: 720px) {
  .promo-grid, .discover-grid, .locality-grid, .place-grid { grid-template-columns: 1fr 1fr; }
  .use-strip { grid-template-columns: 1fr; }
  .use-card {
    flex-direction: row;
    align-items: stretch;
  }
  .use-photo {
    flex: 0 0 42%;
    width: 42%;
    height: auto;
    min-height: 100%;
  }
  .use-body {
    padding: 14px 16px;
    justify-content: center;
  }
  .use-card strong { font-size: 16px; }
  .use-card p { font-size: 13px; }
  .one-place .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sy-hero {
    padding: 48px 0 28px;
    min-height: 0;
    overflow: hidden;
  }
  .hero-stage::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.32) 34%, rgba(0,0,0,.08) 58%, transparent 78%),
      linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 20%, transparent 72%, rgba(0,0,0,.42) 100%);
  }
  .hero-slide { background-position: 82% 42%; }
  .hero-copy::before,
  .sy-hero-browse .container::before {
    width: 78%;
    height: 58%;
    filter: blur(26px);
    background: radial-gradient(ellipse at 18% 32%, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 50%, transparent 72%);
  }
  .sy-hero .container.hero-layout {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-floaters { display: none; }
  .search-mode { margin: 2px 0 16px; }
  .hero-tabs { margin: 18px 0 12px; }
  .hero-search input { font-size: 13px; }
  .proof-line { font-size: 13px; }
  .proof-rule { width: 92%; }
  .hero-search .btn { padding: 0 14px; }
  .hero-offers {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 18px;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }
  .hero-offers::-webkit-scrollbar { display: none; }
  .hero-offer {
    flex: 0 0 min(240px, 78vw);
    scroll-snap-align: start;
  }
  .assist-fab:not(.mini) {
    width: 48px;
    height: 48px;
  }
  .assist-fab:not(.mini) .assist-fab-face {
    width: 42px;
    height: 42px;
  }
  .assist-fab:not(.mini) .radiance {
    inset: -5px;
    filter: blur(5px);
  }
  .assist-fab:not(.mini) .assist-fab-face svg {
    width: 20px;
    height: 20px;
  }
  .assist-fab:not(.is-moved):not(.mini) { bottom: 74px; right: 14px; }
  .sy-hero-browse { padding: 24px 0 22px; }
  .sy-hero-browse .hero-search { max-width: calc(100% - 52px); }
  .acct-hero h1 { font-size: 22px; }
  .acct-avatar { width: 56px; height: 56px; font-size: 18px; }
  .assist-dock {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
  }
  .heat-map { min-height: 200px; height: 220px; }
  .insight-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .compare-page .container { width: calc(100% - 32px); }
  .compare-table th,
  .compare-table td { padding: 12px; }
}

@media (max-width: 560px) {
  .sy-hero-browse .hero-search { flex-wrap: wrap; gap: 8px; padding: 10px; }
  .sy-hero-browse .browse-city { flex: 1 1 100%; padding: 0; }
  .sy-hero-browse .hero-search #q { border-left: 0; padding-left: 8px; flex: 1 1 auto; }
  .sy-hero-browse .hero-search .btn { margin-left: auto; }
  .sy-hero-browse .hero-search.is-ai { flex-wrap: nowrap; }
  .sy-hero-browse .hero-search.is-ai #q { padding-left: 40px; }
}
