/* StayEasy hero search bar — marketplace + shared field styles */

.hero-search-shell {
  width: 100%;
}

.hero-search-shell--marketplace {
  max-width: 72rem;
}

.hero-search-card {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.75rem rgba(13, 27, 42, 0.18);
  padding: 1rem 1.15rem 1.1rem;
  overflow: visible;
}

@media (min-width: 992px) {
  .hero-search-card {
    border-radius: 1.5rem;
    padding: 1.15rem 1.35rem 1.2rem;
  }
}

/* Product tabs */
.hero-search-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.35rem;
  margin: 0 0 0.85rem;
  padding: 0 0.15rem 0.65rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.hero-search-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0 0.55rem;
  border: 0;
  background: transparent;
  color: rgba(13, 27, 42, 0.62);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.hero-search-tab.is-active {
  color: #0d1b2a;
  font-weight: 600;
}

.hero-search-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: var(--se-teal, #0a9396);
}

.hero-search-tab.is-disabled,
.hero-search-tab:disabled {
  color: rgba(13, 27, 42, 0.38);
  cursor: not-allowed;
  opacity: 1;
}

/* Form layout */
.hero-search-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-search-bar:not(.hero-search-bar--marketplace) {
  background: #fff;
  border: 2px solid var(--se-navy-dark, #0d1b2a);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.18);
  gap: 0;
}

@media (min-width: 992px) {
  .hero-search-bar--marketplace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "fields submit"
      "quick quick";
    column-gap: 0.75rem;
    row-gap: 1.35rem;
    align-items: stretch;
  }

  .hero-search-bar:not(.hero-search-bar--marketplace) {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-radius: 999px;
  }
}

.hero-search-fields {
  display: flex;
  flex-direction: column;
  min-width: 0;
  grid-area: fields;
}

@media (min-width: 992px) {
  .hero-search-bar--marketplace .hero-search-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    min-height: 4.25rem;
    background: #fff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 999px;
    overflow: visible;
  }

  .hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-fields {
    display: contents;
  }
}

/* Fields */
.hero-search-field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.7rem 0.9rem;
}

.hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-field {
  padding: 0.9rem 1.15rem;
}

@media (min-width: 992px) {
  .hero-search-bar--marketplace .hero-search-field + .hero-search-field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(13, 27, 42, 0.1);
  }

  .hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-field {
    flex: 1 1 0;
    padding: 0.85rem 1.25rem;
  }

  .hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-field + .hero-search-field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(var(--se-navy-mid-rgb, 61, 90, 128), 0.18);
  }
}

@media (max-width: 991.98px) {
  .hero-search-field + .hero-search-field {
    border-top: 1px solid rgba(13, 27, 42, 0.08);
  }

  /* Keep radius via field backgrounds — overflow must stay visible so
     check-in / check-out calendars and the guests panel are not clipped. */
  .hero-search-bar--marketplace .hero-search-fields {
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 1rem;
    overflow: visible;
  }

  .hero-search-bar--marketplace .hero-search-field:first-child {
    border-radius: 1rem 1rem 0 0;
  }

  .hero-search-bar--marketplace .hero-search-field:last-child {
    border-radius: 0 0 1rem 1rem;
  }

  /* Guests — the dropdown panel is rendered below the field on both
     desktop and mobile; parent overflow is kept visible to avoid clipping. */
  /* Stay calendar sheet when used from the hero search bar */
  .booking-stay-cal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(13, 27, 42, 0.42);
  }

  body.booking-stay-cal-sheet-open {
    overflow: hidden;
  }

  body.client-site-body .booking-stay-cal-pop--sheet {
    position: fixed !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.85rem 0.8rem 1rem !important;
    z-index: 1085 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.9rem;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.22) !important;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .ta-avail-cal__grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 2px;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .ta-avail-cal__nav {
    position: sticky;
    top: -0.85rem;
    z-index: 1;
    background: #fff;
    padding-top: 0.1rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.4rem !important;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .js-cal-prev,
  body.client-site-body .booking-stay-cal-pop--sheet .js-cal-next {
    min-width: 2.5rem;
    min-height: 2.5rem;
    touch-action: manipulation;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .ta-avail-cal__day {
    font-size: 0.8rem;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .ta-avail-legend {
    gap: 0.4rem 0.65rem !important;
    font-size: 0.65rem;
    margin-top: 0.55rem !important;
  }

  body.client-site-body .booking-stay-cal-pop--sheet .ta-avail-cal__tip {
    font-size: 0.72rem !important;
    margin-top: 0.45rem !important;
  }
}

.hero-search-field-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  min-width: 0;
}

.hero-search-field-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(13, 27, 42, 0.45);
}

