/**
 * StayEasy — Property detail page (v2 layout)
 * Matches public property designs: bento gallery, booking widget, availability calendar, room accordions.
 */

.property-detail-v2 {
  --pv2-radius: 0.75rem;
  --pv2-radius-lg: 1rem;
  --pv2-border: rgba(var(--se-navy-mid-rgb), 0.12);
  --pv2-shadow: 0 0.25rem 1.25rem rgba(var(--se-navy-dark-rgb), 0.08);
  padding-bottom: 3rem;
}

/* Breadcrumb */
.property-v2-breadcrumb {
  padding: 1rem 0 1.25rem;
}

.property-v2-breadcrumb .breadcrumb {
  margin-bottom: 0;
  font-size: 0.8125rem;
  background: transparent;
  padding: 0;
}

.property-v2-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(var(--se-navy-mid-rgb), 0.45);
}

.property-v2-breadcrumb .breadcrumb-item a {
  color: rgba(var(--se-navy-mid-rgb), 0.72);
  text-decoration: none;
}

.property-v2-breadcrumb .breadcrumb-item a:hover {
  color: var(--se-teal);
}

.property-v2-breadcrumb .breadcrumb-item.active {
  color: var(--se-navy-dark);
  font-weight: 600;
}

.property-v2-breadcrumb__home {
  display: none;
}

.property-v2-breadcrumb__home + .property-v2-breadcrumb__stays::before {
  content: none;
  display: none;
  padding: 0;
}

/* Bento gallery — layout adapts to unique image count (no duplicated fillers) */
.property-v2-gallery {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
}

.property-v2-gallery__cell {
  position: relative;
  border: none;
  padding: 0;
  background: rgba(var(--se-navy-mid-rgb), 0.06);
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--pv2-radius);
  min-height: 11rem;
}

.property-v2-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.property-v2-gallery__cell:hover img {
  transform: scale(1.03);
}

.property-v2-gallery__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.property-v2-gallery__counter {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: rgba(var(--se-navy-dark-rgb), 0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
}

.property-v2-gallery__view-all {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.property-v2-gallery__more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--se-navy-dark-rgb), 0.45);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  pointer-events: none;
}

/* Mobile: horizontal snap for 2+ images; single image fills width */
.property-v2-gallery--count-1 {
  grid-template-columns: 1fr;
}

.property-v2-gallery--count-1 .property-v2-gallery__cell {
  min-height: 16rem;
  border-radius: var(--pv2-radius-lg);
}

