:root {
  --brand: #04a7f4;
  --brand-dark: #07345f;
  --ink: #050b2d;
  --text: #182033;
  --muted: #667085;
  --line: #e8edf5;
  --soft: #f6f9fe;
  --panel: #ffffff;
  --green: #07a65a;
  --blue: #04a7f4;
  --shadow: 0 16px 38px rgba(16, 24, 40, 0.09);
  --max-width: 1480px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-nav: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display", var(--font-main);
  --font-menu: "Poppins", var(--font-main);
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 169, 244, 0.95) 0 8px, transparent 8px calc(100% - 8px), rgba(255, 45, 116, 0.95) calc(100% - 8px)),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.page-shell {
  width: min(100%, calc(100% - 24px));
  min-height: calc(100vh - 24px);
  margin: 12px auto;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(3, 15, 46, 0.18);
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(560px, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max-width), calc(100% - 56px));
  margin: 0 auto;
  padding: 8px 0 6px;
}

.brand {
  display: grid;
  align-items: start;
  gap: 2px;
  min-width: 250px;
}

.brand-logo {
  display: block;
  width: 173px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 42px);
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-nav);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  border-radius: 8px;
  padding: 10px 2px;
  color: #14161d;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.main-nav a:hover {
  background: #232733;
  color: #fff;
}

.header-actions {
  position: relative;
  z-index: 20;
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: max-content;
}

.location-button,
.saved-button,
.bell-button,
.account-button,
.solid-button,
.ghost-button {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.location-button,
.saved-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  white-space: nowrap;
}

.saved-button:hover,
.bell-button:hover,
.account-button:hover {
  border-color: #232733;
  background: #232733;
  color: #fff;
}

.location-button span {
  color: var(--ink);
}

.bell-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  min-width: 38px;
  padding: 0;
  background: #fff;
  color: var(--ink);
}

.bell-button span {
  font-size: 16px;
  line-height: 1;
}

.bell-button em {
  position: absolute;
  top: -7px;
  right: -5px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff2f1f;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
}

.bell-button em.is-hidden {
  display: none;
}

.header-popover-shell {
  position: relative;
  display: inline-flex;
}

.header-popover-shell > summary {
  list-style: none;
}

.header-popover-shell > summary::-webkit-details-marker {
  display: none;
}

.header-popover-shell[open] > summary {
  border-color: #b9e7ff;
  background: #f2fbff;
}

.header-popover {
  position: absolute;
  z-index: 45;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 9px;
  width: 304px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.popover-head {
  display: grid;
  gap: 3px;
  padding: 8px 8px 6px;
}

.popover-head strong,
.popover-empty strong,
.notification-item strong {
  color: var(--ink);
  font-family: var(--font-main);
}

.popover-head span,
.popover-empty small,
.notification-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.popover-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  border: 1px dashed #d7e7f5;
  border-radius: 10px;
  padding: 18px 14px;
  background: #f7fbff;
  text-align: center;
}

.popover-empty > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.notification-menu {
  width: 330px;
}

.notification-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 10px;
  background: #fff;
  text-align: left;
}

.notification-item:hover {
  background: #f2f9ff;
}

.notification-item.is-read {
  background: #fff;
  opacity: 0.56;
}

.notification-item.is-read:hover {
  background: #f8fbfd;
  opacity: 0.74;
}

.notification-item.is-read strong {
  color: #4a5568;
}

.notification-item > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 167, 244, 0.16), rgba(255, 45, 116, 0.16));
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.notification-item.is-read > span {
  background: #eef4f8;
  color: #708094;
}

.notification-item div {
  display: grid;
  gap: 3px;
}

.solid-button {
  border: 0;
  background: linear-gradient(135deg, #04a7f4 0%, #ff2d74 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(4, 167, 244, 0.24);
}

.reserve-now {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 700;
}

.reserve-now:hover {
  background: #232733;
  box-shadow: 0 12px 24px rgba(35, 39, 51, 0.22);
}

.account-shell {
  position: relative;
}

.account-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  font-size: inherit;
  font-weight: 600;
}

