/* ==========================================================================
   RomaEnjoy theme - property page (property.css)
   --------------------------------------------------------------------------
   Page-specific styles; every class is prefixed with .prop-.
   Layout tokens, buttons, badges, cards and the rating badge come from app.css.
   Table of contents
    1. Page scaffolding & sticky offsets
    2. Breadcrumb, header row & actions
    3. Gallery grid
    4. Sticky tabs
    5. Two-column layout & sections
    6. Overview (callouts, description, highlights)
    7. Facilities
    8. Rooms table (desktop) / cards (mobile)
    9. Reviews
   10. Location
   11. House rules & FAQ
   12. Booking box
   13. Mobile bottom bar
   14. Modals (gallery, facilities, booking)
   15. Similar properties
   16. Responsive tweaks
   ========================================================================== */

/* 1. Page scaffolding & sticky offsets
   ========================================================================== */
:root {
    --prop-tabs-h: 56px;
    --prop-sticky-top: calc(var(--re-header-total) + var(--prop-tabs-h));
    --prop-aside-w: 360px;
}

html {
    scroll-padding-top: calc(var(--prop-sticky-top) + 12px);
}

.prop {
    padding-bottom: 8px;
}

.prop-top {
    padding-top: 16px;
}

.prop-dot {
    color: var(--re-ink-300);
}

.prop-btn-spinner {
    display: none;
}

.is-loading .prop-btn-spinner {
    display: inline-block;
}

.is-loading .prop-btn-label {
    opacity: .7;
}

/* 2. Breadcrumb, header row & actions
   ========================================================================== */
.prop-breadcrumb .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-block: 2px;
}

.prop-breadcrumb .breadcrumb::-webkit-scrollbar {
    display: none;
}

.prop-breadcrumb .breadcrumb-item.active {
    overflow: hidden;
    max-width: 320px;
    text-overflow: ellipsis;
}

.prop-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 12px 0 16px;
}

.prop-head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.prop-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .75rem;
}

.prop-title {
    margin: 0;
    font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.125rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.prop-stars {
    font-size: .95rem;
}

.prop-address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem .5rem;
    margin-top: .5rem;
    color: var(--re-ink-700);
    font-size: .9rem;
}

.prop-address > .bi-geo-alt-fill {
    color: var(--re-primary);
    font-size: 1rem;
}

.prop-address-zone {
    font-weight: 600;
}

.prop-maplink {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-weight: 600;
}

.prop-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: .5rem;
}

.prop-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid var(--re-ink-200);
    border-radius: var(--re-radius-pill);
    background: var(--re-surface);
    color: var(--re-primary);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--re-dur) var(--re-ease), border-color var(--re-dur) var(--re-ease), color var(--re-dur) var(--re-ease), transform var(--re-dur) var(--re-ease);
}

.prop-action .bi {
    font-size: 1.1rem;
    line-height: 1;
}

.prop-action:hover {
    border-color: var(--re-primary);
    background: var(--re-primary-50);
}

.prop-action:active {
    transform: translateY(1px);
}

.prop-action:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--re-primary-100), 0 0 0 6px var(--re-primary-600);
}

.prop-action--save[aria-pressed="true"] {
    border-color: var(--re-primary);
    background: var(--re-primary-100);
    color: var(--re-primary);
}

.prop-action--save .bi-heart-fill {
    animation: prop-pop 260ms var(--re-ease);
}

@keyframes prop-pop {
    0% { transform: scale(.6); }
    60% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.prop-head-reserve {
    margin-left: .25rem;
}

/* 3. Gallery grid
   ========================================================================== */
.prop-gallery {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
    height: clamp(320px, 34vw, 480px);
    overflow: hidden;
    border-radius: var(--re-radius-lg);
    background: var(--re-ink-100);
}

.prop-gallery--1,
.prop-gallery--2 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
}

.prop-gallery--3 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.prop-gallery--4 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
}

.prop-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--re-ink-100);
    cursor: zoom-in;
}

.prop-gallery-item:first-child {
    grid-row: 1 / span 2;
}

.prop-gallery--1 .prop-gallery-item:first-child,
.prop-gallery--2 .prop-gallery-item:first-child {
    grid-row: auto;
}

.prop-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--re-ease), filter var(--re-dur) var(--re-ease);
}

