:root {
  --bg: #ffffff;
  --card: #ffffff;
  --text: #222222;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #ff385c;
  --primary-dark: #e11d48;
  --success: #166534;
  --danger: #b91c1c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.section {
  margin-top: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.airbnb-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
  padding: 28px 48px;
}

.airbnb-header__inner {
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.airbnb-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.airbnb-logo__icon {
  width: 34px;
  height: 34px;
  display: block;
}

.airbnb-logo__text {
  font-size: 18px;
  font-weight: 700;
  color: #ff385c;
  line-height: 1;
}

.airbnb-search {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.airbnb-search__bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 6px 8px 6px 18px;
  min-height: 54px;
  width: 100%;
  max-width: 410px;
}

.airbnb-search__item {
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  padding: 0 18px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.airbnb-search__item--muted {
  color: #6a6a6a;
  font-weight: 500;
}

.airbnb-search__divider {
  width: 1px;
  height: 24px;
  background: #dddddd;
  flex-shrink: 0;
}

.airbnb-search__button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ff385c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.airbnb-search__button svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.airbnb-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.airbnb-actions__host {
  border: 0;
  background: transparent;
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 0;
  white-space: nowrap;
}

.airbnb-actions__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.airbnb-actions__circle svg {
  width: 18px;
  height: 18px;
  stroke: #222222;
}

@media (max-width: 1100px) {
  .airbnb-header {
    padding: 20px 24px;
  }

  .airbnb-header__inner {
    gap: 18px;
  }

  .airbnb-search__bar {
    max-width: 360px;
  }

  .airbnb-search__item {
    padding: 0 14px;
    font-size: 14px;
  }

  .airbnb-actions {
    gap: 10px;
  }

  .airbnb-actions__host {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .airbnb-header {
    padding: 16px 18px;
  }

  .airbnb-header__inner {
    gap: 12px;
  }

  .airbnb-logo__icon {
    width: 30px;
    height: 30px;
  }

  .airbnb-logo__text {
    font-size: 16px;
  }

  .airbnb-search__bar {
    max-width: 320px;
    min-height: 48px;
    padding: 4px 6px 4px 12px;
  }

  .airbnb-search__item {
    padding: 0 10px;
    font-size: 13px;
  }

  .airbnb-search__divider {
    height: 20px;
  }

  .airbnb-search__button {
    width: 38px;
    height: 38px;
  }

  .airbnb-actions {
    gap: 8px;
  }

  .airbnb-actions__host {
    font-size: 13px;
  }

  .airbnb-actions__circle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  .airbnb-header {
    padding: 14px 16px;
  }

  .airbnb-header__inner {
    gap: 10px;
  }

  .airbnb-search__bar {
    max-width: 250px;
    min-height: 44px;
    padding: 4px 5px 4px 10px;
  }

  .airbnb-search__item {
    padding: 0 8px;
    font-size: 12px;
  }

  .airbnb-search__button {
    width: 34px;
    height: 34px;
  }

  .airbnb-actions {
    gap: 6px;
  }

  .airbnb-actions__host {
    display: none;
  }
}

@media (max-width: 430px) {
  .airbnb-logo__text {
    display: none;
  }

  .airbnb-search__item:nth-of-type(2),
  .airbnb-search__divider:nth-of-type(2) {
    display: none;
  }

  .airbnb-search {
    flex: 1;
  }

  .airbnb-search__item {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }

  .airbnb-search__bar {
    max-width: 100%;
  }

  .airbnb-actions__circle {
    width: 36px;
    height: 36px;
  }

  .airbnb-actions__circle svg {
    width: 16px;
    height: 16px;
  }
}

.listing-title-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

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

.listing-title-bar__heading {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #222222;
}

.listing-title-bar__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  padding-top: 10px;
}

.listing-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #222222;
  cursor: pointer;
  font: inherit;
}

.listing-action span {
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.listing-action svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .listing-title-bar__heading {
    font-size: 1rem;
  }

  .listing-title-bar__actions {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .listing-title-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .listing-title-bar__actions {
    padding-top: 0;
    gap: 18px;
  }

  .listing-title-bar__heading {
    font-size: 1.7rem;
  }

  .listing-action svg {
    width: 24px;
    height: 24px;
  }

  .listing-action span {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .listing-title-bar {
    gap: 10px;
  }

  .listing-title-bar__heading {
    font-size: 1.35rem;
  }

  .listing-title-bar__actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .listing-action span {
    font-size: 0.92rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 56, 92, 0.12);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.hero {
  margin-top: 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
}

.hero__main,
.hero__side-image {
  min-height: 240px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #ddd;
}

.hero__main img,
.hero__side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(34, 34, 34, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  padding: 24px;
}

.listing-overview {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
}

.listing-overview__header {
  margin-bottom: 24px;
}

.listing-overview__title {
  margin: 0 0 8px;
  font-size: 2.15rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.listing-overview__meta {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 400;
  color: #222222;
}

.listing-overview__meta span {
  padding: 0 6px;
}

.listing-badge-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 120px 1px 110px;
  align-items: center;
  gap: 18px;
  border: 1.5px solid #d0d0d0;
  border-radius: 18px;
  padding: 22px 24px;
  background: #fff;
}

.listing-badge-card__favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.listing-badge-card__leaf {
  width: 30px;
  height: 46px;
  color: #222222;
  flex-shrink: 0;
}

.listing-badge-card__favorite-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.listing-badge-card__description {
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 700;
  max-width: 420px;
}

.listing-badge-card__rating {
  text-align: center;
}

.listing-badge-card__rating-score {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.listing-badge-card__stars {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 1px;
}

.listing-badge-card__divider {
  width: 1px;
  align-self: stretch;
  background: #d0d0d0;
}

.listing-badge-card__reviews {
  text-align: center;
}

.listing-badge-card__reviews-count {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}

.listing-badge-card__reviews-label {
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 700;
}

.listing-separator {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin: 28px 0;
}

.listing-host {
  display: flex;
  align-items: center;
  gap: 16px;
}

.listing-host__avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.listing-host__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.listing-host__badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff2d78;
  color: #fff;
  border: 3px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.listing-host__badge svg {
  width: 15px;
  height: 15px;
}

.listing-host__title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 700;
}

.listing-host__meta {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: #6a6a6a;
}

.listing-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.listing-highlight {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.listing-highlight__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.listing-highlight__icon svg {
  width: 100%;
  height: 100%;
}

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

.listing-highlight__title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
}

.listing-highlight__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #6a6a6a;
  max-width: 720px;
}

@media (max-width: 1024px) {
  .listing-overview__title {
    font-size: 1.9rem;
  }

  .listing-overview__meta {
    font-size: 1.05rem;
  }

  .listing-badge-card {
    grid-template-columns: 170px minmax(0, 1fr) 90px 1px 82px;
    gap: 12px;
    padding: 20px;
  }

  .listing-badge-card__favorite,
  .listing-badge-card__rating,
  .listing-badge-card__reviews {
    justify-content: center;
    text-align: center;
  }

  .listing-badge-card__favorite-text {
    align-items: center;
    text-align: center;
  }

  .listing-badge-card__description {
    max-width: 100%;
    font-size: 0.94rem;
  }
}

@media (max-width: 768px) {
  .listing-overview__title {
    font-size: 1.55rem;
  }

  .listing-overview__meta {
    font-size: 0.98rem;
  }

  .listing-overview__header {
    margin-bottom: 18px;
  }

  .listing-badge-card {
    grid-template-columns: 136px minmax(0, 1fr) 74px 1px 66px;
    padding: 16px;
    border-radius: 16px;
  }

  .listing-badge-card__favorite {
    gap: 8px;
  }

  .listing-badge-card__leaf {
    width: 24px;
    height: 36px;
  }

  .listing-badge-card__favorite-text {
    font-size: 1.1rem;
  }

  .listing-badge-card__description {
    font-size: 0.82rem;
  }

  .listing-badge-card__rating-score,
  .listing-badge-card__reviews-count {
    font-size: 1.2rem;
  }

  .listing-badge-card__stars {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .listing-badge-card__reviews-label {
    font-size: 0.8rem;
  }

  .listing-host__avatar-wrap {
    width: 56px;
    height: 56px;
  }

  .listing-host__title {
    font-size: 1.2rem;
  }

  .listing-host__meta {
    font-size: 0.92rem;
  }

  .listing-highlight {
    gap: 14px;
  }

  .listing-highlight__icon {
    width: 28px;
    height: 28px;
  }

  .listing-highlight__title {
    font-size: 1rem;
  }

  .listing-highlight__text {
    font-size: 0.92rem;
  }

  .listing-separator {
    margin: 22px 0;
  }
}

@media (max-width: 480px) {
  .listing-overview__title {
    font-size: 1.35rem;
  }

  .listing-overview__meta {
    font-size: 0.9rem;
  }

  .listing-overview__meta span {
    padding: 0 4px;
  }

  .listing-badge-card {
    grid-template-columns: 112px minmax(0, 1fr) 60px 1px 54px;
    gap: 10px;
    padding: 14px;
  }

  .listing-badge-card__favorite-text {
    font-size: 0.82rem;
  }

  .listing-badge-card__description {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .listing-badge-card__rating-score,
  .listing-badge-card__reviews-count {
    font-size: 1rem;
  }

  .listing-badge-card__stars {
    font-size: 0.76rem;
  }

  .listing-badge-card__reviews-label {
    font-size: 0.68rem;
  }

  .listing-host {
    gap: 12px;
  }

  .listing-host__avatar-wrap {
    width: 48px;
    height: 48px;
  }

  .listing-host__badge {
    width: 24px;
    height: 24px;
  }

  .listing-host__badge svg {
    width: 13px;
    height: 13px;
  }

  .listing-host__title {
    font-size: 1.05rem;
  }

  .listing-host__meta {
    font-size: 0.86rem;
  }

  .listing-highlights {
    gap: 18px;
  }

  .listing-highlight {
    gap: 12px;
  }

  .listing-highlight__icon {
    width: 24px;
    height: 24px;
  }

  .listing-highlight__title {
    font-size: 0.94rem;
  }

  .listing-highlight__text {
    font-size: 0.88rem;
  }

  .listing-separator {
    margin: 18px 0;
  }
}

.air-modal-description-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222222;
}

.air-modal-description-preview {
  max-width: 760px;
}

.air-modal-description-preview p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.air-modal-description-preview__ellipsis {
  margin-bottom: 20px;
}

.air-modal-description-section__button {
  min-width: 132px;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: #efefef;
  color: #222222;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 18px;
  transition: background 0.2s ease;
}

.air-modal-description-section__button:hover {
  background: #e5e5e5;
}

.air-modal-description {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.air-modal-description.is-open {
  display: block;
}

.air-modal-description__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
}

.air-modal-description__panel {
  position: relative;
  width: 60vw;
  max-width: 900px;
  min-width: 320px;
  height: 70vh;
  margin: 6vh auto 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.air-modal-description__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.air-modal-description__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #222222;
}

.air-modal-description__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.air-modal-description__close svg {
  width: 22px;
  height: 22px;
}

.air-modal-description__body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.air-modal-description__body p {
  margin: 0 0 22px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333333;
}

.air-modal-description__body p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 1024px) {
  .air-modal-description-preview p {
    font-size: 0.96rem;
    margin-bottom: 16px;
  }

  .air-modal-description-section__button {
    min-width: 124px;
    min-height: 44px;
    font-size: 0.94rem;
    border-radius: 12px;
  }

  .air-modal-description__panel {
    width: 80vw;
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .air-modal-description-preview p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .air-modal-description-section__button {
    min-width: 116px;
    min-height: 40px;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 10px 16px;
  }

  .air-modal-description__panel {
    width: 92vw;
    height: 70vh;
    margin-top: 4vh;
    border-radius: 18px;
  }

  .air-modal-description__header {
    padding: 18px 18px 16px;
  }

  .air-modal-description__title {
    font-size: 1.3rem;
  }

  .air-modal-description__body {
    padding: 18px;
  }

  .air-modal-description__body p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .air-modal-description-preview {
    max-width: 100%;
  }

  .air-modal-description-preview p {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .air-modal-description-preview__ellipsis {
    margin-bottom: 14px;
  }

  .air-modal-description-section__button {
    min-width: 108px;
    min-height: 38px;
    font-size: 0.86rem;
    padding: 9px 14px;
  }
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.meta-pill {
  border: 1px solid var(--border);
  background: #fafafa;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.lead {
  color: #374151;
  font-size: 1rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfcfc;
}

.amenity__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 56, 92, 0.1);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.amenity__text strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 2px;
}

.amenity__text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-wrapper {
  overflow-x: auto;
}

.calendar {
  min-width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.calendar th,
.calendar td {
  text-align: center;
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
  background: #fff;
}

.calendar th:last-child,
.calendar td:last-child {
  border-right: none;
}

.calendar tr:last-child td {
  border-bottom: none;
}

.calendar th {
  background: #fafafa;
  color: var(--muted);
  font-weight: 700;
}

.day--muted {
  color: #c0c4cc;
  background: #fbfbfb;
}

.day--available {
  background: #f0fdf4;
  color: var(--success);
  font-weight: 700;
}

.day--booked {
  background: #fef2f2;
  color: var(--danger);
  font-weight: 700;
  text-decoration: line-through;
}

.day--selected {
  background: rgba(255, 56, 92, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255, 56, 92, 0.25);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legend__swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.legend__swatch--available {
  background: #f0fdf4;
}
.legend__swatch--booked {
  background: #fef2f2;
}
.legend__swatch--selected {
  background: rgba(255, 56, 92, 0.12);
}

.sidebar {
  position: sticky;
  top: 96px;
}

.booking-panel-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.booking-fee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.booking-fee-banner__icon {
  font-size: 24px;
  line-height: 1;
}

.booking-fee-banner__text {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
}

.booking-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.booking-card__price {
  margin-bottom: 18px;
}

.booking-card__heading {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #222222;
}

.booking-card__price-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.booking-card__price-note {
  font-weight: 400;
}

.booking-dates-card {
  border: 2px solid #9d9d9d;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.booking-dates-card__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.booking-dates-card__cell,
.booking-dates-card__bottom {
  padding: 14px 16px 13px;
  background: #ffffff;
}

.booking-dates-card__cell--border {
  border-left: 2px solid #b0b0b0;
}

.booking-dates-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 2px solid #b0b0b0;
}

.booking-dates-card__bottom-left {
  flex: 1;
  min-width: 0;
}

.booking-dates-card__label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 800;
  color: #222222;
}

.booking-dates-card__input,
.booking-dates-card__select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
  color: #222222;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.booking-dates-card__select {
  cursor: pointer;
  padding-right: 10px;
}

.booking-dates-card__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #222222;
  flex-shrink: 0;
  pointer-events: none;
}

.booking-dates-card__chevron svg {
  width: 18px;
  height: 18px;
}

.booking-rates {
  margin-bottom: 20px;
}

.booking-rates__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #222222;
}

.booking-rates-card {
  border: 2px solid #b0b0b0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.booking-rate-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  cursor: pointer;
}

.booking-rate-option--divider {
  border-top: 2px solid #b0b0b0;
}

.booking-rate-option__content {
  min-width: 0;
  flex: 1;
  padding-right: 6px;
}

.booking-rate-option__heading {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #222222;
}

.booking-rate-option__description {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #6a6a6a;
}

.booking-rate-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-rate-option__radio {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid #9d9d9d;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-rate-option__input:checked + .booking-rate-option__radio {
  border-color: #222222;
}

.booking-rate-option__input:checked + .booking-rate-option__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #222222;
}

.booking-card__reserve-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff1f63 0%, #e6007a 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.booking-card__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  color: #222222;
}

