/* Components: formularios, dropdowns, auth, botones y micro-componentes */

.search-card {
  margin-top: 36px;
  background: var(--accent);
  border-radius: 9px;
  padding: 2px;
  display: grid;
  grid-template-columns: 2.1fr 1.1fr 1.1fr 0.9fr;
  gap: 2px;
  box-shadow: var(--shadow);
  align-items: stretch;
  overflow: visible;
  position: relative;
  z-index: 60;
}

.field {
  position: relative;
  background: #fffdf7;
  border-radius: 6px;
  padding: 6px 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-height: 44px;
  justify-content: center;
}

.light-field {
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.field:focus-within,
.light-field:focus-within {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--border);
}

.field label {
  position: absolute;
  top: -20px;
  left: 2px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: none;
}

.field input,
.field select,
.field textarea {
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
  background: transparent !important;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.2;
  padding: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field input:focus,
.field input:active,
.field input:focus-visible,
.field select:focus,
.field select:active,
.field select:focus-visible,
.field textarea:focus {
  outline: none;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

.field input::-webkit-date-and-time-value {
  text-align: left;
}

.field input::-webkit-calendar-picker-indicator {
  margin: 0;
}

.field-preview {
  color: var(--muted);
  font-size: 0.62rem;
}

.field-destination {
  z-index: 90;
}

.field-dates {
  z-index: 30;
}

.field-guests {
  z-index: 80;
}

.guest-picker-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  cursor: pointer;
}

#dateRange {
  cursor: pointer;
}

.flatpickr-calendar {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 31, 84, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--navy);
  border-color: var(--navy);
}

.flatpickr-day.inRange {
  background: #e6f0ff;
  border-color: #e6f0ff;
  box-shadow: -5px 0 0 #e6f0ff, 5px 0 0 #e6f0ff;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: 600;
}

.guest-picker-arrow {
  font-size: 0.76rem;
  color: var(--muted);
}

.guest-picker-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(420px, 92vw);
  max-width: min(420px, 92vw);
  max-height: min(64vh, 520px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 31, 84, 0.12);
  padding: 14px 16px;
  z-index: 140;
  pointer-events: auto;
}

.amenities-overlay,
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 17, 43, 0.48);
  backdrop-filter: blur(2px);
  z-index: 1190;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.amenities-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(860px, calc(100vw - 32px));
  max-height: min(78vh, 760px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 17, 43, 0.22);
  padding: 24px;
  z-index: 1200;
  transform: translate(-50%, calc(-50% + 24px));
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.28s ease;
}

.auth-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, calc(100vw - 12px));
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  border-left: 1px solid var(--border);
  border-radius: 0;
  box-shadow: -12px 0 32px rgba(0, 17, 43, 0.14);
  padding: 24px;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.amenities-overlay.is-open,
.auth-overlay.is-open {
  opacity: 1;
}

.amenities-modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.auth-modal.is-open {
  transform: translateX(0);
}

.amenities-modal-head,
.auth-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.amenities-modal-head h2,
.auth-modal-head h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.amenities-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.amenities-modal-close,
#authClose {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #c62828;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.auth-form,
.auth-session {
  display: grid;
  gap: 12px;
}

.nav-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  display: block;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 17, 43, 0.48);
  backdrop-filter: blur(2px);
  z-index: 1180;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, calc(100vw - 20px));
  height: 100vh;
  background: linear-gradient(180deg, #08224f 0%, #001d47 100%);
  color: #fff;
  padding: 22px 18px;
  z-index: 1185;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
  box-shadow: -12px 0 32px rgba(0, 17, 43, 0.22);
}

.mobile-nav-overlay.is-open {
  opacity: 1;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

 .filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 1182;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.filter-drawer-overlay.is-open {
  opacity: 1;
}

.mobile-filter-trigger-wrap {
  display: none;
}

.mobile-filter-trigger {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow);
}

.mobile-filter-head {
  display: block;
}