.prop-gallery-item:hover img,
.prop-gallery-item:focus-visible img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.prop-gallery-item:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 4px var(--re-accent);
}

.prop-gallery-count {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border-radius: var(--re-radius-pill);
    background: rgba(38, 38, 43, .72);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.prop-gallery-more {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 40px;
    padding: .45rem .95rem;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--re-radius-pill);
    background: rgba(255, 255, 255, .94);
    color: var(--re-ink);
    font-size: .875rem;
    font-weight: 600;
    box-shadow: var(--re-shadow);
    cursor: pointer;
    transition: background-color var(--re-dur) var(--re-ease), transform var(--re-dur) var(--re-ease);
}

.prop-gallery-more:hover {
    background: #fff;
    transform: translateY(-1px);
}

.prop-gallery-more:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--re-primary-100), 0 0 0 6px var(--re-primary-600);
}

/* 4. Sticky tabs
   ========================================================================== */
.prop-tabs {
    position: sticky;
    top: var(--re-header-total);
    z-index: 1020;
    margin-top: 20px;
    background: var(--re-surface);
    border-bottom: 1px solid var(--re-ink-200);
    transition: box-shadow var(--re-dur) var(--re-ease);
}

.prop-tabs.is-stuck {
    box-shadow: 0 6px 18px rgba(38, 38, 43, .08);
}

.prop-tabs-inner {
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.prop-tabs-inner::-webkit-scrollbar {
    display: none;
}

.prop-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    height: var(--prop-tabs-h);
    padding: 0 1rem;
    color: var(--re-ink-700);
    font-size: .9375rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--re-dur) var(--re-ease);
}

.prop-tab::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: -1px;
    left: 1rem;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--re-primary);
    opacity: 0;
    transform: scaleX(.6);
    transition: opacity var(--re-dur) var(--re-ease), transform var(--re-dur) var(--re-ease);
}

.prop-tab:hover {
    color: var(--re-primary);
    text-decoration: none;
}

.prop-tab.is-active {
    color: var(--re-primary);
}

.prop-tab.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.prop-tab:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 3px var(--re-primary-100), inset 0 0 0 5px var(--re-primary-600);
    border-radius: 8px;
}

/* 5. Two-column layout & sections
   ========================================================================== */
.prop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--prop-aside-w);
    gap: 32px;
    align-items: start;
    padding: 32px 0 24px;
}

.prop-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.prop-aside {
    position: sticky;
    top: calc(var(--prop-sticky-top) + 16px);
    min-width: 0;
}

.prop-section {
    padding: 24px;
    border: 1px solid var(--re-ink-200);
    border-radius: 16px;
    background: var(--re-surface);
    box-shadow: var(--re-shadow-sm);
    scroll-margin-top: calc(var(--prop-sticky-top) + 12px);
}

.prop-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem 1rem;
    margin-bottom: 16px;
}

.prop-section-head .prop-section-title {
    margin-bottom: 0;
}

/* Long translated labels (e.g. Russian) must wrap instead of widening the page */
.prop-section-head .re-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: left;
}

.prop-section-title {
    margin: 0 0 16px;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.prop-subtitle {
    margin: 24px 0 12px;
    font-size: 1.0625rem;
    font-weight: 700;
}

.prop-note {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin: 16px 0 0;
    color: var(--re-ink-500);
    font-size: .8125rem;
}

.prop-note .bi {
    margin-top: 2px;
    color: var(--re-primary);
}

.prop-textlink {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
}

.prop-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 32px 16px;
    border: 1px dashed var(--re-ink-300);
    border-radius: 12px;
    color: var(--re-ink-500);
    text-align: center;
}

.prop-empty .bi {
    font-size: 2rem;
    color: var(--re-ink-300);
}

.prop-empty p {
    margin: 0;
}

/* 6. Overview
   ========================================================================== */
.prop-callouts {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 20px;
}

.prop-callout {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .9rem .5rem .5rem;
    border: 1px solid var(--re-primary-100);
    border-radius: var(--re-radius-pill);
    background: var(--re-primary-50);
    color: var(--re-primary-700);
    font-size: .875rem;
    font-weight: 500;
}

.prop-callout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: var(--re-radius-pill);
    background: #fff;
    color: var(--re-primary);
    font-size: .95rem;
}

.prop-callout--success {
    border-color: #C9E8D2;
    background: var(--re-success-100);
    color: var(--re-success-ink);
}