.avatar-mini {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddf6ff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.account-button:hover .avatar-mini {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.account-button:hover .account-label {
  color: #fff;
}

.account-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.account-menu-copy {
  display: grid;
  gap: 4px;
  padding: 8px 8px 12px;
}

.account-menu-copy strong {
  color: var(--ink);
  font-family: var(--font-main);
}

.account-menu-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.account-verify-note {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #fedf89;
  border-radius: 999px;
  padding: 5px 8px;
  background: #fffaeb;
  color: #b54708;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.account-verify-note.is-ok {
  border-color: #abefc6;
  background: #ecfdf3;
  color: #067647;
}

.account-menu-item {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 11px 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}

.account-menu-item:hover {
  background: #eef8ff;
  color: var(--brand-dark);
}

.hero,
.metrics-bar {
  width: min(var(--max-width), calc(100% - 56px));
  margin: 0 auto;
}

.category-band {
  width: min(1384px, calc(100% - 152px));
  margin: 0 auto 22px;
}

.evening-band,
.featured-band {
  width: min(var(--max-width), calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(520px, 560px);
  column-gap: 18px;
  row-gap: 0;
  justify-content: center;
  min-height: 348px;
  padding: 16px 106px 0;
  border-radius: 8px;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 300px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 249, 255, 0.96), rgba(255, 255, 255, 0.88) 38%, rgba(255, 240, 246, 0.95)),
    #f4f8ff;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 650px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 12px;
  border: 1px solid #b9e7ff;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: clamp(31px, 2.05vw, 41px);
  line-height: 1.18;
  letter-spacing: 0;
}

.trust-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 122px;
  gap: 5px;
  align-self: center;
  transform: translateX(-8px);
  transform-origin: center;
}

.mosaic-card,
.listing-media,
.evening-thumb {
  background-color: #e8edf5;
  background-position: center;
  background-size: cover;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  box-shadow: 0 15px 34px rgba(13, 30, 65, 0.14);
  transform: skewX(-8deg) translateZ(0);
  transform-origin: center;
}

.hero-mosaic .mosaic-card {
  background-image: none;
}

.mosaic-card::before {
  content: "";
  position: absolute;
  inset: -6px -16px;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transform: skewX(8deg) scale(1.08);
  transform-origin: center;
}

.mosaic-card:nth-child(4),
.mosaic-card:nth-child(5),
.mosaic-card:nth-child(6) {
  border-radius: 24px;
}

.mosaic-card:nth-child(1),
.mosaic-card:nth-child(4) {
  margin-left: 0;
}

.mosaic-card:nth-child(3),
.mosaic-card:nth-child(6) {
  margin-right: 0;
}

.mosaic-card:nth-child(1) {
  transform: skewX(-8deg) translateY(0);
}

.mosaic-card:nth-child(2) {
  transform: skewX(-8deg) translateY(0);
}

.mosaic-card:nth-child(3) {
  transform: skewX(-8deg) translateY(0);
}

.mosaic-card:nth-child(4) {
  transform: skewX(-8deg) translate(-20px, -2px);
}

.mosaic-card:nth-child(5) {
  transform: skewX(-8deg) translate(-20px, -2px);
}

.mosaic-card:nth-child(6) {
  transform: skewX(-8deg) translate(-20px, -2px);
}

.mosaic-card::after,
.listing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.32));
}

.mosaic-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 1;
  display: inline-grid;
  align-content: center;
  justify-items: center;
  gap: 0;
  width: min(117px, calc(100% - 26px));
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.14);
  color: var(--ink);
  transform: translateX(-50%) skewX(8deg);
  transform-origin: center bottom;
  backdrop-filter: blur(8px);
}

.mosaic-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 10.25px;
  font-weight: 560;
  line-height: 1.08;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mosaic-card small {
  display: block;
  color: #475467;
  font-size: 9px;
  font-weight: 520;
  line-height: 1.12;
  text-align: center;
}

.search-panel {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(420px, 1.7fr) minmax(260px, 0.9fr) 174px;
  gap: 8px;
  width: 1188px;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.13);
}

