@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
:root {
  --airbnb-rausch: #FF385C;
  --airbnb-rausch-hover: #E61E4D;
  --airbnb-rausch-dark: #C13515;
  --airbnb-rausch-light: rgba(255, 56, 92, 0.12);
  --airbnb-plus: #92174D;
  --airbnb-luxe: #460479;
  --airbnb-black: #222222;
  --airbnb-gray-dark: #515151;
  --airbnb-gray: #6A6A6A;
  --airbnb-gray-mid: #8C8C8C;
  --airbnb-gray-light: #B0B0B0;
  --airbnb-border: #DDDDDD;
  --airbnb-bg-hover: #EBEBEB;
  --airbnb-bg-secondary: #F7F7F7;
  --airbnb-white: #FFFFFF;
  --airbnb-success: #008A05;
  --airbnb-success-bg: rgba(0, 138, 5, 0.10);
  --airbnb-warning: #E07912;
  --airbnb-warning-bg: rgba(224, 121, 18, 0.10);
  --airbnb-error: #DF2323;
  --airbnb-error-bg: rgba(223, 35, 35, 0.10);
  --airbnb-info: #428BFF;
  --airbnb-info-bg: rgba(66, 139, 255, 0.10);
  --airbnb-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --airbnb-text-display: 700 clamp(2.5rem, 5vw, 4.5rem)/1.1 var(--airbnb-font);
  --airbnb-text-title-xl: 600 2rem/2.25rem var(--airbnb-font);
  --airbnb-text-title-lg: 600 1.625rem/1.875rem var(--airbnb-font);
  --airbnb-text-title-md: 600 1.375rem/1.625rem var(--airbnb-font);
  --airbnb-text-title-sm: 600 1.125rem/1.5rem var(--airbnb-font);
  --airbnb-text-title-xs: 600 1rem/1.25rem var(--airbnb-font);
  --airbnb-text-body-lg: 400 1.125rem/1.75rem var(--airbnb-font);
  --airbnb-text-body: 400 1rem/1.5rem var(--airbnb-font);
  --airbnb-text-sm: 400 0.875rem/1.25rem var(--airbnb-font);
  --airbnb-text-caption: 400 0.75rem/1rem var(--airbnb-font);
  --airbnb-radius-xs: 4px;
  --airbnb-radius-sm: 8px;
  --airbnb-radius-md: 12px;
  --airbnb-radius-lg: 16px;
  --airbnb-radius-xl: 20px;
  --airbnb-radius-2xl: 24px;
  --airbnb-radius-3xl: 32px;
  --airbnb-radius-full: 9999px;
  --airbnb-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.16);
  --airbnb-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --airbnb-shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.20);
  --airbnb-shadow-xl: 0 8px 28px rgba(0, 0, 0, 0.28);
  --airbnb-space-1: 4px;
  --airbnb-space-2: 8px;
  --airbnb-space-3: 12px;
  --airbnb-space-4: 16px;
  --airbnb-space-5: 24px;
  --airbnb-space-6: 32px;
  --airbnb-space-7: 40px;
  --airbnb-space-8: 48px;
  --airbnb-space-9: 64px;
  --airbnb-space-10: 80px;
  --airbnb-ease: cubic-bezier(0.2, 0, 0, 1);
  --airbnb-ease-enter: cubic-bezier(0.1, 0.9, 0.2, 1);
  --airbnb-ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --airbnb-duration-sm: 150ms;
  --airbnb-duration-md: 250ms;
  --airbnb-duration-lg: 350ms;
}

.airbnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 600 1rem/1 var(--airbnb-font);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  white-space: nowrap;
  border-radius: var(--airbnb-radius-sm);
  padding: 14px 24px;
  outline: none;
}
.airbnb-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--airbnb-white), 0 0 0 4px var(--airbnb-black);
}
.airbnb-btn--primary {
  background: linear-gradient(to right, #E61E4D, #E31C5F, #D70466);
  color: var(--airbnb-white);
}
.airbnb-btn--primary:hover {
  background: linear-gradient(to right, #C2184A, #C71655, #B8035A);
  transform: scale(1.02);
}
.airbnb-btn--primary:active {
  transform: scale(0.98);
}
.airbnb-btn--dark {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
}
.airbnb-btn--dark:hover {
  background: #333333;
}
.airbnb-btn--outline {
  background: transparent;
  color: var(--airbnb-black);
  border: 1.5px solid var(--airbnb-black);
}
.airbnb-btn--outline:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-btn--outline-muted {
  background: transparent;
  color: var(--airbnb-black);
  border: 1px solid var(--airbnb-border);
}
.airbnb-btn--outline-muted:hover {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-btn--ghost {
  background: transparent;
  color: var(--airbnb-black);
  padding: 14px 8px;
  text-decoration: underline;
}
.airbnb-btn--ghost:hover {
  background: var(--airbnb-bg-hover);
  border-radius: var(--airbnb-radius-sm);
}
.airbnb-btn--white {
  background: var(--airbnb-white);
  color: var(--airbnb-black);
}
.airbnb-btn--white:hover {
  background: var(--airbnb-bg-secondary);
}
.airbnb-btn--sm {
  font-size: 0.875rem;
  padding: 10px 16px;
}
.airbnb-btn--lg {
  font-size: 1.125rem;
  padding: 18px 32px;
}
.airbnb-btn--full {
  width: 100%;
}
.airbnb-btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--airbnb-black);
  border: 1px solid var(--airbnb-border);
}
.airbnb-btn--icon:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-btn--search {
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  flex-shrink: 0;
}
.airbnb-btn--search:hover {
  background: var(--airbnb-rausch-hover);
  transform: scale(1.05);
}
.airbnb-btn--search svg {
  width: 18px;
  height: 18px;
}
.airbnb-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.airbnb-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.airbnb-wishlist-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--airbnb-white);
  stroke-width: 2;
  fill: rgba(0, 0, 0, 0.35);
  transition: fill var(--airbnb-duration-sm) var(--airbnb-ease);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.airbnb-wishlist-btn.is-saved svg {
  fill: var(--airbnb-rausch);
  stroke: var(--airbnb-rausch);
}
.airbnb-wishlist-btn:hover svg {
  fill: rgba(0, 0, 0, 0.55);
}
.airbnb-wishlist-btn.is-saved:hover svg {
  fill: var(--airbnb-rausch-hover);
}