.prop-callout--success .prop-callout-icon {
    color: var(--re-success);
}

.prop-desc {
    position: relative;
    color: var(--re-ink-700);
    font-size: .975rem;
    line-height: 1.7;
}

.prop-desc p {
    margin: 0 0 1rem;
}

.prop-desc p:last-child {
    margin-bottom: 0;
}

.prop-desc.is-clamped {
    max-height: 12.5em;
    overflow: hidden;
}

.prop-desc.is-clamped::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%);
    pointer-events: none;
}

.prop-readmore {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 40px;
    margin-top: .25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--re-primary);
    font-weight: 600;
    cursor: pointer;
}

.prop-readmore[hidden] {
    display: none;
}

.prop-readmore .bi {
    transition: transform var(--re-dur) var(--re-ease);
}

.prop-readmore[aria-expanded="true"] .bi {
    transform: rotate(180deg);
}

.prop-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prop-highlights li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: var(--re-ink-700);
    font-size: .9rem;
    line-height: 1.45;
}

.prop-highlights .bi {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--re-success);
}

/* 7. Facilities
   ========================================================================== */
.prop-facilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: .7rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prop-facility {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
    font-size: .9rem;
    font-weight: 500;
}

.prop-facility-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--re-primary-50);
    color: var(--re-primary);
    font-size: 1.1rem;
}

.prop-staff {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .5rem;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--re-ink-100);
    color: var(--re-ink-700);
    font-size: .875rem;
}

.prop-staff .bi {
    color: var(--re-primary);
    font-size: 1.05rem;
}

.prop-staff-label {
    font-weight: 600;
}

/* 8. Rooms table
   ========================================================================== */
.prop-stay {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem .5rem;
    padding: .4rem .8rem;
    border-radius: var(--re-radius-pill);
    background: var(--re-bg);
    color: var(--re-ink-700);
    font-size: .8125rem;
}

.prop-stay .bi {
    color: var(--re-primary);
}

.prop-stay-dates {
    font-weight: 600;
    color: var(--re-ink);
}

.prop-rooms-wrap {
    overflow-x: auto;
    border: 1px solid var(--re-ink-200);
    border-radius: 12px;
}

.prop-rooms {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    font-size: .875rem;
}

.prop-rooms th {
    padding: .7rem .6rem;
    border-bottom: 1px solid var(--re-ink-200);
    background: var(--re-primary-50);
    color: var(--re-primary-700);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}

.prop-rooms td {
    padding: 1rem .6rem;
    border-bottom: 1px solid var(--re-ink-200);
    vertical-align: top;
}

.prop-rooms td:first-child,
.prop-rooms th:first-child {
    padding-left: .85rem;
}

.prop-rooms td:last-child,
.prop-rooms th:last-child {
    padding-right: .85rem;
}

.prop-rooms tbody tr:last-child td {
    border-bottom: 0;
}

.prop-rooms tbody tr:hover td {
    background: var(--re-bg);
}

.prop-th-type,
.prop-td-type {
    width: 31%;
}

.prop-th-sleeps,
.prop-td-sleeps {
    width: 10%;
}

.prop-th-price,
.prop-td-price {
    width: 18%;
}

.prop-th-choices,
.prop-td-choices {
    width: 28%;
}

.prop-th-select,
.prop-td-select {
    width: 13%;
}

.prop-room.is-soldout td {
    opacity: .55;
}

.prop-room-name {
    margin-bottom: .35rem;
    color: var(--re-primary);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.3;
}

.prop-room-line {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    margin-bottom: .25rem;
    color: var(--re-ink-700);
    font-size: .8125rem;
}

.prop-room-line .bi {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--re-ink-500);
}

.prop-room-features {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin: .5rem 0 0;
    padding: 0;
    list-style: none;
}

.prop-room-features li {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .55rem;
    white-space: nowrap;
    border: 1px solid var(--re-ink-200);
    border-radius: var(--re-radius-pill);
    background: var(--re-surface);
    color: var(--re-ink-700);
    font-size: .74rem;
    font-weight: 500;
    line-height: 1.3;
}

.prop-room-features .bi {
    color: var(--re-primary);
    font-size: .8rem;
}

.prop-sleeps {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1px;
    max-width: 90px;
    color: var(--re-ink);
    font-size: 1.05rem;
    line-height: 1;
}