.property-v2-gallery:not(.property-v2-gallery--count-1) {
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.property-v2-gallery:not(.property-v2-gallery--count-1) .property-v2-gallery__cell {
  scroll-snap-align: start;
  min-height: 14rem;
}

@media (min-width: 768px) {
  .property-v2-gallery {
    overflow: hidden;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    scroll-snap-type: none;
    min-height: 22rem;
    max-height: 32rem;
  }

  .property-v2-gallery__cell {
    min-height: 0;
  }

  /* 1 image — full gallery space */
  .property-v2-gallery--count-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .property-v2-gallery--count-1 .property-v2-gallery__cell {
    border-radius: var(--pv2-radius-lg);
    min-height: 22rem;
  }

  /* 2 images — equal split */
  .property-v2-gallery--count-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .property-v2-gallery--count-2 .property-v2-gallery__cell:first-child {
    border-radius: var(--pv2-radius-lg) 0 0 var(--pv2-radius-lg);
  }

  .property-v2-gallery--count-2 .property-v2-gallery__cell:last-child {
    border-radius: 0 var(--pv2-radius-lg) var(--pv2-radius-lg) 0;
  }

  /* 3 images — large left + 2 stacked right */
  .property-v2-gallery--count-3 {
    grid-template-columns: 1.65fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .property-v2-gallery--count-3 .property-v2-gallery__cell--primary {
    grid-row: 1 / span 2;
    border-radius: var(--pv2-radius-lg) 0 0 var(--pv2-radius-lg);
  }

  .property-v2-gallery--count-3 .property-v2-gallery__cell:nth-child(2) {
    border-radius: 0 var(--pv2-radius-lg) 0 0;
  }

  .property-v2-gallery--count-3 .property-v2-gallery__cell:nth-child(3) {
    border-radius: 0 0 var(--pv2-radius-lg) 0;
  }

  /* 4 images — large left + 3 stacked right */
  .property-v2-gallery--count-4 {
    grid-template-columns: 1.65fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .property-v2-gallery--count-4 .property-v2-gallery__cell--primary {
    grid-row: 1 / span 3;
    border-radius: var(--pv2-radius-lg) 0 0 var(--pv2-radius-lg);
  }

  .property-v2-gallery--count-4 .property-v2-gallery__cell:nth-child(2) {
    border-radius: 0 var(--pv2-radius-lg) 0 0;
  }

  .property-v2-gallery--count-4 .property-v2-gallery__cell:nth-child(4) {
    border-radius: 0 0 var(--pv2-radius-lg) 0;
  }

  /* 5+ images — classic bento: large left + 2×2 right (first 5 unique only) */
  .property-v2-gallery--count-many {
    grid-template-columns: 1.65fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .property-v2-gallery--count-many .property-v2-gallery__cell--primary {
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: var(--pv2-radius-lg) 0 0 var(--pv2-radius-lg);
  }

  .property-v2-gallery--count-many .property-v2-gallery__cell:nth-child(2) {
    border-radius: 0;
  }

  .property-v2-gallery--count-many .property-v2-gallery__cell:nth-child(3) {
    border-radius: 0 var(--pv2-radius-lg) 0 0;
  }

  .property-v2-gallery--count-many .property-v2-gallery__cell:nth-child(4) {
    border-radius: 0;
  }

  .property-v2-gallery--count-many .property-v2-gallery__cell:nth-child(5) {
    border-radius: 0 0 var(--pv2-radius-lg) 0;
  }
}

/* Title & meta */
.property-v2-title {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--se-navy-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.property-v2-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.85);
}

.property-v2-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-v2-meta__item i {
  color: var(--se-teal);
}

.property-v2-meta__item--mobile {
  display: none;
}

.property-v2-price-anchor {
  font-size: 0.9375rem;
  color: rgba(var(--se-navy-mid-rgb), 0.85);
  margin-bottom: 1.5rem;
}

.property-v2-price-anchor strong {
  color: var(--se-teal);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Feature highlight cards */
.property-v2-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .property-v2-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-v2-feature-card {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  padding: 1.15rem 1rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.property-v2-feature-card:hover {
  box-shadow: var(--pv2-shadow);
  border-color: rgba(var(--se-teal-rgb), 0.25);
}

.property-v2-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--se-teal-rgb), 0.1);
  color: var(--se-teal);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.property-v2-feature-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--se-navy-dark);
  margin-bottom: 0.35rem;
}

.property-v2-feature-card__text {
  font-size: 0.8125rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
  line-height: 1.5;
  margin: 0;
}

.property-v2-feature-card__chevron {
  display: none;
}

/* Section headings */
.property-v2-section-title {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--se-navy-dark);
  margin-bottom: 0.5rem;
}

.property-v2-section-lead {
  font-size: 0.875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
  margin-bottom: 1.25rem;
}

/* Amenity row */
.property-v2-amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.property-v2-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--se-navy-dark);
  white-space: nowrap;
}

.property-v2-amenity-pill i {
  color: var(--se-teal);
}

/* Booking widget */
.property-v2-booking-widget {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  box-shadow: var(--pv2-shadow);
  padding: 1.35rem 1.25rem;
  overflow: visible;
}

@media (min-width: 992px) {
  .property-v2-booking-widget {
    /* Sticky handled by .property-v2-sidebar-sticky wrapper */
  }
}

.property-v2-booking-widget__title {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--se-navy-dark);
  margin-bottom: 1rem;
}

.property-v2-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.property-v2-booking-field {
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  padding: 0.65rem 0.75rem;
  background: #fff;
  transition: border-color 0.2s ease;
}

.property-v2-booking-field:focus-within {
  border-color: rgba(var(--se-teal-rgb), 0.45);
  box-shadow: 0 0 0 0.15rem rgba(var(--se-teal-rgb), 0.12);
}

.property-v2-booking-field__label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: rgba(var(--se-navy-mid-rgb), 0.65);
  margin-bottom: 0.2rem;
}

.property-v2-booking-field__label i {
  color: var(--se-teal);
  font-size: 0.8rem;
}

.property-v2-booking-field input,
.property-v2-booking-field select {
  border: 0;
  padding: 0;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--se-navy-dark);
  background: transparent;
  outline: none;
}

.property-v2-booking-date-input[readonly] {
  cursor: pointer;
}

