/* Booking widget & accommodation extras */
.accommodation-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0 80px;
}

.accommodation-hero.docklands-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 400px;
    width: 100%;
    padding: 0;
    margin: 0 0 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: left;
}

.accommodation-hero.docklands-hero .slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.accommodation-hero.docklands-hero .slide-content {
    pointer-events: auto;
    width: min(480px, 46%);
    margin-left: 50px;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    box-sizing: border-box;
}

.accommodation-hero.docklands-hero .slide_heading {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #a39874;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accommodation-hero.docklands-hero .slide_sub_heading {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.4;
    color: #B6AB86;
    display: block;
    margin-bottom: 0;
    max-height: none;
    overflow: visible;
}

.gallery-section {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.booking-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #eee;
}

.booking-tab {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.booking-tab.active {
    color: #B6AB86;
    border-bottom-color: #B6AB86;
}

.booking-panel {
    display: none;
}

.booking-panel.active {
    display: block;
}

.calendar-multi {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.calendar-multi .calendar-header {
    padding: 8px 10px;
}

.calendar-multi .calendar-header button {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.calendar-multi .calendar-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #B6AB86;
}

.calendar-months {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.calendar-multi.months-2 .calendar-months,
.calendar-multi.months-3 .calendar-months {
    grid-template-columns: 1fr;
}

.booking-calendar {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-multi .booking-calendar {
    border: none;
    border-radius: 0;
    border-top: 1px solid #eee;
}

.calendar-month-title {
    padding: 6px 10px 0;
}

.calendar-month-title h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #B6AB86;
    text-align: center;
}

.booking-calendar.compact .calendar-header {
    padding: 8px 10px;
}

.booking-calendar.compact .calendar-header button {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.booking-calendar.compact .calendar-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #B6AB86;
}

.booking-calendar.compact .calendar-grid {
    gap: 1px;
    padding: 6px;
}

.booking-calendar.compact .calendar-day-label {
    font-size: 10px;
    padding: 4px 0;
}

.booking-calendar.compact .calendar-day {
    min-height: 32px;
    aspect-ratio: auto;
    font-size: 11px;
    border-radius: 3px;
}

.booking-calendar.compact .calendar-day .day-price {
    font-size: 8px;
    margin-top: 0;
}

/* Soft dim for selection constraints — NOT booked look (no strike-through) */
.calendar-day.below-min-stay,
.calendar-day.not-selectable {
    opacity: 0.45;
    pointer-events: none;
    text-decoration: none;
    cursor: default;
}

.calendar-day.open {
    background: white;
    color: inherit;
    text-decoration: none;
}

/* Selection gold always wins over constraint dimming */
.calendar-day.selected.below-min-stay,
.calendar-day.selected.not-selectable,
.calendar-day.in-range.below-min-stay,
.calendar-day.in-range.not-selectable {
    opacity: 1;
}

.quote-note.quote-error {
    color: #b42318;
    font-weight: 600;
    margin: 0;
}

.calendar-min-stay-msg {
    color: #b42318;
    font-weight: 600;
}

.book-page-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0 80px;
}

@media (min-width: 641px) {
    .calendar-multi.months-2 .calendar-months {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-multi.months-2 .booking-calendar {
        border-top: none;
        border-left: 1px solid #eee;
    }

    .calendar-multi.months-2 .booking-calendar:first-child {
        border-left: none;
    }
}

@media (min-width: 981px) {
    .calendar-multi.months-3 .calendar-months {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-multi.months-3 .booking-calendar {
        border-top: none;
        border-left: 1px solid #eee;
    }

    .calendar-multi.months-3 .booking-calendar:first-child {
        border-left: none;
    }
}

.calendar-selection-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 10px;
    font-size: 11px;
    color: #666;
    background: #faf8f3;
    border-bottom: 1px solid #eee;
}

.calendar-clear {
    border: none;
    background: transparent;
    color: #B6AB86;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.calendar-clear:hover {
    color: #a39874;
    text-decoration: underline;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.calendar-header button {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: #333;
}

.calendar-header button:hover:not(:disabled) {
    border-color: #B6AB86;
    color: #B6AB86;
}

.calendar-header button:disabled {
    opacity: 0.35;
    cursor: default;
}

.calendar-header h4 {
    margin: 0;
    font-size: 16px;
    color: #B6AB86;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 8px;
    background: #fafafa;
}

.calendar-day-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    padding: 8px 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 4px;
    cursor: default;
    background: white;
    border: 1px solid transparent;
    min-height: 42px;
}

.calendar-day.empty {
    background: transparent;
    border: none;
}

.calendar-day.available {
    cursor: pointer;
}

.calendar-day.available:hover {
    border-color: #B6AB86 !important;
    background: #faf8f3;
}

.calendar-day.unavailable {
    color: #ccc;
    text-decoration: line-through;
    background: #f5f5f5;
}

.calendar-day.selected {
    background: #B6AB86 !important;
    border-color: #B6AB86 !important;
    color: #fff !important;
}

.calendar-day.selected.in-range,
.calendar-day.selected.preview-range {
    background: #B6AB86 !important;
    border-color: #B6AB86 !important;
    color: #fff !important;
}

.calendar-day.in-range,
.calendar-day.preview-range {
    background: rgba(182, 171, 134, 0.22) !important;
}

.calendar-day .day-num {
    line-height: 1;
}

.calendar-day .day-price {
    font-size: 9px;
    color: #888;
    margin-top: 2px;
}

.calendar-day.selected .day-price {
    color: rgba(255, 255, 255, 0.85);
}

/* Primary actions — Cockpit gold */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-primary {
    background: #B6AB86;
    border-color: #B6AB86;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(182, 171, 134, 0.35);
}

.btn-primary:hover:not(:disabled) {
    background: #a39874;
    border-color: #a39874;
    color: #fff !important;
}

.btn-secondary {
    background: #fff;
    border-color: #B6AB86;
    color: #B6AB86 !important;
}

.btn-secondary:hover:not(:disabled) {
    background: #faf8f3;
    color: #a39874 !important;
}

.btn-large {
    padding: 14px 24px;
    font-size: 15px;
}

#sidebar-get-quote.btn-primary {
    margin-top: 12px;
    width: 100%;
    min-height: 46px;
}

.booking-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

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

.form-group input.is-invalid,
.form-group select.is-invalid {
    border-color: #b42318;
}

.field-hint {
    margin: 6px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.35;
}

.field-error {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #b42318;
    line-height: 1.35;
}

.addr-autocomplete {
    position: relative;
    overflow: visible;
}

.addr-suggest {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 40;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 220px;
    overflow: auto;
}

.addr-suggest[hidden] {
    display: none !important;
}

.addr-suggest li {
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.addr-suggest li:last-child {
    border-bottom: none;
}

.addr-suggest li:hover,
.addr-suggest li:focus {
    background: #faf8f3;
}

.addr-suggest li strong {
    display: block;
    font-weight: 600;
    color: #333;
}

.addr-suggest li span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-summary {
    background: #faf8f3;
    border: 1px solid rgba(182, 171, 134, 0.35);
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 12px;
    display: none;
}

.quote-summary.visible {
    display: block;
}

.quote-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    font-size: 13px;
    color: #444;
}

.quote-line.nights {
    font-weight: 600;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(182, 171, 134, 0.25);
}

.quote-line.total {
    border-top: 2px solid #B6AB86;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.quote-line.discount {
    color: #5a6b4a;
}

.quote-line.discount span:last-child {
    font-weight: 600;
}

.quote-note {
    margin: 10px 0 0;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

.cancellation-policy {
    margin-top: 20px;
    padding: 12px 16px;
    background: #faf9f6;
    border: 1px solid rgba(182, 171, 134, 0.35);
    border-radius: 8px;
}

.cancellation-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: #333;
}

.cancellation-toggle-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.cancellation-chevron {
    flex-shrink: 0;
    width: 0.45em;
    height: 0.45em;
    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -0.15em;
}

.cancellation-policy.is-open .cancellation-chevron {
    transform: rotate(-135deg);
    margin-top: 0.15em;
}

.cancellation-body {
    display: none;
    margin-top: 10px;
}

.cancellation-policy.is-open .cancellation-body {
    display: block;
}

.cancellation-summary {
    margin: 0 0 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.45;
}

.cancellation-rules {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.cancellation-rules li {
    margin-bottom: 6px;
}

.cancellation-rules li:last-child {
    margin-bottom: 0;
}

.cancellation-max-note {
    margin: 10px 0 0;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

.sidebar-cancellation {
    margin-top: 14px;
    padding: 10px 12px;
}

.sidebar-cancellation .cancellation-toggle-label {
    font-size: 13px;
}

.sidebar-cancellation .cancellation-rules {
    font-size: 11px;
    padding-left: 16px;
}

.booking-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.accommodation-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.status-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 14px;
    display: none;
}

.status-message.visible {
    display: block;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.landing-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(44, 62, 80, 0.55), rgba(44, 62, 80, 0.55)), url('/assets/images/docklands-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 40px;
}

.landing-hero h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 16px;
}

/* Logo brand mark: All Round Gothic Bold (Gothic Allround Bold) */
@font-face {
    font-family: 'All Round Gothic';
    src: url('/assets/fonts/AllRoundGothic-Bold.woff2') format('woff2'),
         url('/assets/fonts/AllRoundGothic-Bold.woff') format('woff'),
         url('/assets/fonts/AllRoundGothic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.landing-hero .brand-logo-text {
    font-family: 'All Round Gothic', 'AllRoundGothicW01-Bold', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: #C5B382;
}

.landing-hero p {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.landing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.landing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.landing-card:hover {
    transform: translateY(-4px);
}

.landing-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.landing-card-body {
    padding: 24px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 80px;
}

.legal-content h1 {
    margin-bottom: 24px;
}

.legal-content h2 {
    margin: 32px 0 12px;
    font-size: 22px;
}

.legal-content p,
.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 1.4em;
}

.legal-content a {
    color: #a39874;
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: #888;
}

@media (max-width: 768px) {
    .accommodation-content {
        grid-template-columns: 1fr;
    }

    .accommodation-hero.docklands-hero {
        height: 250px;
    }

    .accommodation-hero.docklands-hero .slide-content-wrapper {
        justify-content: center;
    }

    .accommodation-hero.docklands-hero .slide-content {
        width: 90%;
        margin: 0 auto;
        padding: 20px 14px;
    }

    .accommodation-hero.docklands-hero .slide_heading {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .accommodation-hero.docklands-hero .slide_sub_heading {
        font-size: 13px;
    }

    .accommodation-sidebar {
        position: static;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .landing-hero h1 {
        font-size: 32px;
    }
}

.ubomi-map {
    display: block;
    width: 100%;
}

.ubomi-map-popup {
    text-align: center;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
}

.ubomi-map-popup h4 {
    margin: 0 0 10px 0;
    color: #a39874;
    font-weight: 600;
    font-size: 16px;
}

.ubomi-map-popup p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.location-section {
    margin-bottom: 40px;
}

.location-section p {
    color: #666;
    margin-bottom: 16px;
}

/* Amenities — modern two-column lists with brand gold checks */
.amenities-section {
    margin: 40px 0;
}

.amenities-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
}

.amenity-category h4 {
    color: #a39874;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(182, 171, 134, 0.45);
}

.amenity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 28px;
}

.property-highlights {
    margin-top: 28px;
    padding-left: 14px;
    box-sizing: border-box;
}

.property-highlights h4 {
    color: #a39874;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(182, 171, 134, 0.45);
}

.property-highlights-list {
    grid-template-columns: 1fr;
    gap: 8px;
}

.amenity-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    color: #444;
    font-size: 14px;
    line-height: 1.45;
}

.amenity-label {
    flex: 1;
    min-width: 0;
}

.nixe-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background-color: #B6AB86;
    border: 1px solid #a39874;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nixe-checkbox .checkmark {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.neighborhood-section,
.sleep-section,
.house-rules-section,
.things-to-know-section,
.reviews-section {
    margin-bottom: 40px;
}

.property-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px 16px;
    margin-top: 18px;
}

.property-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.4;
}