.prop-sleeps-more {
    margin-left: .2rem;
    font-size: .8rem;
    font-weight: 600;
}

.prop-room-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .2rem .5rem;
    margin-bottom: .2rem;
}

.prop-room-price .re-price {
    font-size: 1.25rem;
}

.prop-room-choices {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin: 0 0 .6rem;
    padding: 0;
    list-style: none;
    font-size: .78rem;
    line-height: 1.35;
    color: var(--re-ink-700);
}

.prop-room-choices li {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
}

.prop-room-choices .bi {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--re-ink-500);
}

.prop-room-choices .is-good {
    color: var(--re-success-ink);
    font-weight: 600;
}

.prop-room-choices .is-good .bi {
    color: var(--re-success);
}

.prop-room-avail {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--re-ink-500);
    font-size: .78rem;
    font-weight: 600;
}

.prop-room-avail.is-scarce {
    color: var(--re-terracotta-ink);
}

.prop-room-avail.is-soldout {
    color: var(--re-danger);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.prop-room-qty {
    min-width: 96px;
    font-weight: 600;
}

.prop-rooms-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: var(--re-bg);
}

.prop-rooms-total {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.prop-rooms-amount {
    display: inline-flex;
    align-items: baseline;
    gap: .35rem;
}

.prop-rooms-amount .re-price {
    font-size: 1.6rem;
}

.prop-rooms-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
    max-width: 100%;
}

.prop-rooms-cta .btn-re-lg {
    min-width: 220px;
}

.prop-rooms-hint {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin: 0;
    padding: .5rem .8rem;
    border-radius: 10px;
    background: var(--re-terracotta-100);
    color: var(--re-terracotta-ink);
    font-size: .8125rem;
    font-weight: 600;
}

.prop-rooms-hint[hidden] {
    display: none;
}

.prop-rooms-note {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin: 0;
    text-align: right;
}

.prop-rooms-note .bi {
    color: var(--re-success);
}

/* 9. Reviews
   ========================================================================== */
.prop-score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1rem;
    padding: 16px;
    border-radius: 12px;
    background: var(--re-primary-50);
}

.prop-score-badge {
    min-width: 56px;
    height: 48px;
    font-size: 1.5rem;
}

.prop-score-label {
    font-family: var(--re-font-heading);
    font-size: 1.125rem;
    font-weight: 800;
}

.prop-score-verified {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
    color: var(--re-success-ink);
    font-size: .8125rem;
    font-weight: 600;
}

.prop-score-verified .bi {
    color: var(--re-success);
}

.prop-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem 2rem;
}

.prop-bar-head {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .35rem;
    font-size: .875rem;
}

.prop-bar-value {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.prop-bar {
    height: 8px;
    overflow: hidden;
    border-radius: var(--re-radius-pill);
    background: var(--re-ink-100);
}

.prop-bar-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: var(--re-radius-pill);
    background: var(--re-primary);
    transition: width 700ms var(--re-ease);
}

.prop-bar-fill.is-top {
    background: var(--re-success);
}

.prop-breakdown.is-ready .prop-bar-fill {
    width: var(--w, 0%);
}

.prop-reviews {
    display: flex;
    flex-direction: column;
}

.prop-review {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem 1.5rem;
    padding: 20px 0;
    border-top: 1px solid var(--re-ink-100);
}

.prop-review[hidden] {
    display: none;
}

.prop-review-who {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .35rem .75rem;
    align-content: start;
}

.prop-review-avatar {
    grid-row: 1 / span 2;
    background: var(--re-gradient);
    color: #fff;
}

.prop-review-author {
    font-weight: 700;
    line-height: 1.25;
}

.prop-review-country {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--re-ink-500);
    font-size: .8125rem;
}

.prop-review-meta {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    margin-top: .25rem;
    color: var(--re-ink-500);
    font-size: .78rem;
}

.prop-review-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.prop-review-body {
    min-width: 0;
}

.prop-review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .5rem;
}

.prop-review-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
}

.prop-review-rating {
    flex: 0 0 auto;
    min-width: 36px;
    height: 30px;
    font-size: .9rem;
}

.prop-review-text {
    position: relative;
    margin: 0 0 .75rem;
    padding-left: 1.6rem;
    color: var(--re-ink-700);
    line-height: 1.6;
}