.mobile-filter-close {
  display: none;
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.mobile-nav-head h2 {
  margin: 8px 0 0;
  font-size: 1.7rem;
}

.mobile-nav-links,
.mobile-nav-account-actions {
  display: grid;
  gap: 12px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 600;
}

.mobile-nav-account-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-status-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--navy-ink);
  font-size: 0.92rem;
}

.verification-checklist {
  display: grid;
  gap: 12px;
  margin: 14px 0 18px;
}

.verification-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-soft);
}

.verification-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.verification-item-muted {
  background: #f6f8fb;
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 9px;
  background: #fff1e8;
  color: #9f4b1c;
  font-size: 0.78rem;
  font-weight: 700;
}

.verification-badge.is-complete {
  background: #e6f7ed;
  color: #166534;
}

.verification-badge-soft {
  background: #e9eef5;
  color: #42556f;
}

.verification-inline-form {
  display: grid;
  gap: 10px;
}

.verification-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.verification-inline-actions .confirm-btn {
  min-width: 148px;
  text-decoration: none;
  padding: 12px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
}

.auth-switch {
  justify-self: start;
}

.auth-session .confirm-btn,
#accountProfileSubmit,
#accountIdentitySubmit {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.auth-session a.confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

#logoutButton,
#mobileLogoutButton {
  background: linear-gradient(180deg, #dc4a4a 0%, #b62626 100%);
  border: 1px solid rgba(136, 20, 20, 0.72);
  color: #fff;
  text-decoration: none;
}

#logoutButton:hover,
#mobileLogoutButton:hover {
  filter: brightness(1.02);
}

.auth-form [aria-invalid="true"] {
  border-color: #c62828;
  box-shadow: 0 0 0 1px rgba(198, 40, 40, 0.16);
}

.inline-link {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

#accountIdentityForm input[type="file"] {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px dashed #bfd0e7 !important;
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fd 100%) !important;
  color: var(--navy-ink);
  font-size: 0.88rem;
  line-height: 1.2;
  cursor: pointer;
}

#accountIdentityForm input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 7px;
  background: #e5eefb;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.guest-row strong {
  display: block;
  font-size: 0.88rem;
}

.guest-row p {
  margin: 2px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.counter-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #b8bcc3;
  border-radius: 10px;
  padding: 5px 8px;
  min-width: 150px;
  justify-content: space-between;
}

.counter-control > span {
  min-width: 22px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1;
  color: var(--text);
  flex: 0 0 auto;
}

.counter-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid #c8d9f4;
  background: #fff;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  text-align: center;
}

.children-ages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 6px;
}

.age-select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #b8bcc3;
  border-radius: 9px;
  padding: 0 12px;
  font-size: 0.86rem;
  background: #fff;
}

.guest-help {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.35;
}

.guest-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

.pet-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.pet-row strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.pet-row p {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.72rem;
}

.pet-link {
  color: #0a63ff;
  font-size: 0.72rem;
  text-decoration: none;
}

.pet-toggle {
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: #979797;
  position: relative;
  flex: 0 0 auto;
}

.pet-toggle span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}

.pet-toggle.is-on {
  background: #16934b;
}

.pet-toggle.is-on span {
  transform: translateX(24px);
}

.guest-panel-footer {
  padding-top: 10px;
  display: flex;
  justify-content: center;
}

.guest-panel-done {
  width: auto;
  min-width: 180px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid #16934b;
  background: #eaf8f0;
  color: #16934b;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
}

.autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 120;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 24px rgba(0, 31, 84, 0.12);
  overflow: visible;
}

.autocomplete-item {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--navy-ink);
  padding: 12px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.autocomplete-item + .autocomplete-item {
  border-top: 1px solid rgba(215, 226, 241, 0.9);
}

.autocomplete-item strong {
  color: var(--navy-ink);
  font-weight: 700;
}

.autocomplete-item span {
  color: #4f5f78;
  font-size: 0.74rem;
}

.autocomplete-item:hover,
.autocomplete-item.is-active {
  background: #dbe8fb;
  color: var(--navy-ink);
}