.search-field {
  position: relative;
  display: grid;
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.search-field::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f7ee6, #48a0f0);
  opacity: 0;
  transform: scaleX(0.96);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.search-field:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.search-field span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.search-field input,
.search-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #344054;
  font-weight: 600;
}

.search-field input {
  appearance: none;
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
}

.search-field input::selection {
  background: rgba(126, 163, 138, 0.22);
  color: #101828;
}

.search-field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #344054 50%) calc(100% - 14px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #344054 50%, transparent 50%) calc(100% - 9px) 50% / 7px 7px no-repeat;
  padding-right: 30px;
}

.search-button {
  min-height: 48px;
  align-self: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #2f7ee6 0%, #48a0f0 100%);
  box-shadow: 0 12px 26px rgba(64, 144, 240, 0.28);
  font-size: 15px;
}

.search-button:hover {
  background: linear-gradient(135deg, #236bd2 0%, #4090f0 100%);
  box-shadow: 0 14px 30px rgba(64, 144, 240, 0.34);
}

.popular-searches {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 1188px;
  max-width: 100%;
  margin: 14px auto 18px;
  border: 1px solid rgba(232, 237, 245, 0.88);
  border-radius: 14px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.popular-searches,
.category-band,
.featured-band,
.metrics-bar,
.inline-map-panel {
  font-family: var(--font-menu);
}

.popular-searches::-webkit-scrollbar {
  display: none;
}

.popular-searches strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
}

.popular-searches button,
.filter-pill {
  min-height: 28px;
  border: 1px solid rgba(218, 226, 237, 0.8);
  border-radius: 999px;
  padding: 0 14px;
  background: #f3f7fc;
  color: #24324a;
  font-size: 11px;
  font-weight: 500;
}

.popular-searches button:hover,
.filter-pill:hover,
.filter-pill.is-active {
  border-color: #b9e7ff;
  background: #eef8ff;
  color: var(--brand-dark);
}

.category-band {
  position: relative;
  overflow: hidden;
  padding: 8px 42px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.category-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: 72px;
  height: 94px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 78%);
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
}

.section-title-row.compact {
  justify-content: flex-start;
  padding: 8px 8px 12px;
}

.section-title-row h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title-row a {
  margin-left: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #475467;
  font-size: 12px;
  font-weight: 500;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.round-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
  color: var(--ink);
  font-size: 22px;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 152px;
  gap: 14px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 34px 4px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-card {
  display: grid;
  place-items: center;
  gap: 4px;
  scroll-snap-align: start;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  color: var(--ink);
}

.category-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(4, 167, 244, 0.16);
}

.category-card span {
  font-size: 28px;
  line-height: 1;
}

.category-card strong {
  font-size: 12px;
  font-weight: 600;
}

.category-card small {
  color: #344054;
  font-size: 11px;
  font-weight: 500;
}

.evening-band,
.featured-band {
  padding: 6px 60px 0;
}

.evening-band {
  margin-bottom: 24px;
}

.featured-band {
  margin-bottom: 28px;
  padding-right: 0;
  padding-left: 0;
}

.evening-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 12px;
}

.evening-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16, 24, 40, 0.05);
}

.evening-thumb {
  width: 54px;
  height: 48px;
  border-radius: 10px;
}

.evening-card strong,
.evening-card span,
.evening-card small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evening-card strong {
  color: var(--ink);
  font-size: 12px;
}

.evening-card span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.evening-card small {
  color: #475467;
  font-size: 11px;
}

.filter-pills {
  display: flex;
  min-width: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 128px 8px 8px;
  max-width: 100%;
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 148px), transparent 100%);
  scrollbar-width: none;
}

.filter-pills[hidden] {
  display: none;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.results-summary {
  min-height: 18px;
  padding: 0 8px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 540px);
  align-items: start;
  gap: 34px;
  width: 100%;
  overflow: hidden;
}

.featured-layout > * {
  min-width: 0;
}

.featured-results {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  max-height: 358px;
  overflow: clip;
  contain: paint;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 16px;
  min-height: 0;
  overflow: hidden;
}

