:root {
  --bg: #ffffff;
  --footer-bg: #f7f7f7;
  --surface: #ffffff;
  --ink: #222222;
  --muted: #6a6a6a;
  --line: #dddddd;
  --line-soft: #ebebeb;
  --accent: #ff385c;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
a {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

input::placeholder {
  color: var(--muted);
}

.shell {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.shell-header {
  position: relative;
  padding: 22px 0 26px;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-wordmark {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-tabs {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: opacity, transform;
}

.nav-tab,
.mobile-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 12px;
  border-radius: 999px;
  color: #5f5f5f;
  transition: color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.nav-tab:hover,
.mobile-tab:hover {
  background: #f7f7f7;
  color: var(--ink);
}

.nav-tab.is-active,
.mobile-tab.is-active {
  color: var(--ink);
}

.nav-tab.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.tab-icon.emoji {
  font-size: 2rem;
  line-height: 1;
}

.tab-copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tab-badge {
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(180deg, #536882, #2b3f58);
}

.tab-label {
  font-size: 1.05rem;
  font-weight: 700;
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-search-pill {
  display: none;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease,
    visibility 240ms ease;
  will-change: opacity, transform;
}

.sticky-pill-icon,
.sticky-pill-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sticky-pill-icon svg,
.sticky-pill-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-pill-icon {
  color: #444444;
}

.sticky-pill-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
}

.sticky-pill-trigger:hover {
  color: var(--ink);
}

.sticky-pill-copy {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.sticky-pill-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.sticky-pill-submit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
}

.host-link {
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.host-link:hover,
.mobile-host-link:hover {
  background: #f7f7f7;
}

.round-icon-button,
.menu-button,
.rail-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  background: #f7f7f7;
}

.round-icon-button svg,
.menu-button svg,
.search-button svg,
.rail-button svg,
.footer-locale svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  will-change: opacity, transform;
}

.search-field {
  position: relative;
}

.search-field-where {
  cursor: pointer;
}

.search-field-where .where-input {
  cursor: pointer;
}

.search-field-when {
  cursor: pointer;
}

.search-field-when .when-input {
  cursor: pointer;
}

.search-field-service {
  cursor: pointer;
}

.search-field-service .service-input {
  cursor: pointer;
}

.search-field.is-active {
  z-index: 1;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.where-popover {
  position: absolute;
  top: calc(100% + 14px);
  width: min(620px, calc(100vw - 120px));
  padding: 26px 22px 22px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  z-index: 5;
  max-height: 400px;
  overflow: auto;
}

.where-popover[hidden] {
  display: none !important;
}

.where-popover-title {
  margin: 0 0 14px;
  padding-inline: 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.where-option-list {
  display: grid;
  gap: 6px;
}

.where-option {
  width: 100%;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 10px 12px 6px;
  border-radius: 22px;
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
}

.where-option:hover,
.where-option.is-active {
  background: #f7f7f7;
  transform: translateY(-1px);
}

.where-option-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--option-color, #4b8fe2);
  background: var(--option-bg, #edf4ff);
}

.where-option-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.where-option-copy {
  display: grid;
  gap: 2px;
}

.where-option-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.where-option-copy span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.3;
}

.date-popover {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, calc(100vw - 120px));
  display: grid;
  grid-template-columns: 228px 1fr;
  gap: 28px;
  padding: 26px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  z-index: 5;
}

.date-popover[hidden] {
  display: none !important;
}

.service-popover {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, calc(100vw - 160px));
  padding: 22px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  z-index: 5;
}

.service-popover[hidden] {
  display: none !important;
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-chip:hover,
.service-chip.is-active {
  border-color: #cfcfcf;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.service-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-chip-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-preset-list {
  display: grid;
  gap: 16px;
}

.date-preset {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.date-preset:hover,
.date-preset.is-active {
  border-color: #cfcfcf;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.date-preset strong {
  font-size: 1.05rem;
}

.date-preset-copy {
  color: var(--muted);
}

.date-calendar {
  min-width: 0;
}

.date-calendar-header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.date-calendar-title {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.date-nav-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #555555;
}

.date-nav-button:hover {
  background: #f7f7f7;
}

.date-nav-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.date-weekdays {
  margin-bottom: 16px;
}

.date-grid {
  gap: 8px 4px;
}

.date-weekdays span {
  text-align: center;
  color: #6a6a6a;
  font-weight: 700;
}

.calendar-day,
.calendar-day-empty {
  aspect-ratio: 1 / 1;
}

.calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #2d2d2d;
}

.calendar-day:hover {
  background: #f7f7f7;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.calendar-day.is-selected {
  color: #ffffff;
  background: var(--ink);
}

.calendar-day.is-outside {
  color: #d2d2d2;
  pointer-events: none;
}

.mobile-search-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.mobile-search-modal[hidden] {
  display: none !important;
}

.mobile-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.28);
}

.mobile-search-sheet {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: #f7f7f7;
}

.mobile-search-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 24px;
}

.mobile-search-card,
.mobile-search-summary {
  width: 100%;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mobile-search-card {
  padding: 28px 18px 20px;
}

.mobile-search-card + .mobile-search-summary,
.mobile-search-summary + .mobile-search-card,
.mobile-search-summary + .mobile-search-summary {
  margin-top: 14px;
}

.mobile-search-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mobile-search-card-label {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.mobile-search-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mobile-search-close,
.mobile-panel-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.mobile-search-close {
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
}

.mobile-search-close svg,
.mobile-panel-back svg,
.mobile-submit-button svg,
.mobile-date-nav-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-destination-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid #b8b8b8;
  border-radius: 18px;
}

.mobile-destination-input {
  font-size: 1rem;
}

.mobile-search-section-title {
  margin: 18px 0 14px;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-where-option-list {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.mobile-where-option {
  width: 100%;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  text-align: left;
}

.mobile-where-option.is-hidden {
  display: none;
}

.mobile-where-option .where-option-icon {
  width: 70px;
  height: 70px;
}

.mobile-search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
  text-align: left;
}

.mobile-search-summary-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.mobile-search-summary-value {
  font-size: 1rem;
  font-weight: 800;
}

.mobile-panel-back {
  margin-bottom: 18px;
  padding: 0;
  font-weight: 800;
}

.mobile-date-preset-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-date-preset {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
}

.mobile-date-preset.is-active {
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-date-preset-copy {
  color: var(--muted);
}

.mobile-date-calendar {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: #ffffff;
}

.mobile-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mobile-date-nav-button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6f6f6;
}

.guest-counter-list {
  display: grid;
}

.guest-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.guest-counter-row + .guest-counter-row {
  border-top: 1px solid var(--line-soft);
}

.guest-counter-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.guest-counter-row span {
  color: var(--muted);
}

.guest-stepper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.guest-stepper-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b5b5b5;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
}

.guest-stepper-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.guest-stepper-value {
  min-width: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.mobile-search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6px 4px;
}

.mobile-clear-button {
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 800;
}

.mobile-submit-button {
  min-width: 126px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff385c, #d70466);
  box-shadow: 0 12px 24px rgba(215, 4, 102, 0.24);
  font-size: 1.05rem;
  font-weight: 800;
}

.body-modal-open {
  overflow: hidden;
}

.mobile-header-panel {
  display: none;
}

.mobile-search-pill {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.mobile-search-icon,
.mobile-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  margin-top: 14px;
}
.mobile-service-badge{
  display: none;
}
.mobile-service-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 6px 10px;
  color: #6c6c6c;
}

.mobile-service-tab.is-active {
  color: var(--ink);
}

.mobile-service-tab.is-active::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-service-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.mobile-service-label {
  font-size: 0.83rem;
  font-weight: 700;
}

.mobile-service-badge {
  margin-top: -4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(180deg, #536882, #2b3f58);
}

.search-panel {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 56px;
  justify-content: center;
  padding: 0 24px;
}

.search-field + .search-field {
  border-left: 1px solid var(--line);
}

.field-title {
  font-size: 0.88rem;
  font-weight: 800;
}

.search-field input {
  font-size: 0.96rem;
}

.search-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
}

.mobile-drawer {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.desktop-menu-popover {
  position: absolute;
  top: 82px;
  right: 0;
  width: 332px;
  padding: 14px 0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  z-index: 8;
}

.desktop-menu-popover[hidden] {
  display: none !important;
}

.desktop-menu-link,
.desktop-menu-feature {
  padding-inline: 28px;
}

.desktop-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  font-size: 1.02rem;
}

.desktop-menu-link:hover {
  background: #f8f8f8;
}

.desktop-menu-link-strong {
  font-weight: 800;
}

.desktop-menu-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-menu-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  margin: 6px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.desktop-menu-feature strong {
  display: block;
  font-size: 1rem;
}

.desktop-menu-feature p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.desktop-menu-feature-art {
  font-size: 2.1rem;
  line-height: 1;
}

.mobile-tabs {
  display: grid;
  gap: 8px;
}

.mobile-tab {
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fafafa;
  font-weight: 700;
}

.mobile-host-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fafafa;
  font-weight: 700;
}

main {
  padding-bottom: 0;
}

.listing-section {
  padding: 34px 0 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.inspiration-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-button {
  border: 1px solid var(--line-soft);
  background: #ffffff;
}

.card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(185px, 185px);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
}

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

.listing-card {
  min-width: 0;
}

.card-link {
  display: block;
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f3f3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-tag,
.heart-button {
  position: absolute;
  top: 10px;
  z-index: 1;
}

.card-tag {
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
}

.heart-button {
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(34, 34, 34, 0.25);
  backdrop-filter: blur(6px);
}

.heart-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.card-content {
  padding: 10px 2px 0;
}

.card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.card-subtitle,
.card-price,
.card-rating {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.card-rating {
  color: #5f5f5f;
}

.inspiration-section {
  margin-top: 52px;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line-soft);
  background: var(--footer-bg);
}

.inspiration-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inspiration-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.inspiration-tab {
  position: relative;
  padding: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.inspiration-tab.is-active {
  color: var(--ink);
}

.inspiration-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ink);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 24px;
  padding-top: 28px;
}

.inspiration-link {
  display: block;
}

.inspiration-link strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
}