.hero-search-field-content {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-search-field-label {
  display: block;
  margin: 0 0 0.12rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(13, 27, 42, 0.55);
}

.hero-search-field-control,
.hero-search-date-wrap {
  position: relative;
  min-height: 1.35rem;
}

.hero-search-select {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0d1b2a;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero-search-select:focus {
  outline: none;
}

.hero-search-select:invalid {
  color: rgba(13, 27, 42, 0.42);
  font-weight: 500;
}

.hero-search-select option {
  color: #0d1b2a;
  font-weight: 500;
}

.hero-search-clear {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.06);
  color: rgba(13, 27, 42, 0.55);
  line-height: 1;
}

.hero-search-clear:hover {
  background: rgba(13, 27, 42, 0.1);
  color: #0d1b2a;
}

.hero-search-date-text,
.hero-search-field-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0d1b2a;
}

.hero-search-date-text {
  pointer-events: none;
}

.hero-search-date-text.is-placeholder {
  color: rgba(13, 27, 42, 0.42);
  font-weight: 500;
}

.hero-search-date-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  caret-color: transparent;
  cursor: pointer;
}

.hero-search-date-native[readonly] {
  cursor: pointer;
  background: transparent;
}

.hero-search-date-native::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

body.client-site-body .hero-search-field.booking-stay-date-field.is-cal-open {
  z-index: 20;
}

body.client-site-body .hero-search-bar .booking-stay-cal-pop {
  z-index: 1200;
}

/* Desktop stay calendar — use the same sizing and layout as the mobile sheet. */
@media (min-width: 992px) {
  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) {
    width: 20.5rem;
    min-width: 20.5rem;
    max-width: min(20.5rem, calc(100vw - 2rem));
    padding: 0.85rem 0.8rem 1rem !important;
    border-radius: 0.9rem;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.22) !important;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet).stayeasy-booking-stay-cal--priced {
    width: 20.5rem;
    min-width: 20.5rem;
    max-width: min(20.5rem, calc(100vw - 2rem));
  }

  body.client-site-body .hero-search-bar .hero-search-field--date:has([data-hero-search-date="check-out"]) .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) {
    left: auto;
    right: 0;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .ta-avail-cal__nav {
    padding-top: 0.1rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.4rem !important;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .js-cal-prev,
  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .js-cal-next {
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .ta-avail-cal__grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 2px;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .ta-avail-cal__day {
    font-size: 0.8rem;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .ta-avail-legend {
    gap: 0.4rem 0.65rem !important;
    font-size: 0.65rem;
    margin-top: 0.55rem !important;
  }

  body.client-site-body .hero-search-bar .booking-stay-cal-pop:not(.booking-stay-cal-pop--sheet) .ta-avail-cal__tip {
    font-size: 0.72rem !important;
    margin-top: 0.45rem !important;
  }
}

/* Guests */
.hero-search-field--guests {
  position: relative;
}

.hero-search-guest-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
}

.hero-search-guest-trigger:focus-visible {
  outline: 2px solid var(--se-teal, #0a9396);
  outline-offset: 2px;
  border-radius: 0.35rem;
}

.hero-search-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: rgba(13, 27, 42, 0.4);
}

.hero-search-field--guests.is-guest-open {
  z-index: 25;
}

.hero-search-guest-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 1rem;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(13, 27, 42, 0.12);
}

@media (min-width: 992px) {
  .hero-search-guest-panel {
    min-width: 16rem;
    right: auto;
  }
}

.hero-search-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hero-search-guest-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d1b2a;
}

.hero-search-guest-select {
  width: 5.5rem;
}

.hero-guest-stepper,
.hero-search-guest-done {
  display: none;
}

.hero-search-guest-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: -0.1rem 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.hero-search-guest-sheet-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
}

.hero-search-guest-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.08);
  color: #0d1b2a;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
}

.hero-search-guest-sheet-close:hover,
.hero-search-guest-sheet-close:focus-visible {
  background: rgba(13, 27, 42, 0.14);
  outline: none;
}