.property-v2-booking-field.booking-stay-date-field {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.property-v2-booking-field.booking-stay-date-field.is-cal-open {
  z-index: 30;
}

body.client-site-body .property-v2-sidebar-col .booking-stay-cal-pop,
body.client-site-body .property-v2-booking-field.booking-stay-date-field .booking-stay-cal-pop {
  left: auto;
  right: 0;
}

.property-v2-booking-field input::placeholder {
  color: rgba(var(--se-navy-mid-rgb), 0.5);
  font-weight: 400;
}

.property-v2-booking-field--full {
  grid-column: 1 / -1;
}

.property-v2-btn-check {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--se-teal);
  color: #fff;
  border: none;
  border-radius: var(--pv2-radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 0.85rem;
}

.property-v2-btn-check:hover {
  background: var(--se-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.property-v2-avail-check-result {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--pv2-radius);
  border: 1px solid var(--pv2-border);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.property-v2-avail-check-result[hidden] {
  display: none !important;
}

.property-v2-avail-check-result__title {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.property-v2-avail-check-result__title i {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.property-v2-avail-check-result__detail {
  margin: 0;
  color: inherit;
}

.property-v2-avail-check-result__suggestion {
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(var(--se-navy-mid-rgb), 0.12);
}

.property-v2-avail-check-result__apply {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 600;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.property-v2-avail-check-result--available {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  color: #166534;
}

.property-v2-avail-check-result--request {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.35);
  color: #1e40af;
}

.property-v2-avail-check-result--partial {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #92400e;
}

.property-v2-avail-check-result--unavailable,
.property-v2-avail-check-result--invalid {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

.property-v2-avail-check-result--neutral {
  background: rgba(var(--se-navy-mid-rgb), 0.04);
  color: rgba(var(--se-navy-mid-rgb), 0.85);
}

.property-v2-booking-price {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
  margin-bottom: 0.85rem;
}

.property-v2-booking-price strong {
  color: var(--se-teal);
  font-size: 1.15rem;
}

.property-v2-booking-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(var(--se-navy-mid-rgb), 0.72);
  line-height: 1.45;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--pv2-border);
}

.property-v2-booking-note i {
  color: var(--se-teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.property-v2-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.property-v2-booking-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--pv2-radius);
  font-weight: 600;
  padding: 0.65rem 1rem;
  line-height: 1;
}

.property-v2-booking-actions .btn .bi {
  line-height: 1;
  margin: 0 !important;
}

/* Good to know cards */
.property-v2-good-to-know {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.property-v2-know-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .property-v2-know-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .property-v2-know-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.property-v2-know-card {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  padding: 1.15rem 1rem;
  height: 100%;
}

.property-v2-know-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--se-teal-rgb), 0.1);
  color: var(--se-teal);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.property-v2-know-card__title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--se-navy-dark);
  margin-bottom: 0.35rem;
}

.property-v2-know-card__text {
  font-size: 0.8125rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
  line-height: 1.45;
  margin: 0;
}

/* Availability section */
.property-detail-v2 .property-availability-section {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--pv2-shadow);
  margin-top: 2.5rem;
}

.property-detail-v2 .property-availability-section .h5,
.property-detail-v2 #property-availability-heading {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.property-v2-avail-layout {
  align-items: flex-start;
}

.property-detail-v2 .stayeasy-mini-cal--priced {
  max-width: 100%;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
}

/* Room accordion section */
.property-v2-rooms-section {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.property-v2-rooms-section .property-v2-section-title {
  margin-bottom: 0.35rem;
}

.property-v2-stay-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--se-teal-rgb), 0.06);
  border: 1px solid rgba(var(--se-teal-rgb), 0.15);
  border-radius: var(--pv2-radius);
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--se-navy-dark);
}

.property-v2-stay-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-v2-stay-bar__item i {
  color: var(--se-teal);
}

.property-v2-stay-bar__edit {
  margin-left: auto;
  color: var(--se-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8125rem;
}

.property-v2-stay-bar__edit:hover {
  color: var(--se-teal-dark);
}

.property-v2-room-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.property-v2-room-item {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
  box-shadow: 0 0.15rem 0.5rem rgba(var(--se-navy-dark-rgb), 0.04);
  transition: box-shadow 0.2s ease;
}

.property-v2-room-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(var(--se-teal-rgb), 0.3);
  box-shadow: var(--pv2-shadow);
}

.property-v2-room-item .accordion-button {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--se-navy-dark);
  background: #fff;
  box-shadow: none !important;
  gap: 0.75rem;
}

.property-v2-room-item .accordion-button:not(.collapsed) {
  background: rgba(var(--se-teal-rgb), 0.04);
  border-bottom: 1px solid var(--pv2-border);
}

.property-v2-room-item .accordion-button::after {
  flex-shrink: 0;
}

.property-v2-room-header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.property-v2-room-header-meta__title {
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}

@media (min-width: 768px) {
  .property-v2-room-header-meta__title {
    width: auto;
    flex: 1 1 auto;
  }
}

.property-v2-room-header-meta__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
}

.property-v2-room-header-meta__detail i {
  color: var(--se-teal);
}

.property-v2-room-body {
  padding: 0.95rem 1.15rem 1.15rem;
}

