/* [project]/app/components/Nav.module.css [app-client] (css) */
.Nav-module__jmVfSG__nav {
  background: var(--surface);
  border-bottom: 1px solid var(--sand-6);
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  display: flex;
  position: sticky;
  top: 0;
}

.Nav-module__jmVfSG__left {
  align-items: center;
  gap: 38px;
  display: flex;
}

.Nav-module__jmVfSG__logo {
  font-family: var(--font-serif);
  color: var(--text-heading);
  letter-spacing: -.01em;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
}

.Nav-module__jmVfSG__dot {
  color: var(--teal);
}

.Nav-module__jmVfSG__links {
  color: var(--text-body);
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.Nav-module__jmVfSG__links a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.Nav-module__jmVfSG__links a:hover {
  color: var(--teal);
}

.Nav-module__jmVfSG__active {
  color: var(--teal) !important;
}

.Nav-module__jmVfSG__right {
  color: var(--text-body);
  align-items: center;
  gap: 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
}

.Nav-module__jmVfSG__help {
  color: var(--teal);
  align-items: center;
  gap: 6px;
  text-decoration: none;
  display: inline-flex;
}

.Nav-module__jmVfSG__saved {
  color: var(--text-mid);
  text-decoration: none;
}

.Nav-module__jmVfSG__dropdown {
  position: relative;
}

.Nav-module__jmVfSG__dropdownSummary {
  cursor: pointer;
  color: var(--text-body);
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
}

.Nav-module__jmVfSG__dropdownSummary::-webkit-details-marker {
  display: none;
}

.Nav-module__jmVfSG__dropdownMenu {
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  z-index: 200;
  border-radius: 14px;
  flex-direction: column;
  min-width: 190px;
  padding: 6px;
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
}

.Nav-module__jmVfSG__dropdown[open] .Nav-module__jmVfSG__dropdownMenu {
  display: flex;
}

.Nav-module__jmVfSG__dropdownItem {
  text-align: left;
  color: var(--text-body);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: none;
  border: none;
  border-radius: 9px;
  width: 100%;
  padding: 10px 13px;
}

.Nav-module__jmVfSG__dropdownItem:hover {
  background: var(--sand);
  color: var(--teal);
}

.Nav-module__jmVfSG__dropdownItemActive {
  color: var(--teal) !important;
  background: var(--seafoam) !important;
}

.Nav-module__jmVfSG__account {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-body);
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
}