.hero-search-guest-note {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

/* Submit */
.hero-search-submit {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  grid-area: submit;
}

@media (min-width: 992px) {
  /* Match the fields row height; keep fee/reset out of that height calc */
  .hero-search-bar--marketplace .hero-search-submit {
    position: relative;
    align-self: stretch;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    min-width: 12.75rem;
  }

  .hero-search-bar--marketplace .hero-search-btn {
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
  }

  .hero-search-bar--marketplace .hero-search-fee-note,
  .hero-search-bar--marketplace .hero-search-reset {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-search-bar--marketplace .hero-search-fee-note {
    top: calc(100% + 0.4rem);
  }

  .hero-search-bar--marketplace .hero-search-reset {
    top: calc(100% + 0.4rem);
  }

  .hero-search-bar--marketplace .hero-search-fee-note + .hero-search-reset {
    top: calc(100% + 1.55rem);
  }

  .hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-submit {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    padding: 0.45rem 0.45rem 0.45rem 0;
  }
}

.hero-search-btn {
  width: 100%;
  padding: 0.9rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: var(--se-teal, #0a9396);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 0.45rem 1.1rem rgba(var(--se-teal-rgb, 10, 147, 150), 0.28);
}

.hero-search-btn:hover,
.hero-search-btn:focus-visible {
  background: var(--se-teal-dark, #087a7d);
  color: #fff;
}

.hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-btn {
  background: var(--se-navy-dark, #0d1b2a);
  box-shadow: none;
}

.hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-btn:hover,
.hero-search-bar:not(.hero-search-bar--marketplace) .hero-search-btn:focus-visible {
  background: var(--se-navy-mid, #1b3a4b);
}

@media (min-width: 992px) {
  .hero-search-btn {
    width: auto;
    min-width: 11.5rem;
  }
}

.hero-search-fee-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.58);
}

.hero-search-fee-note .bi {
  color: var(--se-teal, #0a9396);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-search-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(13, 27, 42, 0.55);
  text-decoration: none;
  white-space: nowrap;
}

.hero-search-reset:hover,
.hero-search-reset:focus-visible {
  color: #0d1b2a;
  text-decoration: underline;
}

/* Quick destination pills */
.hero-search-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  grid-area: quick;
  padding: 0 0.1rem;
}

.hero-search-quick-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 999px;
  background: #fff;
  color: rgba(13, 27, 42, 0.78);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.hero-search-quick-pill:hover,
.hero-search-quick-pill:focus-visible {
  border-color: rgba(var(--se-teal-rgb, 10, 147, 150), 0.45);
  color: var(--se-teal-dark, #087a7d);
  outline: none;
}

.hero-search-quick-pill.is-active {
  border-color: var(--se-teal, #0a9396);
  background: rgba(var(--se-teal-rgb, 10, 147, 150), 0.08);
  color: var(--se-teal-dark, #087a7d);
  font-weight: 600;
}

/* Enhanced location / choice dropdown */
.hero-search-bar .hero-location-enhanced,
.hero-search-bar .hero-choice-enhanced {
  position: relative;
  display: block;
  width: 100%;
}

.hero-search-bar .hero-location-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0d1b2a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  text-align: left;
}

.hero-search-bar .hero-location-trigger .hero-location-trigger-label {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-search-bar .hero-location-trigger.is-placeholder,
.hero-search-bar .hero-location-trigger.is-placeholder .hero-location-trigger-label {
  color: rgba(13, 27, 42, 0.42);
  font-weight: 500;
}

.hero-search-bar .hero-location-trigger.is-placeholder .hero-search-chevron {
  color: rgba(13, 27, 42, 0.35);
}

.hero-location-enhanced select.hero-search-select,
.hero-choice-enhanced select.hero-search-select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  transform: translateZ(0);
}

.hero-location-panel {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 1rem;
  padding: 0.65rem;
  box-shadow: 0 1rem 2rem rgba(13, 27, 42, 0.14);
}

.hero-location-search-wrap {
  padding: 0.15rem 0.15rem 0.45rem;
}

.hero-location-search {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: rgba(13, 27, 42, 0.03);
  color: #0d1b2a;
  outline: none;
  box-shadow: none;
}

.hero-location-search:focus {
  border-color: rgba(var(--se-teal-rgb, 10, 147, 150), 0.55);
  background: #fff;
}

.hero-location-list {
  max-height: 14rem;
  overflow: auto;
  margin: 0;
  padding: 0.15rem;
}

.hero-location-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  cursor: pointer;
  color: #0d1b2a;
  transition: background 0.12s ease;
}

.hero-location-item:hover,
.hero-location-item:focus {
  background: rgba(var(--se-teal-rgb, 10, 147, 150), 0.08);
  outline: none;
}

.hero-location-item--empty {
  cursor: default;
  color: rgba(13, 27, 42, 0.5);
}

.hero-location-item-icon {
  flex-shrink: 0;
  color: var(--se-teal, #0a9396);
  opacity: 0.9;
}

.hero-location-item .hero-location-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Trust row under hero (homepage) */
.hero-search-trust-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}

.hero-search-trust-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.hero-search-trust-item .stayeasy-lottie.hero-search-trust-icon {
  width: 2.25rem;
  height: 2.25rem;
}

.hero-search-trust-item .stayeasy-lottie.hero-search-trust-icon canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero-search-trust-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-search-trust-sub {
  font-size: 0.78rem;
  opacity: 0.75;
}
/*
 Prevent horizontal overflow on small screens.
 Keeps hero/search components within viewport and removes unwanted white space.
 */
@media (max-width: 991.98px) {
  /* Avoid any page-level horizontal scroll caused by hero/search components */
  body.client-site-body {
    overflow-x: hidden;
  }

  /* Ensure hero components size to the viewport and respect box-sizing */
  .hero-search-shell,
  .hero-search-card,
  .hero-search-bar {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    overflow-x: visible; /* allow dropdowns to overflow vertically without creating horizontal scroll */
  }

  /* Force any fixed/calendar sheets to stay inside viewport */
  body.client-site-body .booking-stay-cal-pop--sheet {
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}