.property-v2-room-body-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .property-v2-room-body-inner {
    grid-template-columns: 11rem 1fr;
  }
}

.property-v2-room-thumb {
  border-radius: var(--pv2-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(var(--se-navy-mid-rgb), 0.06);
  position: relative;
}

.property-v2-room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-v2-room-thumb__open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}

.property-v2-room-thumb-carousel,
.property-v2-room-thumb-carousel .carousel-inner,
.property-v2-room-thumb-carousel .carousel-item {
  height: 100%;
}

.property-v2-room-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-v2-room-thumb__nav {
  width: 2rem;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 2;
}

.property-v2-room-thumb__nav.carousel-control-prev {
  left: 0.35rem;
}

.property-v2-room-thumb__nav.carousel-control-next {
  right: 0.35rem;
}

.property-v2-room-thumb__nav-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
}


.property-v2-room-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pv2-border);
}

.property-v2-room-footer .js-add-to-cart-trigger,
.property-v2-room-footer .js-add-to-cart-guest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1;
  padding: 0.45rem 0.95rem;
  border-radius: var(--pv2-radius);
  font-weight: 600;
}

.property-v2-room-footer .js-add-to-cart-trigger .bi,
.property-v2-room-footer .js-add-to-cart-guest .bi {
  line-height: 1;
  font-size: 1em;
  margin: 0 !important;
}

.property-v2-room-total {
  font-size: 0.875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
}

.property-v2-room-total strong {
  color: var(--se-navy-dark);
  font-size: 1.1rem;
}

.property-v2-room-select-btn {
  padding: 0.55rem 1.35rem;
  background: var(--se-teal);
  color: #fff;
  border: none;
  border-radius: var(--pv2-radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.property-v2-room-select-btn:hover {
  background: var(--se-teal-dark);
  color: #fff;
}

/* Map compact */
.property-v2-map-card {
  margin-top: 2rem;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
  background: #fff;
}

.property-v2-map-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--pv2-border);
  font-size: 0.875rem;
  font-weight: 600;
}

.property-v2-map-card__head a {
  font-size: 0.8125rem;
  font-weight: 500;
}

.property-v2-map-card .property-detail-map-canvas,
.property-v2-map-card .property-detail-map-iframe {
  min-height: 12rem;
}

/* Policies v2 */
.property-detail-v2 .property-policies-section {
  margin-top: 2.5rem;
}

.property-detail-v2 .property-policies-section .h5,
.property-detail-v2 #property-policies-heading {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.property-v2-policies-card {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}

/* Legacy section overrides inside v2 */
.property-detail-v2 .property-highlights-panel {
  border-radius: var(--pv2-radius-lg);
  margin-bottom: 2rem;
}

.property-detail-v2 .property-description {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.property-detail-v2 .property-meal-plan-card,
.property-detail-v2 .property-arrival-item {
  border-radius: var(--pv2-radius);
}

.property-detail-v2 .scroll-anchor {
  scroll-margin-top: 6rem;
}

/* Hidden carousel for JS sync */
.property-v2-carousel-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.property-v2-hero,
.property-v2-mobile-cta {
  display: none;
}

/* Responsive stacking — content first, sidebar below on mobile */
@media (max-width: 991.98px) {
  .property-v2-sidebar-col {
    margin-top: 2rem;
  }
}

/* Sticky sidebar (booking widget only) */
@media (min-width: 992px) {
  .property-v2-page-layout > .col-lg-8 {
    min-width: 0;
  }

  .property-v2-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 5.5rem;
    z-index: 20;
    overflow: visible;
  }

  .property-v2-sidebar-sticky:has(.is-cal-open) {
    z-index: 40;
  }
}

@media (max-width: 767.98px) {
  .property-v2-gallery--count-1 .property-v2-gallery__cell {
    border-radius: var(--pv2-radius-lg);
  }

  .property-v2-gallery:not(.property-v2-gallery--count-1) .property-v2-gallery__cell:first-child {
    border-radius: var(--pv2-radius-lg) 0 0 var(--pv2-radius-lg);
  }

  .property-v2-gallery:not(.property-v2-gallery--count-1) .property-v2-gallery__cell:last-child {
    border-radius: 0 var(--pv2-radius-lg) var(--pv2-radius-lg) 0;
  }
}

.property-v2-room-body .room-meal-board__grid {
  gap: 0.5rem;
}

.property-v2-room-body .room-meal-board__card {
  border-radius: var(--pv2-radius);
  border: 1px solid var(--pv2-border);
}

.property-policies-section--v2 {
  margin-top: 0 !important;
  padding-top: 0;
}

.property-detail-v2 .property-avail-room-tab.is-active {
  background: var(--se-teal);
  border-color: var(--se-teal);
  color: #fff;
}