.airbnb-listing-card {
  position: relative;
  background: transparent;
  cursor: pointer;
  font-family: var(--airbnb-font);
}
.airbnb-listing-card:hover .airbnb-listing-card__image img {
  transform: scale(1.03);
}

.airbnb-listing-card__image {
  position: relative;
  border-radius: var(--airbnb-radius-xl);
  overflow: hidden;
  aspect-ratio: 20/19;
  background: var(--airbnb-bg-hover);
}
.airbnb-listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--airbnb-ease);
}
.airbnb-listing-card__image .airbnb-listing-card__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.airbnb-listing-card__image .airbnb-listing-card__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.airbnb-listing-card__image .airbnb-listing-card__dots span.is-active {
  background: var(--airbnb-white);
  width: 8px;
  height: 8px;
}
.airbnb-listing-card__image .airbnb-listing-card__prev,
.airbnb-listing-card__image .airbnb-listing-card__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--airbnb-white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--airbnb-shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--airbnb-duration-sm);
  z-index: 2;
}
.airbnb-listing-card__image .airbnb-listing-card__prev svg,
.airbnb-listing-card__image .airbnb-listing-card__next svg {
  width: 10px;
  height: 10px;
  stroke: var(--airbnb-black);
  stroke-width: 2.5;
  fill: none;
}
.airbnb-listing-card__image .airbnb-listing-card__prev {
  left: 10px;
}
.airbnb-listing-card__image .airbnb-listing-card__next {
  right: 48px;
}
.airbnb-listing-card__image:hover .airbnb-listing-card__prev, .airbnb-listing-card__image:hover .airbnb-listing-card__next {
  opacity: 1;
}

.airbnb-listing-card__overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--airbnb-white);
  border-radius: var(--airbnb-radius-xs);
  padding: 5px 8px;
  font: 600 0.75rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  box-shadow: var(--airbnb-shadow-sm);
  z-index: 2;
}

.airbnb-listing-card__content {
  padding: 12px 2px 0;
}