.inspiration-link span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0 24px;
  background: var(--footer-bg);
  border-top: 1px solid var(--line-soft);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-column a {
  display: block;
  margin: 0 0 14px;
  color: #2f2f2f;
}

.footer-column a:hover,
.footer-meta a:hover,
.footer-social a:hover,
.inspiration-link:hover strong {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-meta,
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #333333;
}

.footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.footer-social a {
  font-weight: 800;
}

.nav-tab:focus-visible,
.mobile-tab:focus-visible,
.host-link:focus-visible,
.mobile-host-link:focus-visible,
.round-icon-button:focus-visible,
.menu-button:focus-visible,
.where-option:focus-visible,
.date-preset:focus-visible,
.date-nav-button:focus-visible,
.calendar-day:focus-visible,
.service-chip:focus-visible,
.desktop-menu-link:focus-visible,
.rail-button:focus-visible,
.search-button:focus-visible,
.inspiration-tab:focus-visible,
.heart-button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 56, 92, 0.22);
  outline-offset: 3px;
}

@media (min-width: 861px) {
  .topbar {
    min-height: 64px;
  }

  .nav-tabs {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .sticky-search-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.94);
  }

  /* .search-wrap {
    max-height: 124px;
    overflow: clip;
  } */

  .site-header.is-scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
  }

  .site-header.is-scrolled .shell-header {
    padding: 18px 0;
  }

  .site-header.is-scrolled .nav-tabs {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.96);
  }

  .site-header.is-scrolled .sticky-search-pill {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .site-header.is-scrolled .search-wrap {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    /* transform: translateY(-16px); */
  }

  .site-header.is-search-expanded {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
  }

  .site-header.is-search-expanded .shell-header {
    padding: 22px 0 26px;
  }

  .site-header.is-search-expanded .nav-tabs {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.is-search-expanded .sticky-search-pill {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.94);
  }

  .site-header.is-search-expanded .search-wrap {
    max-height: 124px;
    margin-top: 20px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "tabs tabs";
  }

  .brand {
    grid-area: brand;
  }

  .top-actions {
    grid-area: actions;
  }

  .nav-tabs {
    grid-area: tabs;
    margin-top: 8px;
  }

  .sticky-search-pill {
    grid-area: tabs;
  }

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

@media (max-width: 860px) {
  .shell {
    width: min(100%, calc(100% - 32px));
  }

  .shell-header {
    padding: 10px 0 0;
  }

  .topbar,
  .search-wrap,
  .mobile-drawer,
  .sticky-search-pill,
  .desktop-menu-popover {
    display: none;
  }

  .date-popover {
    display: none !important;
  }

  .where-popover {
    display: none !important;
  }

  .service-popover {
    display: none !important;
  }

  .mobile-header-panel {
    display: block;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-search-modal.is-open {
    display: block;
  }

  .site-header.is-mobile-scrolled .mobile-header-panel {
    padding-bottom: 6px;
  }

  .site-header.is-mobile-scrolled .mobile-service-icon{
    display: none;
  }

  .site-header.is-mobile-scrolled .mobile-search-pill {
    min-height: 48px;
  }

  .section-head h2,
  .inspiration-header h2 {
    font-size: 1.15rem;
  }

  .listing-section {
    padding-top: 18px;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .rail-controls {
    display: none;
  }

  .card-rail {
    grid-auto-columns: minmax(152px, 152px);
    gap: 10px;
  }

  .card-media {
    border-radius: 16px;
  }

  .card-content {
    padding-top: 8px;
  }

  .card-title {
    font-size: 0.92rem;
  }

  .card-subtitle,
  .card-price,
  .card-rating {
    font-size: 0.76rem;
  }

  .inspiration-section {
    margin-top: 28px;
    padding: 28px 0 18px;
  }

  .inspiration-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .inspiration-tabs::-webkit-scrollbar {
    display: none;
  }

  .inspiration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding-top: 20px;
  }

  .inspiration-link strong {
    font-size: 0.96rem;
  }

  .inspiration-link span {
    font-size: 0.85rem;
  }

  .site-footer {
    padding-top: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-column {
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
  }

  .footer-column:first-child {
    border-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .inspiration-tabs {
    gap: 14px 18px;
  }

  .shell {
    width: min(100%, calc(100% - 16px));
  }

  .mobile-header-panel {
    padding-inline: 0;
  }

  .mobile-search-sheet {
    padding: 10px 8px 12px;
  }

  .mobile-search-card {
    padding-inline: 16px;
  }

  .mobile-search-title {
    font-size: 1.85rem;
  }

  .footer-bottom {
    padding-top: 18px;
  }

  .footer-meta,
  .footer-social {
    gap: 8px;
  }
}


.mobile-date-preset-list {
  display:flex ;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.mobile-date-preset-list > button ,.inspiration-tab{
  white-space: nowrap;
}

.site-header.is-mobile-scrolled {
	position: fixed;
	width: 100%;
}