.property-detail-v2 .property-avail-room-tab.is-active .property-avail-room-tab__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Inline availability calendar (main content, above rooms) */
.property-v2-availability-inline {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.property-v2-avail-section-card {
  background: #fff;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius-lg);
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: var(--pv2-shadow);
}

.property-v2-avail-panel__meta .property-v2-avail-panel__title {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.property-v2-avail-panel__title {
  font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--se-navy-dark);
  margin-bottom: 0.35rem;
}

.property-v2-avail-panel__lead {
  font-size: 0.875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
  margin-bottom: 0.85rem;
}

.property-v2-avail-panel__lead strong {
  color: var(--se-navy-dark);
}

.property-v2-avail-panel__room-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.property-v2-avail-panel__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: rgba(var(--se-navy-mid-rgb), 0.78);
}

.property-v2-avail-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-v2-avail-legend-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  flex-shrink: 0;
}

.property-v2-avail-legend-swatch--open {
  background: #d4edda;
  border: 1px solid #b8dfc4;
}

.property-v2-avail-legend-swatch--full {
  background: rgba(239, 68, 68, 0.22);
  border: 1px solid rgba(185, 28, 28, 0.35);
}

.property-v2-avail-legend-swatch--request {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}

.property-v2-avail-legend-swatch--block {
  background: #eceff3;
  border: 1px solid #d5dbe3;
}

.property-v2-avail-cal {
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  padding: 0.75rem 0.55rem 0.65rem;
  background: #fff;
  max-width: 100%;
  width: 100%;
}

.property-v2-avail-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  gap: 0.5rem;
}

.property-v2-avail-cal__nav-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--pv2-border);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--se-navy-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.property-v2-avail-cal__nav-btn:hover {
  border-color: rgba(var(--se-teal-rgb), 0.35);
  background: rgba(var(--se-teal-rgb), 0.05);
}

.property-v2-avail-cal__month {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--se-navy-dark);
}

.property-v2-avail-cal__head .supplier-mini-cal__dh {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(var(--se-navy-mid-rgb), 0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day {
  aspect-ratio: auto;
  min-height: 3.35rem;
  height: auto;
  border-radius: 0.45rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
  padding: 0.25rem 0.08rem 0.3rem;
  border: 1px solid transparent;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day-num {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day-price {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Calendar day colours — match design (green / grey / blue) */
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--open {
  background: #d4edda;
  color: #1e5631;
  border-color: #b8dfc4;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--partial {
  background: #d4edda;
  color: #1e5631;
  border-color: #b8dfc4;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--booked,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--full {
  background: rgba(239, 68, 68, 0.22);
  color: #b91c1c;
  border-color: rgba(185, 28, 28, 0.3);
  font-weight: 600;
  text-decoration: line-through;
  pointer-events: none;
  cursor: not-allowed;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--request {
  background: #dbeafe;
  color: #1e40af;
  border-color: #bfdbfe;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--request .supplier-mini-cal__day-price {
  font-size: 0.58rem;
  font-weight: 600;
  white-space: normal;
  text-align: center;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--block,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--noprice,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--muted {
  background: #eceff3;
  color: rgba(var(--se-navy-mid-rgb), 0.45);
  text-decoration: line-through;
  pointer-events: none;
  cursor: not-allowed;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--unavailable {
  pointer-events: none;
  cursor: not-allowed;
}

.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--block .supplier-mini-cal__day-price,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--noprice .supplier-mini-cal__day-price,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--booked .supplier-mini-cal__day-price,
.property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day--full .supplier-mini-cal__day-price {
  display: none;
}

/* Meal plan table (room accordion) */
.property-v2-room-body-inner--meal {
  grid-template-columns: 10.5rem 1fr;
  align-items: start;
}

@media (max-width: 767.98px) {
  .property-v2-room-body-inner--meal {
    grid-template-columns: 1fr;
  }

  .property-v2-room-thumb {
    max-width: 12rem;
  }
}

.property-v2-room-meal-wrap {
  min-width: 0;
}

.property-meal-table__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  overflow: hidden;
}

.property-meal-table__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--pv2-border);
  background: #fff;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s ease;
}

.property-meal-table__row:last-child {
  border-bottom: 0;
}

.property-meal-table__row:hover {
  background: rgba(var(--se-teal-rgb), 0.03);
}

.property-meal-table__row.is-selected {
  background: rgba(var(--se-teal-rgb), 0.06);
  box-shadow: inset 3px 0 0 var(--se-teal);
}

.property-meal-table__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.property-meal-table__radio-wrap {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.property-meal-table__radio-ui {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(var(--se-navy-mid-rgb), 0.35);
  border-radius: 50%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.property-meal-table__row.is-selected .property-meal-table__radio-ui {
  border-color: var(--se-teal);
  box-shadow: inset 0 0 0 0.2rem #fff, inset 0 0 0 0.55rem var(--se-teal);
}

.property-meal-table__info {
  min-width: 0;
}

.property-meal-table__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--se-navy-dark);
  margin-bottom: 0.25rem;
}

.property-meal-table__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  background: rgba(var(--se-teal-rgb), 0.12);
  color: var(--se-teal-dark);
}

.property-meal-table__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: rgba(var(--se-navy-mid-rgb), 0.72);
}

.property-meal-table__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.property-meal-table__meta-item--ok {
  color: var(--se-teal-dark);
}

.property-meal-table__price {
  text-align: right;
  white-space: nowrap;
}

.property-meal-table__price strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--se-navy-dark);
}

.property-meal-table__unit {
  display: block;
  font-size: 0.6875rem;
  color: rgba(var(--se-navy-mid-rgb), 0.65);
}

.property-meal-table__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pv2-border);
  border-radius: 0.4rem;
  overflow: hidden;
}