.airbnb-listing-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.airbnb-listing-card__location {
  font: 600 0.875rem/1.25rem var(--airbnb-font);
  color: var(--airbnb-black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airbnb-listing-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  flex-shrink: 0;
}
.airbnb-listing-card__rating svg {
  width: 11px;
  height: 11px;
  fill: var(--airbnb-black);
}

.airbnb-listing-card__meta,
.airbnb-listing-card__dates {
  font: 400 0.875rem/1.25rem var(--airbnb-font);
  color: var(--airbnb-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airbnb-listing-card__price {
  margin-top: 4px;
  font: 400 0.875rem/1.25rem var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-listing-card__price strong {
  font-weight: 600;
  font-size: 1rem;
}
.airbnb-listing-card__price s {
  color: var(--airbnb-gray);
  margin-right: 4px;
  font-weight: 400;
}

.airbnb-map-pin {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-sm);
  box-shadow: var(--airbnb-shadow-md);
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  white-space: nowrap;
}
.airbnb-map-pin:hover, .airbnb-map-pin.is-hovered {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
  border-color: var(--airbnb-black);
  transform: scale(1.06);
  z-index: 10;
}
.airbnb-map-pin.is-selected {
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  border-color: var(--airbnb-rausch);
  transform: scale(1.1);
  z-index: 20;
  box-shadow: var(--airbnb-shadow-lg);
}

.airbnb-booking-widget {
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-lg);
  padding: 24px;
  box-shadow: var(--airbnb-shadow-lg);
  font-family: var(--airbnb-font);
}

.airbnb-booking-widget__price {
  font: 600 1.375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 20px;
}
.airbnb-booking-widget__price span {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-booking-widget__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.airbnb-booking-widget__dates.is-active {
  border-color: var(--airbnb-black);
  box-shadow: var(--airbnb-shadow-sm);
}

.airbnb-booking-widget__date-field {
  padding: 10px 12px;
  cursor: pointer;
  transition: background var(--airbnb-duration-sm);
}
.airbnb-booking-widget__date-field:first-child {
  border-right: 1px solid var(--airbnb-border);
}
.airbnb-booking-widget__date-field:hover, .airbnb-booking-widget__date-field.is-active {
  background: var(--airbnb-bg-secondary);
}
.airbnb-booking-widget__date-field label {
  display: block;
  font: 600 0.625rem/1 var(--airbnb-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--airbnb-black);
  margin-bottom: 4px;
  pointer-events: none;
}
.airbnb-booking-widget__date-field span {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-booking-widget__guests {
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  transition: background var(--airbnb-duration-sm);
}
.airbnb-booking-widget__guests:hover, .airbnb-booking-widget__guests.is-open {
  background: var(--airbnb-bg-secondary);
  border-color: var(--airbnb-black);
}
.airbnb-booking-widget__guests label {
  display: block;
  font: 600 0.625rem/1 var(--airbnb-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--airbnb-black);
  margin-bottom: 4px;
  pointer-events: none;
}
.airbnb-booking-widget__guests span {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}
.airbnb-booking-widget__guests svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.airbnb-booking-widget__cta {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(to right, #E61E4D, #E31C5F, #D70466);
  color: var(--airbnb-white);
  border: none;
  border-radius: var(--airbnb-radius-sm);
  font: 600 1rem/1 var(--airbnb-font);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  margin-bottom: 8px;
}
.airbnb-booking-widget__cta:hover {
  background: linear-gradient(to right, #C2184A, #C71655, #B8035A);
}

.airbnb-booking-widget__note {
  text-align: center;
  font: 400 0.875rem/1.25rem var(--airbnb-font);
  color: var(--airbnb-gray);
  margin-bottom: 16px;
}

.airbnb-booking-widget__breakdown {
  border-top: 1px solid var(--airbnb-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.airbnb-booking-widget__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-booking-widget__line .label {
  text-decoration: underline;
  cursor: pointer;
}
.airbnb-booking-widget__line--total {
  border-top: 1px solid var(--airbnb-border);
  padding-top: 12px;
  margin-top: 4px;
  font-weight: 600;
  font-size: 1rem;
}

.airbnb-guest-counter {
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-lg);
  padding: 16px 24px;
  box-shadow: var(--airbnb-shadow-lg);
  font-family: var(--airbnb-font);
  min-width: 300px;
}

.airbnb-guest-counter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--airbnb-border);
}
.airbnb-guest-counter__row:last-child {
  border-bottom: none;
}

.airbnb-guest-counter__label {
  font: 600 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 4px;
}

.airbnb-guest-counter__sublabel {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-guest-counter__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.airbnb-guest-counter__btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--airbnb-border);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--airbnb-black);
  transition: all var(--airbnb-duration-sm);
}
.airbnb-guest-counter__btn:hover:not(:disabled) {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-guest-counter__btn:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.airbnb-guest-counter__count {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  min-width: 20px;
  text-align: center;
}

.airbnb-review {
  padding: 24px 0;
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}
.airbnb-review:last-child {
  border-bottom: none;
}

.airbnb-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.airbnb-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--airbnb-bg-hover);
  overflow: hidden;
  flex-shrink: 0;
}
.airbnb-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.airbnb-review__author {
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 3px;
}

.airbnb-review__date {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.airbnb-review__stars svg {
  width: 12px;
  height: 12px;
  fill: var(--airbnb-black);
}

.airbnb-review__body {
  font: 400 1rem/1.6 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-review__host-response {
  margin-top: 16px;
  padding: 16px;
  background: var(--airbnb-bg-secondary);
  border-radius: var(--airbnb-radius-sm);
}
.airbnb-review__host-response .airbnb-review__host-label {
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 8px;
}
.airbnb-review__host-response p {
  font: 400 0.875rem/1.5 var(--airbnb-font);
  color: var(--airbnb-black);
  margin: 0;
}

.airbnb-rating-summary {
  font-family: var(--airbnb-font);
  padding: 24px 0;
}

.airbnb-rating-summary__headline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.airbnb-rating-summary__headline svg {
  width: 18px;
  height: 18px;
  fill: var(--airbnb-black);
}
.airbnb-rating-summary__headline strong {
  font: 600 1.375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-rating-summary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.airbnb-rating-summary__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-rating-summary__label {
  flex: 1;
}

.airbnb-rating-summary__bar {
  flex: 2;
  height: 4px;
  background: var(--airbnb-border);
  border-radius: 2px;
  overflow: hidden;
}
.airbnb-rating-summary__bar span {
  display: block;
  height: 100%;
  background: var(--airbnb-black);
  border-radius: 2px;
}

.airbnb-rating-summary__score {
  flex-shrink: 0;
  min-width: 24px;
  text-align: right;
}

.airbnb-host-card {
  font-family: var(--airbnb-font);
  padding: 24px 0;
}

.airbnb-host-card__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.airbnb-host-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.airbnb-host-card__avatar-wrap img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.airbnb-host-card__avatar-wrap .airbnb-host-card__superhost {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  border-radius: var(--airbnb-radius-full);
  font: 700 0.5rem/1 var(--airbnb-font);
  padding: 3px 6px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.airbnb-host-card__name {
  font: 600 1.375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 6px;
}

.airbnb-host-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-host-card__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1.5px solid var(--airbnb-black);
  border-radius: var(--airbnb-radius-sm);
  background: transparent;
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  cursor: pointer;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-host-card__contact:hover {
  background: var(--airbnb-bg-hover);
}

.airbnb-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--airbnb-font);
}

.airbnb-label {
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-sublabel {
  font: 400 0.8125rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin-top: -3px;
}

.airbnb-input, .airbnb-message-field textarea, .airbnb-select, .airbnb-textarea {
  width: 100%;
  padding: 12px 16px;
  font: 400 1rem/1.5 var(--airbnb-font);
  color: var(--airbnb-black);
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-md);
  outline: none;
  transition: border-color var(--airbnb-duration-sm) var(--airbnb-ease), box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
  appearance: none;
}
.airbnb-input::placeholder, .airbnb-message-field textarea::placeholder, .airbnb-select::placeholder, .airbnb-textarea::placeholder {
  color: var(--airbnb-gray-light);
}
.airbnb-input:hover, .airbnb-message-field textarea:hover, .airbnb-select:hover, .airbnb-textarea:hover {
  border-color: var(--airbnb-black);
}
.airbnb-input:focus, .airbnb-message-field textarea:focus, .airbnb-select:focus, .airbnb-textarea:focus {
  border-color: var(--airbnb-black);
  box-shadow: 0 0 0 2px var(--airbnb-black);
}
.airbnb-input--error {
  border-color: var(--airbnb-error);
}
.airbnb-input--error:focus {
  box-shadow: 0 0 0 2px rgba(223, 35, 35, 0.3);
}
.airbnb-input--sm {
  padding: 9px 12px;
  font-size: 0.875rem;
  border-radius: var(--airbnb-radius-sm);
}
.airbnb-input--lg {
  padding: 16px 20px;
  font-size: 1.0625rem;
}

.airbnb-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.airbnb-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222222' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.airbnb-input-error {
  font: 400 0.8125rem/1 var(--airbnb-font);
  color: var(--airbnb-error);
  display: flex;
  align-items: center;
  gap: 4px;
}

.airbnb-input-icon-wrap {
  position: relative;
}
.airbnb-input-icon-wrap .airbnb-input, .airbnb-input-icon-wrap .airbnb-message-field textarea, .airbnb-message-field .airbnb-input-icon-wrap textarea, .airbnb-input-icon-wrap .airbnb-textarea, .airbnb-input-icon-wrap .airbnb-select {
  padding-left: 44px;
}
.airbnb-input-icon-wrap .airbnb-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--airbnb-gray);
  pointer-events: none;
}
.airbnb-input-icon-wrap--right .airbnb-input, .airbnb-input-icon-wrap--right .airbnb-message-field textarea, .airbnb-message-field .airbnb-input-icon-wrap--right textarea, .airbnb-input-icon-wrap--right .airbnb-textarea, .airbnb-input-icon-wrap--right .airbnb-select {
  padding-right: 44px;
  padding-left: 16px;
}
.airbnb-input-icon-wrap--right .airbnb-input-icon {
  left: auto;
  right: 14px;
}

.airbnb-search-bar {
  display: flex;
  align-items: center;
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-2xl);
  box-shadow: var(--airbnb-shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
  font-family: var(--airbnb-font);
}
.airbnb-search-bar:focus-within {
  box-shadow: var(--airbnb-shadow-lg);
}

.airbnb-search-bar__section {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  cursor: pointer;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
  flex: 1;
  min-width: 0;
  border-right: 1px solid var(--airbnb-border);
}
.airbnb-search-bar__section:last-of-type {
  border-right: none;
}
.airbnb-search-bar__section:hover, .airbnb-search-bar__section.is-active {
  background: var(--airbnb-bg-secondary);
  border-radius: var(--airbnb-radius-full);
}
.airbnb-search-bar__section.is-active {
  background: var(--airbnb-white);
  box-shadow: var(--airbnb-shadow-md);
  border-radius: var(--airbnb-radius-full);
  border-color: transparent;
}

.airbnb-search-bar__label {
  font: 600 0.75rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 3px;
  white-space: nowrap;
}

.airbnb-search-bar__input {
  border: none;
  background: transparent;
  outline: none;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  width: 100%;
}
.airbnb-search-bar__input::placeholder {
  color: var(--airbnb-gray-light);
}

.airbnb-search-bar__value {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.airbnb-search-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--airbnb-border);
  flex-shrink: 0;
}