.inline-map-panel {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 10px;
  min-width: 0;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.inline-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.inline-map-header strong,
.inline-map-header span {
  display: block;
}

.inline-map-header strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.inline-map-header span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.inline-map-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.inline-map-header .ghost-button {
  min-height: 34px;
  padding: 0 11px;
}

.inline-nearby-map {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
}

.inline-nearby-results {
  display: none;
}

.inline-nearby-results .nearby-result {
  grid-template-columns: 30px 1fr;
  padding: 8px;
}

.inline-nearby-results .nearby-result > span {
  width: 30px;
  height: 30px;
  font-size: 16px;
}

.map-expand-button {
  position: absolute;
  z-index: 20;
  top: auto;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(222, 232, 244, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.16);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.map-expand-button:hover {
  border-color: #9adfff;
  transform: translateY(-1px);
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.listing-media {
  position: relative;
  height: 67px;
}

.listing-media span {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 8px;
  border-radius: 999px;
  padding: 4px 7px;
  background: #08a95a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.listing-media button {
  position: absolute;
  z-index: 2;
  right: 7px;
  top: 7px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 18px;
}

.listing-body {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 7px 10px 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #101828;
  font-size: 11px;
  font-weight: 900;
}

.rating-row span {
  color: #101828;
}

.rating-row small,
.listing-body p,
.listing-price span {
  color: #475467;
}

.listing-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.16;
}

.listing-body p {
  min-height: 17px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

.rank-badges {
  display: flex;
  gap: 4px;
  min-height: 20px;
  overflow: hidden;
}

.rank-badges span {
  display: inline-flex;
  align-items: center;
  max-width: 82px;
  min-height: 18px;
  border-radius: 999px;
  padding: 0 7px;
  background: #eef8ff;
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.listing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 2px;
}

.listing-price strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.listing-price span {
  font-size: 10px;
  font-weight: 500;
}

.card-cta {
  justify-self: end;
  min-height: 26px;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 10px;
}

.metrics-bar {
  margin-top: 16px;
  margin-bottom: 18px;
  padding: 0 60px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 0;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}

.hero-metrics article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  align-items: center;
  gap: 0 10px;
  min-height: 44px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero-metrics article:last-child {
  border-right: 0;
}

.metric-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eaf1ff;
  color: var(--blue);
  font-weight: 900;
}

.hero-metrics strong {
  grid-area: value;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.hero-metrics small {
  grid-area: label;
  color: #344054;
  font-size: 11px;
  font-weight: 500;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cdd5df;
  border-radius: 14px;
  min-height: 136px;
  padding: 22px;
  background: #fff;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 6px;
  color: var(--ink);
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.media-pet {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22)), url("/assets/pet-kuafor-grooming.png");
  background-position: center;
}

.mosaic-card.media-pet::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22)), url("/assets/pet-kuafor-grooming.png");
  background-position: center;
}

.media-padel {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1626224583764-f87db24ac4ea?auto=format&fit=crop&w=900&q=80");
}

.mosaic-card.media-padel::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1626224583764-f87db24ac4ea?auto=format&fit=crop&w=900&q=80");
}

.media-beauty {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("/assets/guzellik-merkezi-device.png");
  background-position: center;
}

.mosaic-card.media-beauty::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("/assets/guzellik-merkezi-device.png");
  background-size: cover;
  background-position: center 42%;
}

.media-field {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=900&q=80");
}

.mosaic-card.media-field::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=900&q=80");
}

.media-driving {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80");
}

.mosaic-card.media-driving::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80");
}

.media-spa {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25)), url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=900&q=80");
}

.mosaic-card.media-spa::before {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25)), url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=900&q=80");
}

.media-lesson {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=900&q=80");
}

.media-physio {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24)), url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=900&q=80");
}

.modal-open {
  overflow: hidden;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
}

.map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 35, 0.48);
}

.map-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  width: min(1440px, calc(100vw - 28px));
  height: calc(100vh - 28px);
  max-height: calc(100vh - 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(8, 15, 35, 0.28);
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 0;
}

.map-toolbar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: 0;
}