.prop-review-text .bi-quote {
    position: absolute;
    top: -.15rem;
    left: 0;
    color: var(--re-accent);
    font-size: 1.35rem;
}

.prop-review-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem 1rem;
}

.prop-review-verified {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--re-success-ink);
    font-size: .78rem;
    font-weight: 600;
}

.prop-review-verified .bi {
    color: var(--re-success);
}

.prop-review-helpful {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 36px;
    padding: .25rem .8rem;
    border: 1px solid var(--re-ink-200);
    border-radius: var(--re-radius-pill);
    background: var(--re-surface);
    color: var(--re-ink-700);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--re-dur) var(--re-ease), border-color var(--re-dur) var(--re-ease), color var(--re-dur) var(--re-ease);
}

.prop-review-helpful:hover {
    border-color: var(--re-primary);
    color: var(--re-primary);
}

.prop-review-helpful[aria-pressed="true"] {
    border-color: var(--re-primary);
    background: var(--re-primary-100);
    color: var(--re-primary);
}

.prop-reviews-more {
    width: 100%;
    margin-top: 8px;
}

.prop-reviews-more .bi {
    transition: transform var(--re-dur) var(--re-ease);
}

.prop-reviews-more[aria-expanded="true"] .bi {
    transform: rotate(180deg);
}

/* 10. Location
   ========================================================================== */
.prop-map {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 12px;
    background: var(--re-ink-100) repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 255, 255, .5) 14px 28px);
}

.prop-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.prop-map-open {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: var(--re-radius-pill);
    box-shadow: var(--re-shadow);
}

.prop-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    margin-top: 8px;
}

.prop-location-col .prop-subtitle {
    margin-top: 16px;
}

.prop-address-block {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 0 0 .75rem;
    font-style: normal;
    line-height: 1.5;
}

.prop-address-block > .bi {
    margin-top: 2px;
    color: var(--re-primary);
    font-size: 1.05rem;
}

.prop-address-block > span {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.prop-address-line {
    font-weight: 600;
}

.prop-nearby {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prop-nearby li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
    border-bottom: 1px dashed var(--re-ink-200);
    font-size: .875rem;
}

.prop-nearby li:last-child {
    border-bottom: 0;
}

.prop-nearby-name {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-width: 0;
    color: var(--re-ink);
}

.prop-nearby-name .bi {
    color: var(--re-primary);
}

.prop-nearby-dist {
    flex: 0 0 auto;
    color: var(--re-ink-500);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* 11. House rules & FAQ
   ========================================================================== */
.prop-rules {
    margin: 0;
}

.prop-rule {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: .5rem 1.5rem;
    padding: 14px 0;
    border-top: 1px solid var(--re-ink-100);
}

.prop-rule:first-child {
    border-top: 0;
    padding-top: 0;
}

.prop-rule dt {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}

.prop-rule-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--re-primary-50);
    color: var(--re-primary);
    font-size: 1rem;
}

.prop-rule dd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .75rem;
    margin: 0;
    color: var(--re-ink-700);
    line-height: 1.55;
}

.prop-rule-time {
    display: inline-flex;
    align-items: center;
    padding: .2rem .6rem;
    border-radius: 8px;
    background: var(--re-ink-100);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.prop-payments {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--re-ink-500);
}

.prop-payment {
    display: inline-flex;
    align-items: center;
    padding: .1rem .45rem;
    border: 1px solid var(--re-ink-200);
    border-radius: 6px;
    background: #fff;
    color: var(--re-ink-700);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.prop-faq .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
}

.prop-faq .accordion-item + .accordion-item {
    margin-top: 8px;
}

.prop-faq .accordion-button {
    gap: .6rem;
    font-size: .95rem;
}

.prop-faq .accordion-button .bi {
    flex: 0 0 auto;
    color: var(--re-primary);
    font-size: 1.05rem;
}

.prop-faq .accordion-body {
    color: var(--re-ink-700);
    line-height: 1.6;
}

/* 12. Booking box
   ========================================================================== */
.prop-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--re-ink-200);
    border-radius: 16px;
    background: var(--re-surface);
    box-shadow: var(--re-shadow);
}

.prop-box-rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
}

.prop-box-rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.prop-box-pricematch {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--re-success-ink);
    font-size: .8125rem;
    font-weight: 600;
}

.prop-box-pricematch .bi {
    color: var(--re-success);
}