.airbnb-search-bar__btn {
  flex-shrink: 0;
  margin-right: 8px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-search-bar__btn svg {
  width: 18px;
  height: 18px;
}
.airbnb-search-bar__btn:hover {
  background: var(--airbnb-rausch-hover);
}
.airbnb-search-bar__btn--expanded {
  width: auto;
  padding: 0 20px;
  border-radius: var(--airbnb-radius-full);
  gap: 8px;
  font: 600 0.875rem/1 var(--airbnb-font);
}

.airbnb-category-pills {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.airbnb-category-pills::-webkit-scrollbar {
  display: none;
}
.airbnb-category-pills {
  padding: 8px 0;
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}

.airbnb-category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--airbnb-gray);
  font: 500 0.75rem/1 var(--airbnb-font);
  transition: color var(--airbnb-duration-sm) var(--airbnb-ease);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.airbnb-category-pill svg {
  width: 24px;
  height: 24px;
}
.airbnb-category-pill:hover {
  color: var(--airbnb-black);
}
.airbnb-category-pill.is-active {
  color: var(--airbnb-black);
  border-bottom-color: var(--airbnb-black);
}

.airbnb-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--airbnb-font);
}

.airbnb-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-full);
  background: transparent;
  font: 500 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-filter-pill svg {
  width: 14px;
  height: 14px;
}
.airbnb-filter-pill:hover {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-filter-pill.is-active {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
  border-color: var(--airbnb-black);
}
.airbnb-filter-pill--filters {
  gap: 6px;
}
.airbnb-filter-pill--filters svg {
  stroke: currentColor;
  fill: none;
}
.airbnb-filter-pill .airbnb-filter-pill__count {
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.6875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.airbnb-calendar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-family: var(--airbnb-font);
  padding: 24px;
  background: var(--airbnb-white);
  border-radius: var(--airbnb-radius-lg);
  box-shadow: var(--airbnb-shadow-xl);
}

.airbnb-calendar__month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.airbnb-calendar__month-name {
  font: 600 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-calendar__nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--airbnb-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--airbnb-duration-sm);
}
.airbnb-calendar__nav svg {
  width: 12px;
  height: 12px;
  stroke: var(--airbnb-black);
  stroke-width: 2;
  fill: none;
}
.airbnb-calendar__nav:hover {
  background: var(--airbnb-bg-hover);
}

.airbnb-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.airbnb-calendar__weekdays span {
  text-align: center;
  font: 400 0.75rem/2 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.airbnb-calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-calendar__day:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-calendar__day.is-today {
  font-weight: 600;
  text-decoration: underline;
}
.airbnb-calendar__day.is-unavailable {
  color: var(--airbnb-gray-light);
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}
.airbnb-calendar__day.is-in-range {
  background: var(--airbnb-rausch-light);
  border-radius: 0;
  color: var(--airbnb-black);
}
.airbnb-calendar__day.is-start {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
  border-radius: 50% 0 0 50%;
}
.airbnb-calendar__day.is-end {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
  border-radius: 0 50% 50% 0;
}
.airbnb-calendar__day.is-start.is-end {
  border-radius: 50%;
}

.airbnb-price-range {
  font-family: var(--airbnb-font);
}
.airbnb-price-range .airbnb-price-range__labels {
  display: flex;
  justify-content: space-between;
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 8px;
}
.airbnb-price-range .airbnb-price-range__track {
  height: 4px;
  background: var(--airbnb-border);
  border-radius: 2px;
  position: relative;
  margin: 16px 0;
}
.airbnb-price-range .airbnb-price-range__fill {
  position: absolute;
  top: 0;
  height: 4px;
  background: var(--airbnb-black);
  border-radius: 2px;
}
.airbnb-price-range input[type=range] {
  width: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  height: 4px;
}
.airbnb-price-range input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--airbnb-white);
  border: 2px solid var(--airbnb-black);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--airbnb-shadow-sm);
  transition: transform var(--airbnb-duration-sm);
}
.airbnb-price-range input[type=range]::-webkit-slider-thumb:active {
  transform: scale(1.15);
}

.airbnb-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: var(--airbnb-font);
}
.airbnb-checkbox input[type=checkbox] {
  display: none;
}
.airbnb-checkbox .airbnb-checkbox__box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-xs);
  background: var(--airbnb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  margin-top: 1px;
}
.airbnb-checkbox .airbnb-checkbox__box svg {
  width: 12px;
  height: 12px;
  stroke: var(--airbnb-white);
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  transition: opacity var(--airbnb-duration-sm);
}
.airbnb-checkbox input:checked + .airbnb-checkbox__box {
  background: var(--airbnb-black);
  border-color: var(--airbnb-black);
}
.airbnb-checkbox input:checked + .airbnb-checkbox__box svg {
  opacity: 1;
}
.airbnb-checkbox:hover .airbnb-checkbox__box {
  border-color: var(--airbnb-black);
}
.airbnb-checkbox .airbnb-checkbox__label {
  font: 400 1rem/1.4 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--airbnb-font);
}
.airbnb-radio input[type=radio] {
  display: none;
}
.airbnb-radio .airbnb-radio__dot {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--airbnb-border);
  background: var(--airbnb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-radio .airbnb-radio__dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--airbnb-white);
  opacity: 0;
  transition: opacity var(--airbnb-duration-sm);
}
.airbnb-radio input:checked + .airbnb-radio__dot {
  background: var(--airbnb-black);
  border-color: var(--airbnb-black);
}
.airbnb-radio input:checked + .airbnb-radio__dot::after {
  opacity: 1;
}
.airbnb-radio:hover .airbnb-radio__dot {
  border-color: var(--airbnb-black);
}
.airbnb-radio .airbnb-radio__label {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--airbnb-font);
}
.airbnb-toggle input[type=checkbox] {
  display: none;
}
.airbnb-toggle .airbnb-toggle__track {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--airbnb-border);
  position: relative;
  flex-shrink: 0;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-toggle .airbnb-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--airbnb-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-toggle input:checked + .airbnb-toggle__track {
  background: var(--airbnb-rausch);
}
.airbnb-toggle input:checked + .airbnb-toggle__track::after {
  transform: translateX(22px);
}
.airbnb-toggle .airbnb-toggle__label {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--airbnb-font);
  margin-bottom: 32px;
}