.map-toolbar span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.map-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-actions .round-arrow {
  font-size: 22px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 12px;
  height: 100%;
  min-height: 0;
}

.nearby-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 22% 18%, rgba(4, 167, 244, 0.12), transparent 26%),
    radial-gradient(circle at 78% 62%, rgba(255, 45, 116, 0.10), transparent 22%),
    #eaf4f9;
}

.nearby-map.inline-nearby-map {
  height: clamp(300px, 30vw, 430px);
  min-height: 0;
  aspect-ratio: auto;
}

.leaflet-map-surface {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.nearby-map.inline-nearby-map .leaflet-map-surface {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.nearby-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #eef5f8;
  font-family: var(--font-main);
}

.nearby-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(222, 232, 244, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.12);
}

.nearby-map .leaflet-control-zoom a {
  border: 0;
  color: var(--ink);
}

.nearby-map .leaflet-tile {
  filter: saturate(0.72) brightness(1.06) contrast(0.92);
}

.nearby-map-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: #eef5f8;
}

.nearby-map-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 50%, rgba(93, 196, 225, 0.20) 50% 59%, transparent 59%),
    linear-gradient(32deg, transparent 0 59%, rgba(93, 196, 225, 0.15) 59% 66%, transparent 66%),
    radial-gradient(circle at 18% 22%, rgba(103, 209, 144, 0.19), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(103, 209, 144, 0.16), transparent 21%),
    #eef5f8;
}

.map-water,
.map-park,
.map-road,
.map-label {
  position: absolute;
  display: block;
}

.map-water {
  background: rgba(76, 193, 235, 0.28);
  box-shadow: inset 0 0 0 1px rgba(76, 193, 235, 0.18);
}

.water-one {
  right: -12%;
  top: -18%;
  width: 36%;
  height: 128%;
  border-radius: 50%;
  transform: rotate(11deg);
}

.water-two {
  left: -16%;
  bottom: -22%;
  width: 42%;
  height: 58%;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.map-park {
  border-radius: 46% 54% 48% 52%;
  background: rgba(114, 207, 139, 0.22);
}

.park-one {
  left: 16%;
  top: 14%;
  width: 20%;
  height: 18%;
}

.park-two {
  right: 17%;
  bottom: 13%;
  width: 22%;
  height: 20%;
}

.map-road {
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: #cfdbe8;
  box-shadow: 0 2px 0 rgba(138, 154, 174, 0.13);
}

.road-main {
  left: -8%;
  top: 58%;
  width: 116%;
  transform: rotate(-12deg);
}

.road-cross {
  left: 2%;
  top: 35%;
  width: 96%;
  transform: rotate(21deg);
}

.road-ridge {
  left: 22%;
  top: 75%;
  width: 70%;
  transform: rotate(6deg);
}

.road-coast {
  left: 58%;
  top: 5%;
  width: 70%;
  transform: rotate(78deg);
}

.map-label {
  z-index: 1;
  color: rgba(15, 31, 60, 0.5);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.label-one {
  left: 43%;
  top: 50%;
}

.label-two {
  left: 50%;
  top: 27%;
}

.label-three {
  right: 15%;
  top: 37%;
}

.label-four {
  left: 31%;
  bottom: 20%;
}

.label-five {
  left: 14%;
  top: 43%;
  padding: 2px 8px;
  border: 1px solid rgba(188, 137, 45, 0.34);
  border-radius: 6px;
  background: rgba(255, 225, 146, 0.78);
  font-size: 13px;
}

.nearby-pin-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.nearby-results {
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  max-height: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #f8fbff;
}

.nearby-result {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 9px;
  width: 100%;
  border: 1px solid #e4edf8;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.nearby-result:hover {
  border-color: #9adfff;
  background: #f1fbff;
}

.nearby-result > span {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #7f3fb0;
  font-size: 18px;
}

.nearby-result strong,
.nearby-result small,
.nearby-result em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nearby-result strong {
  font-size: 13px;
}

.nearby-result small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.nearby-result em {
  color: var(--brand-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.nearby-empty {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: var(--ink);
}

.nearby-empty span {
  color: var(--muted);
  font-size: 12px;
}

.tyee-map-pin,
.tyee-user-pin,
.tyee-map-pin-button,
.tyee-user-pin-button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.tyee-map-pin {
  background: transparent;
}

.tyee-map-pin::after,
.tyee-map-pin-button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-radius: 0 0 3px 0;
  background: #71349c;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 8px 18px rgba(35, 14, 62, 0.28);
}

.tyee-map-pin span,
.tyee-map-pin-button span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7f3fb0;
  box-shadow: 0 8px 18px rgba(35, 14, 62, 0.28);
  font-size: 22px;
}

.tyee-map-pin:focus-visible span,
.tyee-map-pin-button.is-active span,
.tyee-map-pin-button:focus-visible span {
  border-color: #ffcb3d;
  transform: scale(1.08);
}

.tyee-user-pin,
.tyee-user-pin-button {
  z-index: 3;
}

.tyee-user-pin span,
.tyee-user-pin-button span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #04a7f4, #ef3f92);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.24);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 35, 0.48);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(8, 15, 35, 0.28);
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 12px;
}

.auth-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 22px 14px;
}