.prop-box-stay {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.prop-box-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--re-ink-200);
    border-radius: 12px;
}

.prop-box-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding: .6rem .8rem;
}

.prop-box-cell + .prop-box-cell {
    border-left: 1px solid var(--re-ink-200);
}

.prop-box-cell-label {
    color: var(--re-ink-500);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.prop-box-cell-value {
    font-weight: 700;
    line-height: 1.25;
}

.prop-box-cell-sub {
    color: var(--re-ink-500);
    font-size: .74rem;
}

.prop-box-guests {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .25rem .5rem;
    font-size: .875rem;
}

.prop-box-guests-text {
    display: inline-flex;
    flex: 1 1 200px;
    align-items: center;
    gap: .5rem;
    min-width: 0;
    color: var(--re-ink-700);
}

.prop-box-change {
    margin-left: auto;
}

.prop-box-guests-text .bi {
    flex: 0 0 auto;
    color: var(--re-primary);
    font-size: 1.05rem;
}

.prop-box-change {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 .5rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--re-primary);
    font-size: .8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--re-dur) var(--re-ease);
}

.prop-box-change:hover,
.prop-box-change[aria-expanded="true"] {
    background: var(--re-primary-50);
}

.prop-box-form {
    padding: .75rem;
    border: 1px solid var(--re-ink-200);
    border-radius: 12px;
    background: var(--re-bg);
}

.prop-box-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .6rem;
}

.prop-box-form-grid .form-label {
    margin-bottom: .2rem;
    font-size: .74rem;
}

.prop-box-form-submit {
    grid-column: 1 / -1;
    padding-top: .25rem;
}

.prop-box-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 12px;
    border-top: 1px solid var(--re-ink-100);
}

.prop-box-price-label {
    color: var(--re-ink-700);
    font-size: .875rem;
    font-weight: 600;
}

.prop-box-price-value {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: .35rem;
}

.prop-box-choices {
    padding: .65rem .8rem;
    border-radius: 10px;
    background: var(--re-primary-50);
    font-size: .8375rem;
}

.prop-box-choices[hidden] {
    display: none;
}

.prop-box-choices-title {
    display: block;
    margin-bottom: .3rem;
    color: var(--re-primary-700);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.prop-box-choices-list {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prop-box-choices-list li {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
}

.prop-box-choices-list li span:last-child {
    flex: 0 0 auto;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.prop-box-total {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding-top: 12px;
    border-top: 1px solid var(--re-ink-100);
}

.prop-box-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.prop-box-total-label {
    font-weight: 700;
}

.prop-box-total-value {
    display: inline-flex;
    align-items: baseline;
    gap: .35rem;
}

.prop-box-total-value .re-price {
    font-size: 1.75rem;
}

.prop-box-trust {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--re-ink-700);
    font-size: .8375rem;
}

.prop-box-trust li {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.prop-box-trust .bi {
    color: var(--re-success);
}

.prop-box-cta {
    margin-top: 2px;
}

.prop-box-hint {
    margin: -6px 0 0;
    color: var(--re-ink-500);
    font-size: .78rem;
    text-align: center;
}

.prop-box-help {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .45rem;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--re-ink-100);
    color: var(--re-ink-700);
    font-size: .8125rem;
    line-height: 1.45;
    text-align: center;
}

.prop-box-help .bi {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--re-primary);
}

.prop-box-help a {
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* 13. Mobile bottom bar
   ========================================================================== */
.prop-bottombar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1025;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 1rem calc(.6rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--re-ink-200);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -8px 24px rgba(38, 38, 43, .12);
    backdrop-filter: blur(8px);
    transform: translateY(100%);
    transition: transform 220ms var(--re-ease);
}

.prop-bottombar.is-visible {
    transform: none;
}

.prop-bottombar-price {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}

.prop-bottombar-amount {
    display: inline-flex;
    align-items: baseline;
    gap: .3rem;
}

.prop-bottombar-cta {
    flex: 0 0 auto;
    min-width: 150px;
}

/* 14. Modals
   ========================================================================== */
.prop-gallery-modal .modal-content {
    background: var(--re-ink);
    color: #fff;
}

.prop-gallery-modal .modal-header {
    align-items: center;
    gap: 1rem;
    border-bottom-color: rgba(255, 255, 255, .12);
}

.prop-gallery-modal .modal-title {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.prop-gallery-counter {
    flex: 0 0 auto;
    padding: .25rem .7rem;
    border-radius: var(--re-radius-pill);
    background: rgba(255, 255, 255, .14);
    font-size: .8125rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.prop-gallery-modal .modal-body {
    padding: .75rem;
}

.prop-carousel .carousel-item {
    height: min(70vh, 720px);
    background: var(--re-ink);
}

.prop-carousel .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.prop-carousel .carousel-control-prev,
.prop-carousel .carousel-control-next {
    width: 64px;
    opacity: .85;
}

.prop-carousel .carousel-control-prev-icon,
.prop-carousel .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--re-radius-pill);
    background-color: rgba(38, 38, 43, .6);
    background-size: 50%;
}

.prop-thumbs {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    padding-bottom: .25rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.prop-thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    opacity: .6;
    cursor: pointer;
    transition: opacity var(--re-dur) var(--re-ease), border-color var(--re-dur) var(--re-ease);
}

.prop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prop-thumb:hover,
.prop-thumb.is-active {
    opacity: 1;
}

.prop-thumb.is-active {
    border-color: var(--re-accent);
}

.prop-thumb:focus-visible {
    outline: 0;
    border-color: #fff;
    opacity: 1;
}

.prop-facilities--modal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prop-booking-modal .modal-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.prop-booking-modal .modal-title .bi {
    color: var(--re-primary);
}

.prop-booking-text {
    margin: 0 0 1rem;
    color: var(--re-ink-700);
}

.prop-booking-card {
    padding: 1rem;
    border: 1px solid var(--re-ink-200);
    border-radius: 12px;
    background: var(--re-bg);
}

.prop-booking-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--re-ink-200);
}