.Nav-module__jmVfSG__avatar {
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

@media (max-width: 768px) {
  .Nav-module__jmVfSG__nav {
    padding: 14px 16px;
  }

  .Nav-module__jmVfSG__links, .Nav-module__jmVfSG__saved, .Nav-module__jmVfSG__right > span:not(.Nav-module__jmVfSG__saved) {
    display: none;
  }

  .Nav-module__jmVfSG__right {
    gap: 10px;
  }

  .Nav-module__jmVfSG__help {
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .Nav-module__jmVfSG__account span:last-child {
    display: none;
  }
}

/* [project]/app/components/DarkModeToggle.module.css [app-client] (css) */
.DarkModeToggle-module__1E9TOa__btn {
  border: 1.5px solid var(--border);
  background: var(--surface);
  width: 34px;
  height: 34px;
  color: var(--text-body);
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  transition: border-color .15s, background .15s;
  display: inline-flex;
}

.DarkModeToggle-module__1E9TOa__btn:hover {
  border-color: var(--teal);
  background: var(--seafoam);
}

/* [project]/app/components/Footer.module.css [app-client] (css) */
.Footer-module__nhiC3q__footer {
  background: var(--basalt);
  color: #fff;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  display: flex;
}

.Footer-module__nhiC3q__brand {
  max-width: 280px;
}

.Footer-module__nhiC3q__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.Footer-module__nhiC3q__dot {
  color: var(--cyan);
}

.Footer-module__nhiC3q__brand p {
  color: #9aa3ad;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.Footer-module__nhiC3q__cols {
  gap: 56px;
  font-size: 13px;
  display: flex;
}

.Footer-module__nhiC3q__colHead {
  margin-bottom: 12px;
  font-weight: 700;
}

.Footer-module__nhiC3q__colLinks {
  color: #9aa3ad;
  flex-direction: column;
  gap: 8px;
  line-height: 2;
  display: flex;
}

.Footer-module__nhiC3q__colLinks a {
  color: inherit;
  text-decoration: none;
}

.Footer-module__nhiC3q__colLinks a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .Footer-module__nhiC3q__footer {
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }

  .Footer-module__nhiC3q__brand {
    max-width: 100%;
  }

  .Footer-module__nhiC3q__cols {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* [project]/app/listing/listing.module.css [app-client] (css) */
.listing-module__XGvdya__page {
  background: var(--sand);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.listing-module__XGvdya__main {
  flex: 1;
}

.listing-module__XGvdya__heading {
  background: var(--sand);
  padding: 22px 40px 0;
}

.listing-module__XGvdya__breadcrumb {
  color: var(--text-muted);
  font-size: 12.5px;
}

.listing-module__XGvdya__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.listing-module__XGvdya__breadcrumb a:hover {
  color: var(--teal);
}

.listing-module__XGvdya__breadcrumb span {
  color: var(--text-body);
  font-weight: 600;
}

.listing-module__XGvdya__headRow {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
  display: flex;
}

.listing-module__XGvdya__h1 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-size: 32px;
  font-weight: 500;
}

.listing-module__XGvdya__subtitle {
  color: var(--text-mid);
  margin-top: 4px;
  font-size: 14px;
}

.listing-module__XGvdya__controls {
  align-items: center;
  gap: 12px;
  display: flex;
}

.listing-module__XGvdya__select {
  border: 1px solid var(--border);
  color: var(--text-body);
  background: var(--surface);
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.listing-module__XGvdya__caret {
  color: var(--text-muted);
}

.listing-module__XGvdya__toggle {
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  overflow: hidden;
}

.listing-module__XGvdya__toggle span {
  color: var(--text-body);
  padding: 9px 15px;
}

.listing-module__XGvdya__toggleActive {
  background: var(--basalt);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  padding: 9px 15px;
  color: #fff !important;
}

.listing-module__XGvdya__toggleBtn {
  color: var(--text-body);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: none;
  border: none;
  padding: 9px 15px;
}

.listing-module__XGvdya__body {
  gap: 28px;
  padding: 24px 40px 40px;
  display: flex;
}

.listing-module__XGvdya__filters {
  background: var(--surface);
  border: 1px solid var(--sand-6);
  border-radius: 14px;
  flex: 0 0 240px;
  height: fit-content;
  padding: 20px;
  position: sticky;
  top: 90px;
}

.listing-module__XGvdya__filterHead {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.listing-module__XGvdya__filterTitle {
  color: var(--text-heading);
  font-size: 14px;
  font-weight: 700;
}

.listing-module__XGvdya__clearBtn {
  color: var(--teal);
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
}

.listing-module__XGvdya__filterDivider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 14px 0;
}

.listing-module__XGvdya__filterGroup {
  flex-direction: column;
  gap: 9px;
  display: flex;
}

.listing-module__XGvdya__filterLabel {
  color: var(--text-heading);
  margin-bottom: 2px;
  font-size: 12.5px;
  font-weight: 700;
}

.listing-module__XGvdya__checkRow {
  color: var(--text-body);
  cursor: pointer;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  display: flex;
}

.listing-module__XGvdya__checkOn {
  background: var(--teal);
  color: #fff;
  border-radius: 5px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
}

.listing-module__XGvdya__checkOff {
  border: 1.5px solid var(--text-faint);
  border-radius: 5px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

.listing-module__XGvdya__filterCount {
  color: var(--text-muted);
  margin-left: auto;
}

button.listing-module__XGvdya__checkRow {
  text-align: left;
  width: 100%;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
}

button.listing-module__XGvdya__chip {
  font-family: var(--font-sans);
  cursor: pointer;
  background: none;
}

button.listing-module__XGvdya__chipActive {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}

.listing-module__XGvdya__rangeInput {
  width: 100%;
  accent-color: var(--teal);
  cursor: pointer;
  margin-bottom: 8px;
}

.listing-module__XGvdya__sliderTrack {
  background: var(--sand-5);
  border-radius: 2px;
  height: 4px;
  margin: 0 4px 8px;
  position: relative;
}

.listing-module__XGvdya__sliderFill {
  background: var(--teal);
  border-radius: 2px;
  position: absolute;
  inset: 0 32% 0 6%;
}

.listing-module__XGvdya__sliderThumbL {
  background: var(--surface);
  border: 2px solid var(--teal);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -5px;
  left: 6%;
}

.listing-module__XGvdya__sliderThumbR {
  background: var(--surface);
  border: 2px solid var(--teal);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -5px;
  right: 32%;
}

.listing-module__XGvdya__sliderVals {
  color: var(--text-muted);
  justify-content: space-between;
  font-size: 12px;
  display: flex;
}

.listing-module__XGvdya__chips {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.listing-module__XGvdya__chip {
  border: 1px solid var(--border);
  color: var(--text-mid);
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
}

.listing-module__XGvdya__chipActive {
  background: var(--seafoam);
  color: var(--teal-mid);
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
}

.listing-module__XGvdya__results {
  flex: 1;
  min-width: 0;
}

.listing-module__XGvdya__topBar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.listing-module__XGvdya__activeTags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.listing-module__XGvdya__activeTag {
  background: var(--basalt);
  color: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.listing-module__XGvdya__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

.listing-module__XGvdya__select {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.listing-module__XGvdya__mapView {
  width: 100%;
}

.listing-module__XGvdya__mapIframe {
  border: none;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  width: 100%;
  height: 520px;
  display: block;
}

.listing-module__XGvdya__mapHint {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 12.5px;
}

.listing-module__XGvdya__noResults {
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .listing-module__XGvdya__heading {
    padding: 16px 16px 0;
  }

  .listing-module__XGvdya__headRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .listing-module__XGvdya__h1 {
    font-size: 24px;
  }

  .listing-module__XGvdya__topBar {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-module__XGvdya__controls {
    flex-wrap: wrap;
    gap: 8px;
  }

  .listing-module__XGvdya__body {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .listing-module__XGvdya__filters {
    flex: none;
    width: 100%;
    position: static;
  }

  .listing-module__XGvdya__grid {
    grid-template-columns: 1fr;
  }

  .listing-module__XGvdya__mapIframe {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .listing-module__XGvdya__grid {
    grid-template-columns: 1fr;
  }

  .listing-module__XGvdya__activeTags {
    flex-wrap: wrap;
  }

  .listing-module__XGvdya__mapIframe {
    height: 280px;
  }
}

/* [project]/app/components/ExperienceCard.module.css [app-client] (css) */
.ExperienceCard-module__FbnPmW__card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: inherit;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  display: block;
  overflow: hidden;
}

.ExperienceCard-module__FbnPmW__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px #1a233014, 0 18px 38px #1a233017;
}

.ExperienceCard-module__FbnPmW__imgWrap {
  background-color: #cfe3e6;
  background-position: 50%;
  background-size: cover;
  height: 200px;
  position: relative;
}

.ExperienceCard-module__FbnPmW__badgeInstant {
  background: var(--coral-bg);
  color: var(--coral-dark);
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  position: absolute;
  top: 12px;
  left: 12px;
}

.ExperienceCard-module__FbnPmW__badgeFeatured {
  background: var(--gold-bg);
  color: var(--gold-dark);
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  position: absolute;
  top: 12px;
  left: 12px;
}

.ExperienceCard-module__FbnPmW__heart {
  width: 32px;
  height: 32px;
  color: var(--text-mid);
  background: #ffffffe6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.ExperienceCard-module__FbnPmW__body {
  padding: 14px 16px 16px;
}

.ExperienceCard-module__FbnPmW__region {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.ExperienceCard-module__FbnPmW__title {
  font-family: var(--font-serif);
  color: var(--text-heading);
  margin-top: 3px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.ExperienceCard-module__FbnPmW__ratingRow {
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  display: flex;
}

.ExperienceCard-module__FbnPmW__ratingLabel {
  color: var(--text-mid);
  font-size: 12.5px;
}

.ExperienceCard-module__FbnPmW__footer {
  border-top: 1px solid var(--border-light);
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 13px;
  padding-top: 13px;
  display: flex;
}

.ExperienceCard-module__FbnPmW__duration {
  color: var(--text-muted);
  font-size: 12px;
}

.ExperienceCard-module__FbnPmW__gold {
  color: var(--gold);
}

.ExperienceCard-module__FbnPmW__from {
  color: var(--text-muted);
  font-size: 11.5px;
}

.ExperienceCard-module__FbnPmW__price {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-size: 21px;
  font-weight: 600;
}

/*# sourceMappingURL=app_02y4aw8._.css.map*/