.airbnb-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.airbnb-stepper__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  background: var(--airbnb-border);
}
.airbnb-stepper__step.is-complete::after {
  background: var(--airbnb-rausch);
}

.airbnb-stepper__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--airbnb-border);
  background: var(--airbnb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 0.75rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  transition: all var(--airbnb-duration-sm);
  z-index: 1;
}
.airbnb-stepper__dot svg {
  width: 14px;
  height: 14px;
  stroke: var(--airbnb-white);
  stroke-width: 2;
  fill: none;
}

.airbnb-stepper__step.is-active .airbnb-stepper__dot {
  border-color: var(--airbnb-rausch);
  color: var(--airbnb-rausch);
}

.airbnb-stepper__step.is-complete .airbnb-stepper__dot {
  background: var(--airbnb-rausch);
  border-color: var(--airbnb-rausch);
  color: var(--airbnb-white);
}

.airbnb-stepper__label {
  font: 400 0.75rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  text-align: center;
}
.airbnb-stepper__step.is-active .airbnb-stepper__label {
  color: var(--airbnb-black);
  font-weight: 600;
}

.airbnb-form-step {
  font-family: var(--airbnb-font);
  padding: 32px 0;
  border-bottom: 1px solid var(--airbnb-border);
}
.airbnb-form-step:last-child {
  border-bottom: none;
}

.airbnb-form-step__number {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin-bottom: 6px;
}

.airbnb-form-step__title {
  font: 600 1.375rem/1.3 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 8px;
}

.airbnb-form-step__subtitle {
  font: 400 1rem/1.5 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin-bottom: 24px;
}

.airbnb-form-step__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.airbnb-amenity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}
.airbnb-amenity svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--airbnb-black);
}
.airbnb-amenity span {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-amenity.is-unavailable svg, .airbnb-amenity.is-unavailable span {
  color: var(--airbnb-gray-light);
  text-decoration: line-through;
}

.airbnb-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.airbnb-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}
.airbnb-qty-row:last-child {
  border-bottom: none;
}
.airbnb-qty-row .airbnb-qty-row__label {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-qty-row .airbnb-qty-row__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.airbnb-qty-row .airbnb-qty-row__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--airbnb-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--airbnb-duration-sm);
  font-size: 1.2rem;
  color: var(--airbnb-black);
}
.airbnb-qty-row .airbnb-qty-row__btn:hover:not(:disabled) {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-qty-row .airbnb-qty-row__btn:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}
.airbnb-qty-row .airbnb-qty-row__count {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  min-width: 24px;
  text-align: center;
}

.airbnb-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-family: var(--airbnb-font);
}

.airbnb-type-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-md);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  background: var(--airbnb-white);
}
.airbnb-type-option svg {
  width: 28px;
  height: 28px;
  color: var(--airbnb-black);
}
.airbnb-type-option span {
  font: 500 0.9375rem/1.2 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-type-option:hover {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-secondary);
}
.airbnb-type-option.is-selected {
  border-color: var(--airbnb-black);
  background: var(--airbnb-black);
}
.airbnb-type-option.is-selected svg, .airbnb-type-option.is-selected span {
  color: var(--airbnb-white);
}

.airbnb-message-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--airbnb-font);
}
.airbnb-message-field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.airbnb-message-field .airbnb-message-field__count {
  text-align: right;
  font: 400 0.8125rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-upload-zone {
  border: 2px dashed var(--airbnb-border);
  border-radius: var(--airbnb-radius-lg);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
  font-family: var(--airbnb-font);
  background: var(--airbnb-bg-secondary);
}
.airbnb-upload-zone:hover, .airbnb-upload-zone.is-dragging {
  border-color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-upload-zone svg {
  width: 40px;
  height: 40px;
  color: var(--airbnb-gray);
  margin-bottom: 16px;
}
.airbnb-upload-zone .airbnb-upload-zone__title {
  font: 600 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 8px;
}
.airbnb-upload-zone .airbnb-upload-zone__subtitle {
  font: 400 0.875rem/1.4 var(--airbnb-font);
  color: var(--airbnb-gray);
}
.airbnb-upload-zone .airbnb-upload-zone__link {
  color: var(--airbnb-black);
  text-decoration: underline;
  font-weight: 600;
}

.airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 600 0.75rem/1 var(--airbnb-font);
  padding: 4px 8px;
  border-radius: var(--airbnb-radius-xs);
  white-space: nowrap;
  background: var(--airbnb-bg-hover);
  color: var(--airbnb-black);
}
.airbnb-badge svg {
  width: 12px;
  height: 12px;
}
.airbnb-badge--pill {
  border-radius: var(--airbnb-radius-full);
  padding: 5px 10px;
}
.airbnb-badge--dark {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
}
.airbnb-badge--rausch {
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
}
.airbnb-badge--rausch-light {
  background: var(--airbnb-rausch-light);
  color: var(--airbnb-rausch-hover);
}
.airbnb-badge--guest-fav {
  background: var(--airbnb-white);
  color: var(--airbnb-black);
  box-shadow: var(--airbnb-shadow-sm);
  border-radius: var(--airbnb-radius-xs);
}
.airbnb-badge--superhost {
  background: var(--airbnb-rausch);
  color: var(--airbnb-white);
  border-radius: var(--airbnb-radius-full);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.airbnb-badge--outline {
  background: transparent;
  border: 1px solid var(--airbnb-border);
  color: var(--airbnb-black);
}
.airbnb-badge--success {
  background: var(--airbnb-success-bg);
  color: var(--airbnb-success);
}
.airbnb-badge--warning {
  background: var(--airbnb-warning-bg);
  color: var(--airbnb-warning);
}
.airbnb-badge--error {
  background: var(--airbnb-error-bg);
  color: var(--airbnb-error);
}
.airbnb-badge--plus {
  background: var(--airbnb-plus);
  color: var(--airbnb-white);
}
.airbnb-badge--luxe {
  background: var(--airbnb-luxe);
  color: var(--airbnb-white);
}

.airbnb-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--airbnb-radius-md);
  background: var(--airbnb-bg-secondary);
  border: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}