.booking-form-status {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}

.booking-form-status.success {
  color: #18864b;
}

.booking-form-status.error {
  color: #c13515;
}

.booking-field-error {
  margin: 5px 0 0;
  min-height: 16px;
  font-size: 12px;
  color: #c13515;
}

.booking-field-error--rates {
  margin-top: 12px;
}

.booking-input-invalid {
  box-shadow: inset 0 -2px 0 #c13515;
}

.booking-report-btn {
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.booking-report-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .booking-fee-banner {
    min-height: 58px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .booking-fee-banner__icon {
    font-size: 20px;
  }

  .booking-fee-banner__text {
    font-size: 14px;
  }

  .booking-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .booking-card__heading {
    font-size: 20px;
  }

  .booking-dates-card__top {
    grid-template-columns: 1fr;
  }

  .booking-dates-card__cell--border {
    border-left: 0;
    border-top: 2px solid #b0b0b0;
  }

  .booking-dates-card__cell,
  .booking-dates-card__bottom {
    padding: 12px;
  }

  .booking-dates-card__label {
    font-size: 11px;
  }

  .booking-dates-card__input,
  .booking-dates-card__select {
    font-size: 15px;
  }

  .booking-rate-option {
    padding: 14px 12px;
    gap: 10px;
  }

  .booking-rate-option__heading {
    font-size: 15px;
  }

  .booking-rate-option__description {
    font-size: 12px;
  }

  .booking-rate-option__radio {
    width: 22px;
    height: 22px;
  }

  .booking-rate-option__input:checked + .booking-rate-option__radio::after {
    inset: 4px;
  }

  .booking-card__reserve-btn {
    min-height: 48px;
    font-size: 17px;
  }

  .booking-card__note {
    font-size: 12px;
  }

  .booking-report-btn {
    font-size: 12px;
  }

  .booking-report-btn svg {
    width: 15px;
    height: 15px;
  }
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

.price-note {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.form-row {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 56, 92, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.86rem;
  min-height: 1em;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  width: 100%;
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.94rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer__inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 24px 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 991px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(110px, 0.95fr);
    gap: 10px;
  }

  .hero__side {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
  }

  .hero__main,
  .hero__side-image {
    min-height: 210px;
  }

  .panel,
  .booking-card {
    padding: 18px;
  }

  .amenities {
    grid-template-columns: 1fr;
  }

  .property-meta {
    gap: 8px;
  }

  .meta-pill {
    font-size: 0.88rem;
  }

  .price {
    font-size: 1.7rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }

  .site-header__inner,
  .footer__inner {
    width: min(100% - 20px, var(--max-width));
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(92px, 0.85fr);
    padding: 10px;
    gap: 10px;
  }

  .hero__side {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
  }

  .hero__main,
  .hero__side-image {
    min-height: 160px;
  }

  .calendar th,
  .calendar td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section,
  .hero,
  .layout {
    margin-top: 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(78px, 0.8fr);
    padding: 8px;
    gap: 8px;
  }

  .hero__side {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero__main,
  .hero__side-image {
    min-height: 138px;
  }

  .hero__badge {
    left: 10px;
    bottom: 10px;
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .panel,
  .booking-card {
    padding: 16px;
  }

  h1 {
    font-size: 1.65rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .amenity {
    align-items: flex-start;
    padding: 12px;
  }

  .amenity__icon {
    width: 36px;
    height: 36px;
  }

  .calendar {
    min-width: 560px;
  }

  .calendar th,
  .calendar td {
    padding: 10px 6px;
    font-size: 0.84rem;
  }

  .legend {
    gap: 10px;
  }

  .price {
    font-size: 1.5rem;
  }

  .footer__inner {
    padding: 20px 0 28px;
    font-size: 0.9rem;
  }
}