.property-meal-table__qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  background: #fff;
  color: var(--se-navy-dark);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}

.property-meal-table__qty-btn:hover {
  background: rgba(var(--se-teal-rgb), 0.08);
}

.property-meal-table__qty-input {
  width: 1.75rem;
  border: 0;
  border-left: 1px solid var(--pv2-border);
  border-right: 1px solid var(--pv2-border);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0;
  background: #fff;
  -moz-appearance: textfield;
}

.property-meal-table__qty-input::-webkit-outer-spin-button,
.property-meal-table__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 767.98px) {
  .property-meal-table__row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .property-meal-table__price,
  .property-meal-table__qty {
    grid-column: 2;
  }

  .property-meal-table__price {
    text-align: left;
  }

  .property-meal-table__qty {
    justify-self: start;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile property page — layout, spacing, and tap targets only               */
/* Desktop (min-width: 992px) is unchanged.                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  body.property-page-v2 {
    background: #f6f8f9;
  }

  body.property-page-v2 .cart-toast-container {
    bottom: 5.5rem;
  }

  .property-detail-v2 {
    padding-bottom: 6.25rem;
  }

  .property-detail-v2 > .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .client-site-body main .property-page-nav-band + .property-detail,
  .client-site-body main .property-page-nav-band + article {
    padding-top: 0.65rem;
  }

  .property-v2-breadcrumb {
    padding: 0.35rem 0 0.85rem;
  }

  .property-v2-breadcrumb .breadcrumb {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    overflow: hidden;
    font-size: 0.78rem;
  }

  .property-v2-breadcrumb__home {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .property-v2-breadcrumb__home a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #6aa8ab;
  }

  .property-v2-breadcrumb__home a i {
    font-size: 0.95rem;
  }

  .property-v2-breadcrumb__stays,
  .property-v2-breadcrumb__region {
    display: none;
  }

  .property-v2-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #8bb8ba;
    padding: 0 0.4rem;
    font-weight: 500;
  }

  .property-v2-breadcrumb .breadcrumb-item.active {
    color: #6aa8ab;
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Hero carousel instead of bento gallery */
  .property-v2-gallery {
    display: none;
  }

  .property-v2-hero {
    display: block;
    margin: 0 0 1.15rem;
  }

  .property-v2-hero-carousel {
    position: relative;
  }

  .property-v2-hero-carousel .carousel-inner {
    border-radius: 1.05rem;
    overflow: hidden;
    aspect-ratio: 16 / 10.2;
    background: rgba(var(--se-navy-mid-rgb), 0.08);
  }

  .property-v2-hero-carousel .carousel-item,
  .property-v2-hero-carousel .carousel-item.active {
    height: 100%;
  }

  .property-v2-hero-carousel__slide {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    color: inherit;
    text-align: left;
    position: relative;
  }

  .property-v2-hero-carousel__slide img,
  .property-v2-hero-carousel .property-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .property-v2-hero-carousel .carousel-control-prev,
  .property-v2-hero-carousel .carousel-control-next {
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 6;
    color: #3d4f5f;
  }

  .property-v2-hero-carousel .carousel-control-prev {
    left: 0.7rem;
  }

  .property-v2-hero-carousel .carousel-control-next {
    right: 0.7rem;
  }

  .property-v2-hero-carousel .carousel-control-prev-icon,
  .property-v2-hero-carousel .carousel-control-next-icon {
    display: none;
  }

  .property-v2-hero-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    color: #3d4f5f;
    box-shadow: 0 0.2rem 0.75rem rgba(13, 27, 42, 0.18);
    font-size: 1.05rem;
    line-height: 1;
  }

  .property-v2-hero-carousel__counter {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 5;
    background: #fff;
    color: var(--se-navy-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.28rem 0.7rem;
    border-radius: 2rem;
    box-shadow: 0 0.12rem 0.45rem rgba(13, 27, 42, 0.12);
    pointer-events: none;
  }

  .property-v2-hero-dots {
    position: static;
    margin: 0.7rem 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.38rem;
    z-index: 2;
  }

  .property-v2-hero-dots [data-bs-target] {
    box-sizing: border-box;
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #d4dce2;
    opacity: 1;
    text-indent: 0;
    overflow: hidden;
    flex: 0 0 0.42rem;
  }

  .property-v2-hero-dots .active {
    background: var(--se-teal);
  }

  /* Stack: intro → booking card → rest of page */
  .property-v2-page-layout {
    display: flex;
    flex-direction: column;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .property-v2-content {
    display: contents;
  }

  .property-v2-intro {
    order: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }

  .property-v2-sidebar-col {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 0.15rem;
    padding-left: 0;
    padding-right: 0;
  }

  .property-v2-content-rest {
    order: 3;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    margin-top: 0.35rem;
  }

  .property-v2-title {
    font-size: 1.85rem;
    line-height: 1.18;
    margin-bottom: 0.45rem;
    overflow-wrap: anywhere;
  }

  .property-v2-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.5rem;
    margin-bottom: 0.95rem;
  }

  .property-v2-meta__item--location {
    flex: 1 0 100%;
    font-size: 0.9375rem;
    color: #6b7a86;
    gap: 0.4rem;
  }

  .property-v2-meta__item--location i {
    font-size: 1rem;
  }

  .property-v2-meta__item--mobile {
    display: inline-flex;
  }

  .property-v2-meta__item--secondary {
    display: none;
  }

  .property-v2-meta__item--tag {
    background: #eef1f4;
    border-radius: 2rem;
    padding: 0.38rem 0.75rem;
    font-size: 0.8125rem;
    color: #5d6b76;
    gap: 0.4rem;
  }

  .property-v2-meta__item--tag i {
    font-size: 0.9rem;
  }

  .property-v2-price-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.4rem;
    margin-bottom: 1.05rem;
    font-size: 0.9rem;
    color: #7a8792;
  }

  .property-v2-price-anchor strong {
    font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--se-navy-dark);
    line-height: 1;
  }

  .property-v2-sidebar-sticky {
    position: static;
  }

  #propertyBookingWidget {
    scroll-margin-top: calc(var(--client-nav-height, 4.25rem) + 0.65rem);
  }

  #propertyWidgetAvailResult {
    scroll-margin-top: calc(var(--client-nav-height, 4.25rem) + 0.65rem);
    scroll-margin-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .property-v2-booking-widget {
    position: relative;
    padding: 1rem 0.95rem 1.05rem;
    border-radius: 1.05rem;
    border-color: rgba(var(--se-navy-mid-rgb), 0.1);
    box-shadow: 0 0.45rem 1.4rem rgba(13, 27, 42, 0.08);
    overflow: visible;
  }

  .property-v2-booking-widget__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .property-v2-booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
  }

  .property-v2-booking-field:nth-child(n + 3) {
    grid-column: 1 / -1;
  }

  .property-v2-booking-field {
    padding: 0.7rem 0.8rem;
    min-height: 3.35rem;
    border-radius: 0.7rem;
    border-color: rgba(var(--se-navy-mid-rgb), 0.16);
  }

  .property-v2-booking-field__label {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #8a97a3;
    margin-bottom: 0.12rem;
  }

  .property-v2-booking-field input,
  .property-v2-booking-field select {
    font-size: 1rem;
    min-height: 1.4rem;
  }

  .property-v2-booking-field select {
    appearance: none;
    -webkit-appearance: none;
    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 fill='%238a97a3' d='M1.2 1.3L6 6.1l4.8-4.8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.1rem center;
    background-size: 0.7rem;
    padding-right: 1.15rem;
  }

  .property-v2-booking-field input::placeholder {
    color: #9aa7b2;
  }

  body.property-page-v2 .booking-stay-cal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(13, 27, 42, 0.42);
  }

  body.property-page-v2.booking-stay-cal-sheet-open {
    overflow: hidden;
  }

  body.client-site-body.property-page-v2 .booking-stay-cal-pop--sheet,
  body.property-page-v2 .booking-stay-cal-pop--sheet {
    position: fixed !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.75rem 0.65rem 0.9rem !important;
    z-index: 1085 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.9rem;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.22) !important;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet .ta-avail-cal__grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 2px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet .ta-avail-cal__dh,
  body.property-page-v2 .booking-stay-cal-pop--sheet .ta-avail-cal__day {
    min-width: 0;
    overflow: hidden;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet .ta-avail-cal__dh {
    font-size: 0.62rem;
    padding: 0.12rem 0;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet.stayeasy-booking-stay-cal--priced .ta-avail-cal__day {
    min-height: 2.45rem;
    padding: 0.16rem 0.02rem 0.18rem;
    gap: 0.06rem;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet.stayeasy-booking-stay-cal--priced .ta-avail-cal__day-num {
    font-size: 0.72rem;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet.stayeasy-booking-stay-cal--priced .ta-avail-cal__day-price {
    font-size: 0.5rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.04em;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet .js-cal-prev,
  body.property-page-v2 .booking-stay-cal-pop--sheet .js-cal-next {
    min-width: 2.5rem;
    min-height: 2.5rem;
    touch-action: manipulation;
  }

  body.property-page-v2 .booking-stay-cal-pop--sheet .ta-avail-legend {
    gap: 0.4rem 0.65rem;
    font-size: 0.65rem;
    margin-top: 0.55rem;
  }

  .property-v2-btn-check {
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border-radius: 0.7rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .property-v2-booking-price {
    display: none;
  }

  .property-v2-booking-note {
    margin-bottom: 0.85rem;
  }

  .property-v2-booking-actions .btn {
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
  }

  .property-v2-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0.35rem 0 1.5rem;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .property-v2-feature-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    column-gap: 0.85rem;
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(var(--se-navy-mid-rgb), 0.12);
    border-radius: 0;
    padding: 1.05rem 0;
    box-shadow: none;
  }

  .property-v2-feature-card:hover {
    box-shadow: none;
    border-color: rgba(var(--se-navy-mid-rgb), 0.12);
  }

  .property-v2-feature-card:last-child {
    border-bottom: 0;
  }

  .property-v2-feature-card__icon {
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 0;
    font-size: 1.15rem;
  }

  .property-v2-feature-card__copy {
    min-width: 0;
  }

  .property-v2-feature-card__title {
    font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
  }

  .property-v2-feature-card__text {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .property-v2-feature-card__chevron {
    display: flex;
    align-items: center;
    color: #c5ced6;
    font-size: 1.05rem;
  }

  .property-v2-section-title {
    font-size: 1.4rem;
  }

  .property-v2-amenities-row {
    gap: 0.5rem;
  }

  .property-v2-amenity-pill {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .property-v2-map-card__head {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }

  .property-v2-stay-bar {
    gap: 0.5rem 0.85rem;
    padding: 0.7rem 0.85rem;
  }

  .property-v2-stay-bar__edit {
    margin-left: 0;
  }

  .property-v2-room-item .accordion-button {
    padding: 0.9rem 0.95rem;
  }

  .property-v2-room-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .property-v2-room-footer .d-flex {
    width: 100%;
  }

  .property-v2-room-footer .js-add-to-cart-trigger,
  .property-v2-room-footer .js-add-to-cart-guest,
  .property-v2-room-select-btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    min-height: 2.65rem;
  }

  .property-v2-avail-section-card {
    padding: 1.05rem 0.9rem 1rem;
  }

  .property-detail-v2 .property-v2-avail-cal .supplier-mini-cal__day {
    min-height: 2.85rem;
    padding: 0.2rem 0.04rem 0.22rem;
  }

  .property-v2-avail-panel__room-tabs,
  .property-v2-avail-panel__meal-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    max-width: 100%;
  }

  .property-v2-know-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-v2 .scroll-anchor {
    scroll-margin-top: 5.5rem;
  }

  .property-v2-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1025;
    padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid rgba(var(--se-navy-mid-rgb), 0.1);
    box-shadow: 0 -0.35rem 1.1rem rgba(13, 27, 42, 0.08);
  }

  .property-v2-mobile-cta__price {
    min-width: 0;
    font-size: 0.78rem;
    color: #7a8792;
    line-height: 1.25;
  }

  .property-v2-mobile-cta__price strong {
    display: inline;
    font-family: var(--se-font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--se-navy-dark);
  }

  .property-v2-mobile-cta__price span {
    white-space: nowrap;
  }

  .property-v2-mobile-cta__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.55rem 1.15rem;
    border-radius: 2rem;
    background: var(--se-teal);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
  }

  .property-v2-mobile-cta__btn:hover,
  .property-v2-mobile-cta__btn:focus-visible {
    background: var(--se-teal-dark);
    color: #fff;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .property-v2-features {
    grid-template-columns: 1fr;
  }
}

@media print {
  .property-v2-mobile-cta {
    display: none !important;
  }
}