.autocomplete-item:hover strong,
.autocomplete-item.is-active strong,
.autocomplete-item:hover span,
.autocomplete-item.is-active span {
  color: var(--navy-ink);
}

.search-card > .search-btn {
  min-width: 0;
  width: 100%;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
}

.reserve-btn,
.confirm-btn {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 0 10px;
  font-weight: 400;
  font-size: 0.72rem;
}

.card-action,
.recent-action {
  background: #16934b;
  color: #fff;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.72rem;
}

.card-action {
  padding: 6px 14px;
}

.recent-action {
  padding: 0 10px;
}

.hero-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-meta-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.9);
}

body.route-focus .search-card {
  margin-top: 0;
  width: min(760px, 100%);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 6px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.15fr) auto;
  gap: 0;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
  align-items: center;
}

body.route-focus .search-card .field {
  min-height: 52px;
  background: transparent;
  border-radius: 0;
  padding: 0 18px;
  gap: 4px;
}

body.route-focus .search-card .field:not(:first-child) {
  border-left: 1px solid rgba(215, 226, 241, 0.95);
}

body.route-focus .search-card .field label {
  position: static;
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
}

body.route-focus .search-card .field-preview {
  display: none;
}

body.route-focus .search-card input,
body.route-focus .search-card .guest-picker-button {
  font-size: 0.9rem;
  color: var(--text);
}

body.route-focus .search-card > .search-btn {
  width: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 999px;
  justify-self: end;
  font-size: 0;
  position: relative;
}

body.route-focus .search-card > .search-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
}

body.route-focus .search-card > .search-btn::after {
  content: "";
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: absolute;
  right: 12px;
  bottom: 14px;
  transform: rotate(45deg);
  transform-origin: center;
}
body.dreamcity-front:not(.route-focus) .search-card {
  margin: 28px auto 0;
  width: min(760px, 100%);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 6px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.15fr) auto;
  gap: 0;
  box-shadow: 0 18px 42px rgba(8, 20, 40, 0.26);
  align-items: center;
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  overflow: visible;
}

body.dreamcity-front:not(.route-focus) .search-card .field {
  min-height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  padding: 0 18px;
  gap: 4px;
  justify-content: center;
  align-self: stretch;
}

body.dreamcity-front:not(.route-focus) .search-card .field:first-child {
  border-radius: 999px 0 0 999px;
}

body.dreamcity-front:not(.route-focus) .search-card .field:not(:first-child) {
  border-left: 1px solid rgba(215, 226, 241, 0.95);
}

body.dreamcity-front:not(.route-focus) .search-card .field:last-of-type {
  padding-right: 18px;
}

body.dreamcity-front:not(.route-focus) .search-card .field label {
  position: static;
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  padding: 0;
  text-shadow: none;
}

body.dreamcity-front:not(.route-focus) .search-card .field-preview {
  display: none;
}

body.dreamcity-front:not(.route-focus) .search-card input,
body.dreamcity-front:not(.route-focus) .search-card .guest-picker-button {
  font-size: 0.9rem;
  color: var(--text);
  min-width: 0;
}

body.dreamcity-front:not(.route-focus) .search-card input {
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}

body.dreamcity-front:not(.route-focus) #guestPickerSummary,
body.dreamcity-front:not(.route-focus) #dateRange {
  display: block;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}