.property-details .detail-item i {
    color: #B6AB86;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.sleep-summary {
    margin: 0 0 12px;
    color: #333;
}

.sleep-room {
    margin-bottom: 10px;
}

.sleep-beds {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
}

.sleep-beds li {
    padding: 2px 0;
    color: #555;
}

.house-rules-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.house-rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.house-rules-list li.not-allowed .nixe-checkbox {
    background-color: #8a7f66;
}

.house-rules-extra {
    margin-top: 14px;
    color: #555;
    line-height: 1.55;
}

.things-block {
    margin-top: 16px;
}

.things-block h4 {
    margin: 0 0 6px;
    color: #a39874;
    font-size: 16px;
}

.things-block p {
    margin: 0;
    color: #555;
    line-height: 1.55;
    white-space: pre-line;
}

.reviews-grid {
    margin-top: 20px;
}

.reviews-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "prev viewport next"
        "dots dots dots";
    align-items: center;
    column-gap: 10px;
    row-gap: 16px;
}

.reviews-viewport {
    grid-area: viewport;
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: 200px;
    background: #faf8f3;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(182, 171, 134, 0.45);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.reviews-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(182, 171, 134, 0.55);
    background: #fff;
    color: #B6AB86;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.reviews-prev {
    grid-area: prev;
}