.airbnb-alert svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--airbnb-black);
}
.airbnb-alert__content {
  flex: 1;
}
.airbnb-alert__title {
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin: 0 0 5px;
}
.airbnb-alert__body {
  font: 400 0.875rem/1.5 var(--airbnb-font);
  color: var(--airbnb-black);
  margin: 0;
}
.airbnb-alert__link {
  display: inline-block;
  margin-top: 8px;
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  text-decoration: underline;
  cursor: pointer;
}
.airbnb-alert--info {
  background: var(--airbnb-info-bg);
  border-color: rgba(66, 139, 255, 0.25);
}
.airbnb-alert--info svg {
  color: var(--airbnb-info);
}
.airbnb-alert--info .airbnb-alert__title {
  color: #1a5ec1;
}
.airbnb-alert--success {
  background: var(--airbnb-success-bg);
  border-color: rgba(0, 138, 5, 0.25);
}
.airbnb-alert--success svg {
  color: var(--airbnb-success);
}
.airbnb-alert--success .airbnb-alert__title {
  color: var(--airbnb-success);
}
.airbnb-alert--warning {
  background: var(--airbnb-warning-bg);
  border-color: rgba(224, 121, 18, 0.25);
}
.airbnb-alert--warning svg {
  color: var(--airbnb-warning);
}
.airbnb-alert--warning .airbnb-alert__title {
  color: var(--airbnb-warning);
}
.airbnb-alert--error {
  background: var(--airbnb-error-bg);
  border-color: rgba(223, 35, 35, 0.25);
}
.airbnb-alert--error svg {
  color: var(--airbnb-error);
}
.airbnb-alert--error .airbnb-alert__title {
  color: var(--airbnb-error);
}
.airbnb-alert--rausch {
  background: var(--airbnb-rausch-light);
  border-color: rgba(255, 56, 92, 0.25);
}
.airbnb-alert--rausch svg {
  color: var(--airbnb-rausch-hover);
}
.airbnb-alert--rausch .airbnb-alert__title {
  color: var(--airbnb-rausch-hover);
}

.airbnb-inline-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--airbnb-bg-secondary);
  border-radius: var(--airbnb-radius-sm);
  font: 400 0.875rem/1.4 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-inline-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--airbnb-rausch);
}
.airbnb-inline-notice strong {
  font-weight: 600;
}

.airbnb-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--airbnb-bg-hover);
  flex-shrink: 0;
  font-family: var(--airbnb-font);
}
.airbnb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.airbnb-avatar--initials {
  font: 600 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  background: var(--airbnb-bg-hover);
}
.airbnb-avatar--xs {
  width: 24px;
  height: 24px;
  font-size: 0.625rem;
}
.airbnb-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}
.airbnb-avatar--md {
  width: 40px;
  height: 40px;
  font-size: 0.875rem;
}
.airbnb-avatar--lg {
  width: 56px;
  height: 56px;
  font-size: 1.125rem;
}
.airbnb-avatar--xl {
  width: 72px;
  height: 72px;
  font-size: 1.375rem;
}
.airbnb-avatar--superhost {
  outline: 2px solid var(--airbnb-rausch);
  outline-offset: 2px;
}

.airbnb-avatar-group {
  display: flex;
}
.airbnb-avatar-group .airbnb-avatar {
  border: 2px solid var(--airbnb-white);
  margin-left: -8px;
}
.airbnb-avatar-group .airbnb-avatar:first-child {
  margin-left: 0;
}

.airbnb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  height: 80px;
  background: var(--airbnb-white);
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
}

.airbnb-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.airbnb-nav__logo svg {
  width: 32px;
  height: 32px;
  fill: var(--airbnb-rausch);
}

.airbnb-nav__search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-full);
  padding: 8px 8px 8px 16px;
  box-shadow: var(--airbnb-shadow-sm);
  cursor: pointer;
  font-family: var(--airbnb-font);
  transition: box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
  flex: 1;
  max-width: 360px;
}
.airbnb-nav__search-pill:hover {
  box-shadow: var(--airbnb-shadow-md);
}
.airbnb-nav__search-pill .airbnb-nav__search-pill-text {
  flex: 1;
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.airbnb-nav__search-pill .airbnb-nav__search-pill-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--airbnb-rausch);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.airbnb-nav__search-pill .airbnb-nav__search-pill-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--airbnb-white);
  fill: none;
}

.airbnb-nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.airbnb-nav__host-link {
  padding: 10px 14px;
  border-radius: var(--airbnb-radius-full);
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-nav__host-link:hover {
  background: var(--airbnb-bg-hover);
}

.airbnb-nav__menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 12px;
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-full);
  background: transparent;
  cursor: pointer;
  transition: box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-nav__menu-btn:hover {
  box-shadow: var(--airbnb-shadow-md);
}
.airbnb-nav__menu-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--airbnb-black);
  fill: none;
}

.airbnb-nav__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--airbnb-black);
  color: var(--airbnb-white);
  font: 600 0.75rem/1 var(--airbnb-font);
  display: flex;
  align-items: center;
  justify-content: center;
}

.airbnb-nav-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
  justify-content: center;
}

.airbnb-nav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
  cursor: pointer;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-nav-tab:hover {
  color: var(--airbnb-black);
}
.airbnb-nav-tab.is-active {
  color: var(--airbnb-black);
  font-weight: 600;
  border-bottom-color: var(--airbnb-black);
}

.airbnb-nav-tab__new {
  background: var(--airbnb-rausch-light);
  color: var(--airbnb-rausch-hover);
  border-radius: var(--airbnb-radius-xs);
  font: 600 0.6rem/1 var(--airbnb-font);
  padding: 2px 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.airbnb-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: var(--airbnb-font);
}