body.dreamcity-front:not(.route-focus) .guest-picker-arrow {
  color: var(--muted);
  font-size: 0.76rem;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn {
  width: 52px;
  min-width: 52px;
  min-height: 52px;
  margin-left: -5px;
  margin-right: 3px;
  padding: 0;
  border-radius: 999px;
  justify-self: end;
  background: linear-gradient(180deg, #1651b8 0%, #0d429d 100%);
  box-shadow: 0 10px 22px rgba(13, 66, 157, 0.28);
  font-size: 0;
  position: relative;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn::after {
  content: "";
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: absolute;
  right: 12px;
  bottom: 14px;
  transform: rotate(45deg);
  transform-origin: center;
}

body.dreamcity-front:not(.route-focus) .hero-meta-row {
  margin-top: 12px;
  justify-content: center;
}

body.dreamcity-front:not(.route-focus) .field-destination {
  z-index: 120;
}

body.dreamcity-front:not(.route-focus) .field-guests {
  z-index: 130;
}

body.dreamcity-front:not(.route-focus) .autocomplete-list {
  z-index: 180;
}

body.dreamcity-front:not(.route-focus) .guest-picker-panel {
  z-index: 190;
}

body.dreamcity-front:not(.route-focus) .hero-meta-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.dreamcity-front:not(.route-focus) .autocomplete-list,
body.dreamcity-front:not(.route-focus) .guest-picker-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 214, 232, 0.92);
  box-shadow: 0 18px 36px rgba(8, 20, 40, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
body.dreamcity-front:not(.route-focus) .guest-picker-panel {
  background: #ffffff;
  border: 1px solid rgba(201, 214, 232, 0.96);
  box-shadow: 0 18px 36px rgba(8, 20, 40, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.dreamcity-front:not(.route-focus) .guest-picker-panel strong,
body.dreamcity-front:not(.route-focus) .guest-picker-panel p,
body.dreamcity-front:not(.route-focus) .guest-picker-panel label,
body.dreamcity-front:not(.route-focus) .guest-picker-panel span,
body.dreamcity-front:not(.route-focus) .guest-picker-panel .guest-help {
  color: var(--text);
}

body.dreamcity-front:not(.route-focus) .guest-picker-panel .pet-link {
  color: #0a63ff;
}

body.dreamcity-front:not(.route-focus) .guest-picker-panel .counter-control,
body.dreamcity-front:not(.route-focus) .guest-picker-panel .age-select,
body.dreamcity-front:not(.route-focus) .guest-picker-panel .counter-btn {
  background: #fff;
}
body.dreamcity-front:not(.route-focus) .search-card::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
  pointer-events: none;
}

body.dreamcity-front:not(.route-focus) .search-card .field,
body.dreamcity-front:not(.route-focus) .search-card > .search-btn {
  position: relative;
  z-index: 1;
}
body.dreamcity-front:not(.route-focus) .search-card::after {
  width: 136px;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn {
  margin-left: -5px;
  margin-right: 3px;
}

body.dreamcity-front:not(.route-focus) .search-card .field-guests {
  border-radius: 0 999px 999px 0;
}
body.dreamcity-front:not(.route-focus) .search-card > .search-btn {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  margin-left: -5px;
  margin-right: 3px;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn::before {
  width: 14px;
  height: 14px;
  top: 13px;
  left: 13px;
}

body.dreamcity-front:not(.route-focus) .search-card > .search-btn::after {
  width: 7px;
  right: 10px;
  bottom: 12px;
}
#mobileNavClose {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

#mobileNavClose:hover,
#mobileNavClose:focus,
#mobileNavClose:active {
  color: #ffffff;
}



body.dreamcity-front:not(.route-focus) .search-card,
body.dreamcity-front:not(.route-focus) .hero-meta-row {
  transition: scale 0.28s ease, opacity 0.28s ease, box-shadow 0.32s ease, background-color 0.32s ease, border-color 0.32s ease;
}

body.dreamcity-front:not(.route-focus) .search-card {
  scale: 1;
}

body.home-search-sticky.dreamcity-front:not(.route-focus) {
  padding-top: 88px;
}

body.home-search-sticky.dreamcity-front:not(.route-focus) .search-card {
  position: fixed;
  top: 10px;
  left: 50%;
  width: min(760px, calc(100vw - 32px));
  margin-top: 0;
  translate: -50% 0;
  transform: none;
  transform-origin: center top;
  scale: 0.68;
  opacity: 0.94;
  z-index: 220;
}

body.home-search-sticky.dreamcity-front:not(.route-focus) .hero-meta-row {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

@media (max-width: 959px) {
  body.home-search-sticky.dreamcity-front:not(.route-focus) {
    padding-top: 0;
  }
}