.prop-booking-head img {
    flex: 0 0 auto;
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.prop-booking-name {
    font-family: var(--re-font-heading);
    font-weight: 700;
}

.prop-booking-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: .85rem 0 0;
}

.prop-booking-details > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: .5rem;
    font-size: .875rem;
}

.prop-booking-details dt {
    color: var(--re-ink-500);
    font-weight: 600;
}

.prop-booking-details dd {
    margin: 0;
}

.prop-booking-rooms {
    margin: 0;
    padding: 0;
    list-style: none;
}

.prop-booking-total {
    padding-top: .5rem;
    border-top: 1px dashed var(--re-ink-300);
}

.prop-booking-total strong {
    font-family: var(--re-font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}

.prop-booking-summary {
    display: flex;
    gap: .5rem;
    margin: 1rem 0 0;
    padding: .75rem .9rem;
    border-left: 3px solid var(--re-accent);
    border-radius: 0 10px 10px 0;
    background: var(--re-accent-100);
    color: var(--re-ink-700);
    font-size: .8375rem;
    line-height: 1.5;
}

/* 15. Similar properties
   ========================================================================== */
.prop-similar {
    padding-top: 8px;
}

.prop-similar-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 20px;
}

.prop-similar-head .re-section-title {
    margin-bottom: 0;
}

.prop-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.prop-similar-item {
    min-width: 0;
}

/* 16. Responsive tweaks
   ========================================================================== */