.airbnb-section-header__title {
  font: 600 1.375rem/1.2 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-section-header__link {
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}
.airbnb-section-header__link:hover {
  color: var(--airbnb-gray-dark);
}

.airbnb-destinations {
  font-family: var(--airbnb-font);
}

.airbnb-destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.airbnb-destination-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: var(--airbnb-radius-sm);
  cursor: pointer;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
  text-decoration: none;
}
.airbnb-destination-card:hover {
  background: var(--airbnb-bg-hover);
}

.airbnb-destination-card__img {
  width: 64px;
  height: 64px;
  border-radius: var(--airbnb-radius-sm);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--airbnb-bg-hover);
  overflow: hidden;
}

.airbnb-destination-card__name {
  font: 600 0.9375rem/1.2 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 3px;
}

.airbnb-destination-card__meta {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-carousel {
  position: relative;
  font-family: var(--airbnb-font);
}

.airbnb-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.airbnb-carousel__track::-webkit-scrollbar {
  display: none;
}
.airbnb-carousel__track > * {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;
}

.airbnb-carousel__btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  box-shadow: var(--airbnb-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-carousel__btn svg {
  width: 10px;
  height: 10px;
  stroke: var(--airbnb-black);
  stroke-width: 2.5;
  fill: none;
}
.airbnb-carousel__btn:hover {
  box-shadow: var(--airbnb-shadow-lg);
}
.airbnb-carousel__btn--prev {
  left: -16px;
}
.airbnb-carousel__btn--next {
  right: -16px;
}

.airbnb-how-it-works {
  padding: 48px 0;
  font-family: var(--airbnb-font);
}

.airbnb-how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.airbnb-how-it-works__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.airbnb-how-it-works__icon {
  width: 56px;
  height: 56px;
  background: var(--airbnb-rausch-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.airbnb-how-it-works__icon svg {
  width: 28px;
  height: 28px;
  color: var(--airbnb-rausch);
}

.airbnb-how-it-works__step-title {
  font: 600 1.125rem/1.3 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-how-it-works__step-body {
  font: 400 1rem/1.6 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin: 0;
}

.airbnb-aircover {
  padding: 48px 0;
  background: var(--airbnb-bg-secondary);
  font-family: var(--airbnb-font);
}

.airbnb-aircover__header {
  margin-bottom: 32px;
}

.airbnb-aircover__eyebrow {
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-rausch);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.airbnb-aircover__title {
  font: 600 1.625rem/1.3 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 12px;
}

.airbnb-aircover__subtitle {
  font: 400 1rem/1.6 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-aircover__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.airbnb-aircover-tile {
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.airbnb-aircover-tile__icon {
  width: 40px;
  height: 40px;
}
.airbnb-aircover-tile__icon svg {
  width: 40px;
  height: 40px;
  color: var(--airbnb-black);
}

.airbnb-aircover-tile__title {
  font: 600 1rem/1.2 var(--airbnb-font);
  color: var(--airbnb-black);
}

.airbnb-aircover-tile__body {
  font: 400 0.875rem/1.5 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin: 0;
}

.airbnb-aircover-tile__amount {
  font: 700 1.375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-top: auto;
  padding-top: 8px;
}

.airbnb-host-banner {
  border-radius: var(--airbnb-radius-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  font-family: var(--airbnb-font);
  background: var(--airbnb-black);
}

.airbnb-host-banner__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.airbnb-host-banner__eyebrow {
  font: 600 0.875rem/1 var(--airbnb-font);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.airbnb-host-banner__title {
  font: 600 2rem/1.15 var(--airbnb-font);
  color: var(--airbnb-white);
  margin: 0;
}

.airbnb-host-banner__body {
  font: 400 1rem/1.6 var(--airbnb-font);
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 380px;
}

.airbnb-host-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.airbnb-host-banner__cta {
  padding: 14px 24px;
  background: var(--airbnb-white);
  color: var(--airbnb-black);
  border: none;
  border-radius: var(--airbnb-radius-sm);
  font: 600 1rem/1 var(--airbnb-font);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-host-banner__cta:hover {
  background: var(--airbnb-bg-secondary);
}

.airbnb-host-banner__learn {
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-white);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}
.airbnb-host-banner__learn:hover {
  opacity: 0.8;
}

.airbnb-host-banner__image {
  background: linear-gradient(135deg, #8b9dc3 0%, #6b7fa8 40%, #4a5f8a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.airbnb-host-banner__image .airbnb-host-banner__image-caption {
  background: var(--airbnb-white);
  border-radius: var(--airbnb-radius-md);
  padding: 16px 20px;
  box-shadow: var(--airbnb-shadow-lg);
}
.airbnb-host-banner__image .airbnb-host-banner__image-caption .airbnb-host-banner__host-name {
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 4px;
}
.airbnb-host-banner__image .airbnb-host-banner__image-caption .airbnb-host-banner__host-meta {
  font: 400 0.8125rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}

.airbnb-host-banner__stats {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.airbnb-host-banner__stat .value {
  font: 700 1.375rem/1 var(--airbnb-font);
  color: var(--airbnb-white);
}
.airbnb-host-banner__stat .label {
  font: 400 0.8125rem/1 var(--airbnb-font);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.airbnb-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  font-family: var(--airbnb-font);
}
.airbnb-explore-grid > .airbnb-explore-card:first-child {
  grid-row: span 2;
}

.airbnb-explore-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--airbnb-radius-lg);
  cursor: pointer;
  min-height: 180px;
  background: var(--airbnb-bg-hover);
}
.airbnb-explore-card:hover .airbnb-explore-card__img {
  transform: scale(1.05);
}

.airbnb-explore-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--airbnb-ease);
  display: block;
}

.airbnb-explore-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.airbnb-explore-card__label {
  font: 700 1.125rem/1.2 var(--airbnb-font);
  color: var(--airbnb-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.airbnb-explore-card__sub {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.airbnb-faq {
  font-family: var(--airbnb-font);
}

.airbnb-faq__section {
  margin-bottom: 32px;
}

.airbnb-faq__section-title {
  font: 600 1.125rem/1.3 var(--airbnb-font);
  color: var(--airbnb-black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--airbnb-black);
  margin-bottom: 0;
}

.airbnb-faq-item {
  border-bottom: 1px solid var(--airbnb-border);
}
.airbnb-faq-item:last-child {
  border-bottom: none;
}

.airbnb-faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font: 400 1rem/1.5 var(--airbnb-font);
  color: var(--airbnb-black);
  text-align: left;
  gap: 16px;
  transition: color var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-faq-item__trigger:hover {
  color: var(--airbnb-black);
}
.airbnb-faq-item__trigger .airbnb-faq-item__question {
  flex: 1;
  font-weight: 400;
}
.airbnb-faq-item__trigger .airbnb-faq-item__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--airbnb-black);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--airbnb-duration-sm) var(--airbnb-ease);
}

.airbnb-faq-item.is-open .airbnb-faq-item__trigger {
  font-weight: 600;
}
.airbnb-faq-item.is-open .airbnb-faq-item__trigger .airbnb-faq-item__chevron {
  transform: rotate(180deg);
}

.airbnb-faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms var(--airbnb-ease-enter), padding 350ms var(--airbnb-ease-enter);
  padding: 0;
}
.airbnb-faq-item__body p {
  font: 400 1rem/1.65 var(--airbnb-font);
  color: var(--airbnb-black);
  margin: 0 0 16px;
}
.airbnb-faq-item__body p:last-child {
  margin-bottom: 0;
}
.airbnb-faq-item__body a {
  color: var(--airbnb-black);
  text-decoration: underline;
  font-weight: 600;
}

.airbnb-faq-item.is-open .airbnb-faq-item__body {
  max-height: 600px;
  padding: 0 0 20px;
}

.airbnb-help-hero {
  background: var(--airbnb-bg-secondary);
  padding: 56px 24px;
  text-align: center;
  font-family: var(--airbnb-font);
}

.airbnb-help-hero__title {
  font: 600 2rem/1.2 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 24px;
}

.airbnb-help-hero__search {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.airbnb-help-hero__search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--airbnb-gray);
  fill: none;
  pointer-events: none;
}
.airbnb-help-hero__search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-md);
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  background: var(--airbnb-white);
  outline: none;
  box-shadow: var(--airbnb-shadow-sm);
  transition: border-color var(--airbnb-duration-sm), box-shadow var(--airbnb-duration-sm);
}
.airbnb-help-hero__search input::placeholder {
  color: var(--airbnb-gray-light);
}
.airbnb-help-hero__search input:focus {
  border-color: var(--airbnb-black);
  box-shadow: var(--airbnb-shadow-md);
}

.airbnb-role-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--airbnb-font);
}

.airbnb-role-tab {
  padding: 8px 16px;
  border-radius: var(--airbnb-radius-full);
  border: none;
  background: transparent;
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  cursor: pointer;
  transition: all var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-role-tab:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-role-tab.is-active {
  background: var(--airbnb-black);
  color: var(--airbnb-white);
}

.airbnb-help-list {
  font-family: var(--airbnb-font);
}

.airbnb-help-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--airbnb-bg-hover);
  cursor: pointer;
  transition: background var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-help-item:first-child {
  border-top: 1px solid var(--airbnb-bg-hover);
}
.airbnb-help-item:hover {
  background: var(--airbnb-bg-secondary);
  margin: 0 -16px;
  padding: 16px;
}
.airbnb-help-item .airbnb-help-item__label {
  font: 400 1rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-help-item .airbnb-help-item__tags {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.airbnb-help-item .airbnb-help-item__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--airbnb-gray);
  fill: none;
  stroke-width: 2;
}

.airbnb-feature-card {
  background: var(--airbnb-white);
  border: 1px solid var(--airbnb-border);
  border-radius: var(--airbnb-radius-lg);
  padding: 24px;
  font-family: var(--airbnb-font);
  transition: box-shadow var(--airbnb-duration-sm) var(--airbnb-ease);
}
.airbnb-feature-card:hover {
  box-shadow: var(--airbnb-shadow-md);
}

.airbnb-feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: var(--airbnb-rausch-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.airbnb-feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--airbnb-rausch);
}