.auth-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.auth-tab.is-active {
  border-color: #b9e7ff;
  background: #eef8ff;
  color: var(--brand-dark);
}

.auth-form {
  display: grid;
  gap: 14px;
  padding: 0 22px 22px;
}

.auth-step,
.auth-form label {
  display: grid;
  gap: 10px;
}

.auth-form label span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.auth-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  outline: 0;
}

.auth-feedback {
  min-height: 18px;
  margin: 0;
  color: #d92d20;
  font-size: 12px;
  font-weight: 800;
}

.auth-feedback.is-success {
  color: var(--green);
}

.auth-submit,
.auth-back-button {
  width: 100%;
  min-height: 44px;
}

.auth-role-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
}

.auth-role-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-role-grid {
  display: grid;
  gap: 10px;
}

.auth-role-card {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.auth-role-card:hover {
  border-color: #b9e7ff;
  background: #f3fbff;
}

.auth-role-card strong {
  font-size: 14px;
}

.auth-role-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ghost-button {
  background: #fff;
}

@media (max-width: 1500px) {
  .site-header {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 12px;
    width: min(var(--max-width), calc(100% - 44px));
  }

  .brand {
    min-width: 210px;
  }

  .brand-logo {
    width: 152px;
  }

  .main-nav {
    gap: clamp(18px, 1.8vw, 30px);
    font-size: clamp(15px, 1vw, 17px);
  }

  .header-actions {
    gap: 6px;
  }

  .location-button,
  .saved-button {
    gap: 7px;
    padding: 0 10px;
  }

  .saved-button {
    width: 38px;
    min-width: 38px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .saved-button::before {
    content: "♡";
    font-size: 16px;
  }

  .reserve-now {
    padding: 0 12px;
  }

  .featured-layout {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 540px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .search-panel,
  .popular-searches {
    width: min(100%, calc(100% - 56px));
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-layout {
    grid-template-columns: 1fr;
  }

  .featured-results {
    max-height: none;
    overflow: visible;
  }

  .inline-map-panel {
    position: relative;
    top: auto;
  }

  .evening-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .nearby-map {
    height: 460px;
    min-height: 460px;
  }

  .nearby-results {
    max-height: 220px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header,
  .hero,
  .category-band,
  .evening-band,
  .featured-band,
  .metrics-bar {
    width: min(100%, calc(100% - 24px));
  }

  .hero-mosaic,
  .search-panel,
  .evening-rail,
  .featured-layout,
  .listing-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .category-rail {
    grid-auto-columns: 134px;
  }

  .search-panel {
    margin-top: 12px;
  }

  .search-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .map-modal {
    padding: 10px;
  }

  .map-dialog {
    max-height: calc(100vh - 20px);
  }

  .map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nearby-map {
    height: 360px;
    min-height: 360px;
  }

  .category-band,
  .evening-band,
  .featured-band,
  .metrics-bar {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