.reviews-next {
    grid-area: next;
}

.reviews-nav:hover:not(:disabled) {
    background: rgba(182, 171, 134, 0.12);
    border-color: #B6AB86;
}

.reviews-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.reviews-carousel.is-single-page .reviews-nav {
    visibility: hidden;
}

.reviews-dots {
    grid-area: dots;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 12px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(182, 171, 134, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dot.is-active {
    background: #B6AB86;
    transform: scale(1.15);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.review-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.review-header strong {
    color: #333;
}

.review-date {
    font-size: 12px;
    color: #777;
    margin-left: auto;
}

.review-stars {
    display: inline-flex;
    gap: 1px;
}

.review-stars .star {
    color: #d8d2c2;
    font-size: 13px;
    line-height: 1;
}

.review-stars .star.filled {
    color: #B6AB86;
}

.review p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 13px;
}

.review-response {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(182, 171, 134, 0.3);
}

.review-response-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a39874;
    margin-bottom: 6px;
}

.review-response p {
    font-size: 13px;
    color: #666;
}

.reviews-empty {
    color: #888;
    font-size: 14px;
    margin: 12px 0 0;
}

@media (max-width: 1024px) {
    .amenity-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    .property-highlights-list {
        grid-template-columns: 1fr;
    }

    .review {
        flex: 0 0 calc((100% - 20px) / 2);
        max-height: 190px;
    }
}

@media (max-width: 768px) {
    .amenity-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .property-highlights {
        padding-left: 0;
    }

    .reviews-carousel {
        column-gap: 6px;
    }

    .reviews-track {
        gap: 0;
    }

    .review {
        flex: 0 0 100%;
        max-height: 180px;
        padding: 12px 14px;
    }

    .reviews-nav {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .review-date {
        margin-left: 0;
        width: 100%;
    }
}