.airbnb-feature-card__title {
  font: 600 1.125rem/1.3 var(--airbnb-font);
  color: var(--airbnb-black);
  margin-bottom: 8px;
}

.airbnb-feature-card__body {
  font: 400 0.9375rem/1.55 var(--airbnb-font);
  color: var(--airbnb-gray);
  margin: 0 0 16px;
}

.airbnb-feature-card__link {
  font: 600 0.9375rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}

.airbnb-footer {
  border-top: 1px solid var(--airbnb-border);
  font-family: var(--airbnb-font);
  background: var(--airbnb-white);
}

.airbnb-footer__main {
  padding: 48px 80px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.airbnb-footer__col-title {
  font: 800 0.75rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.airbnb-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.airbnb-footer__links li a, .airbnb-footer__links li button {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.airbnb-footer__links li a:hover, .airbnb-footer__links li button:hover {
  text-decoration: underline;
}

.airbnb-footer__bar {
  border-top: 1px solid var(--airbnb-border);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.airbnb-footer__bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.airbnb-footer__bar-left .airbnb-footer__copyright {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-gray);
}
.airbnb-footer__bar-left .airbnb-footer__dot {
  color: var(--airbnb-gray-light);
}
.airbnb-footer__bar-left a, .airbnb-footer__bar-left button {
  font: 400 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}
.airbnb-footer__bar-left a:hover, .airbnb-footer__bar-left button:hover {
  text-decoration: underline;
}

.airbnb-footer__bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.airbnb-footer__locale-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 600 0.875rem/1 var(--airbnb-font);
  color: var(--airbnb-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--airbnb-radius-sm);
}
.airbnb-footer__locale-btn:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-footer__locale-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.airbnb-footer__social {
  display: flex;
  gap: 16px;
}
.airbnb-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--airbnb-black);
  transition: background var(--airbnb-duration-sm);
}
.airbnb-footer__social a:hover {
  background: var(--airbnb-bg-hover);
}
.airbnb-footer__social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.airbnb-promo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--airbnb-white);
  border-top: 1px solid var(--airbnb-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  font-family: var(--airbnb-font);
}
.airbnb-promo-banner .airbnb-promo-banner__text {
  font: 400 0.9375rem/1.5 var(--airbnb-font);
  color: var(--airbnb-black);
}
.airbnb-promo-banner .airbnb-promo-banner__text a {
  font-weight: 600;
  color: var(--airbnb-black);
  text-decoration: underline;
}
.airbnb-promo-banner .airbnb-promo-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