@media (max-width: 1199.98px) {
    :root {
        --prop-aside-w: 320px;
    }

    .prop-layout {
        gap: 24px;
    }

    .prop-review,
    .prop-rule {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    /* Rooms table -> cards (the 5-column table needs the full desktop width) */
    .prop-rooms-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .prop-rooms,
    .prop-rooms tbody,
    .prop-rooms tr,
    .prop-rooms td {
        display: block;
        width: auto;
    }

    .prop-rooms thead {
        display: none;
    }

    .prop-rooms tr {
        margin-bottom: 12px;
        padding: 16px;
        border: 1px solid var(--re-ink-200);
        border-radius: 14px;
        background: var(--re-surface);
        box-shadow: var(--re-shadow-sm);
    }

    .prop-rooms tr:last-child {
        margin-bottom: 0;
    }

    .prop-rooms tbody tr:hover td {
        background: transparent;
    }

    .prop-rooms td {
        padding: 10px 0;
        border-bottom: 0;
    }

    .prop-rooms td + td {
        border-top: 1px solid var(--re-ink-100);
    }

    .prop-rooms td[data-label]::before {
        content: attr(data-label);
        display: block;
        margin-bottom: .35rem;
        color: var(--re-ink-500);
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .prop-rooms td.prop-td-type::before {
        display: none;
    }

    .prop-rooms td.prop-td-type {
        padding-top: 0;
    }

    .prop-rooms td.prop-td-sleeps {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .prop-rooms td.prop-td-sleeps::before {
        margin-bottom: 0;
    }

    .prop-rooms td.prop-td-select {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 0;
    }

    .prop-rooms td.prop-td-select::before {
        margin-bottom: 0;
    }

    .prop-sleeps {
        max-width: none;
    }

    .prop-room-qty {
        width: 140px;
    }
}

@media (max-width: 991.98px) {
    .prop-layout {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 24px;
    }

    .prop-aside {
        position: static;
        order: -1;
    }

    .prop-box {
        box-shadow: var(--re-shadow-sm);
    }

    .prop-box-trust {
        display: none;
    }

    .prop-head {
        flex-direction: column;
        gap: .75rem;
    }

    .prop-actions {
        width: 100%;
    }

    .prop-head-reserve {
        display: none;
    }

    .prop-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prop-bottombar {
        display: flex;
    }

    .prop {
        padding-bottom: 88px;
    }

    .prop-rooms-foot {
        flex-direction: column;
        align-items: stretch;
    }

    .prop-rooms-cta {
        align-items: stretch;
    }

    .prop-rooms-cta .btn-re-lg {
        width: 100%;
    }

    .prop-rooms-note {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .prop-top {
        padding-top: 12px;
    }

    .prop-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: auto;
        height: auto;
        gap: 6px;
        border-radius: 14px;
    }

    .prop-gallery-item {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .prop-gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .prop-gallery--1 .prop-gallery-item:first-child,
    .prop-gallery--2 .prop-gallery-item:first-child,
    .prop-gallery--3 .prop-gallery-item:first-child,
    .prop-gallery--4 .prop-gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .prop-gallery-more {
        right: 8px;
        bottom: auto;
        top: calc(62.5vw - 56px);
        min-height: 36px;
        padding: .35rem .8rem;
        font-size: .8rem;
    }

    .prop-tabs {
        margin-top: 12px;
    }

    .prop-tab {
        padding: 0 .75rem;
        font-size: .875rem;
    }

    .prop-section {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .prop-section-title {
        font-size: 1.2rem;
    }

    .prop-highlights,
    .prop-breakdown,
    .prop-location-grid,
    .prop-facilities--modal {
        grid-template-columns: minmax(0, 1fr);
    }

    .prop-review,
    .prop-rule {
        grid-template-columns: minmax(0, 1fr);
        gap: .6rem;
    }

    .prop-review-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: .25rem .9rem;
    }

    .prop-score-verified {
        margin-left: 0;
        width: 100%;
    }

    .prop-similar-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .prop-actions {
        gap: .4rem;
    }

    .prop-action {
        flex: 1 1 0;
        padding: 0 .5rem;
    }

    .prop-map {
        aspect-ratio: 4 / 3;
    }

    .prop-booking-details > div {
        grid-template-columns: minmax(0, 1fr);
        gap: .15rem;
    }

    .prop-carousel .carousel-item {
        height: min(60vh, 520px);
    }

    .prop-thumb {
        width: 72px;
        height: 48px;
    }

    .prop-box-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .prop-breadcrumb .breadcrumb-item.active {
        max-width: 160px;
    }

    .prop-callout {
        width: 100%;
    }

    .prop-stay {
        width: 100%;
        border-radius: 12px;
    }

    .prop-bottombar-cta {
        min-width: 130px;
    }

    .prop-room-features li {
        font-size: .7rem;
    }
}

@media (max-width: 399.98px) {
    .prop-action span {
        font-size: .8rem;
    }

    .prop-box {
        padding: 16px;
    }

    .prop-box-total-value .re-price {
        font-size: 1.5rem;
    }
}

@media print {
    .prop-tabs,
    .prop-actions,
    .prop-bottombar,
    .prop-box-cta,
    .prop-box-hint,
    .prop-rooms-cta,
    .prop-gallery-more,
    .prop-readmore,
    .prop-reviews-more {
        display: none !important;
    }

    .prop-aside {
        position: static;
    }

    .prop-section {
        break-inside: avoid;
        box-shadow: none;
    }
}
