.favourites {
    display: none !important;
}

.ctr-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .ctr-area-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .ctr-area-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ctr-area-grid--sub-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
    max-width: none;
}

.ctr-area-grid--sub-areas .ctr-area-tile {
    aspect-ratio: 1 / 1.5;
    width: 120px;
    flex: 0 0 auto;
}

.ctr-area-grid--sub-areas .ctr-area-tile__label {
    font-size: 2rem;
}


.ctr-area-grid--sub-areas .ctr-area-tile--has-image .ctr-area-tile__label {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.99);
}


.ctr-area-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #e1d9c8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f0f0f0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
}

.ctr-area-tile:hover,
.ctr-area-tile:focus-visible {
    transform: translateY(-4px);
    background-color: #88563f;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    filter: brightness(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.ctr-area-tile--has-image {
    color: #ffffff;
}

.ctr-area-tile--has-image .ctr-area-tile__label {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.ctr-area-tile--has-image:hover,
.ctr-area-tile--has-image:focus-visible {
    background-color: transparent;
    color: #ffffff;
}

.ctr-area-tile__label {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
}

.ctr-breadcrumb {
    margin: 1.5rem 2rem 0;
    font-size: 1.95rem;
}

.ctr-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0;
}

.ctr-breadcrumb__item {
    display: inline-flex;
    align-items: center;
}

.ctr-breadcrumb__item + .ctr-breadcrumb__item::before {
    content: '›';
    margin: 0 0.6rem;
    color: #88563f;
    font-weight: 600;
}

.ctr-breadcrumb__link {
    color: #88563f;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.ctr-breadcrumb__link:hover,
.ctr-breadcrumb__link:focus-visible {
    color: #5e3a2a;
    text-decoration-thickness: 2px;
    background-color: rgba(136, 86, 63, 0.08);
    outline: none;
}

.ctr-breadcrumb__link:focus-visible {
    outline: 2px solid #88563f;
    outline-offset: 2px;
    border-radius: 2px;
}

.ctr-breadcrumb__current {
    color: #555;
    font-weight: 500;
}

.ctr-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* -------------------------------------------------------------------------
 * Unit listing — filter sidebar + paginated property grid
 * ------------------------------------------------------------------------- */

.ctr-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

@media (min-width: 960px) {
    .ctr-listing {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: 3rem;
        padding: 0 2rem;
    }
}

.ctr-listing--loading {
    opacity: 0.85;
    pointer-events: none;
}

.ctr-listing__filters {
    font-size: 2rem;
    border: solid 1px rgba(136, 86, 63, 0.25);
    border-radius: 1rem;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
}

@media (min-width: 960px) {
    .ctr-listing__filters {
        position: sticky;
        top: 2rem;
        align-self: start;
    }
}

.ctr-listing__filter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    /* background-color: #ff00ff; */
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ctr-listing__filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ctr-listing__filter-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ctr-listing__filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    background: none;
    border: 1px solid #88563f;
    color: #88563f;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ctr-listing__filter-toggle:hover,
.ctr-listing__filter-toggle:focus-visible {
    background-color: #88563f;
    color: #ffffff;
}

.ctr-listing__filter-toggle svg {
    width: 1.6rem;
    height: 1.6rem;
    transition: transform 0.25s ease;
}

.ctr-listing__filter-form.is-expanded .ctr-listing__filter-toggle svg {
    transform: rotate(180deg);
}

.ctr-listing__filter-body {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.3s ease;
}

.ctr-listing__filter-body-inner {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 959px) {
    .ctr-listing__filter-form:not(.is-expanded) {
        gap: 0;
    }
    .ctr-listing__filter-form:not(.is-expanded) .ctr-listing__filter-body {
        grid-template-rows: 0fr;
    }
}

@media (min-width: 960px) {
    .ctr-listing__filter-toggle {
        display: none;
    }
}

.ctr-listing__filter-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #3c2a20;
}

.ctr-listing__reset {
    background: none;
    border: 1px solid #88563f;
    color: #88563f;
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ctr-listing__reset:hover,
.ctr-listing__reset:focus-visible {
    background-color: #88563f;
    color: #ffffff;
}

.ctr-listing__filter-group {
    border: none;
    padding: 0;
    margin: 0;
}

.ctr-listing__filter-group legend {
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #88563f;
}

.ctr-listing__filter-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ctr-listing__filter-subhead {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #404040;
}

.ctr-listing__filter-subhead:first-of-type {
    margin-top: 0.25rem;
}

.ctr-listing__filter-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    color: #3c2a20;
}

.ctr-listing__filter-option input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
    accent-color: #88563f;
    cursor: pointer;
}

.ctr-listing__filter-divider {
    width: 100%;
    opacity: 0.5;
}

.ctr-listing__filter-group--stay {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ctr-listing__stay-help {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #404040;
}

.ctr-listing__stay-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ctr-listing__stay-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #404040;
}

.ctr-listing__date-range {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #c9b8aa;
    border-radius: 0.4rem;
    background-color: #ffffff;
    font-size: 1.4rem;
    color: #3c2a20;
    cursor: pointer;
}

.ctr-listing__date-range:focus-visible {
    outline: 2px solid #88563f;
    outline-offset: 1px;
}

.ctr-listing__stay-clear-row {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
}

.ctr-listing__clear-availability {
    padding: 0.5rem 1.2rem;
    border: 1px solid #c9b8aa;
    border-radius: 0.4rem;
    background-color: #f5ede5;
    font-size: 1.3rem;
    color: #88563f;
    cursor: pointer;
}

.ctr-listing__clear-availability:hover,
.ctr-listing__clear-availability:focus-visible {
    background-color: #88563f;
    color: #ffffff;
}

.ctr-listing__guests {
    padding: 0.6rem 0.75rem;
    border: 1px solid #c9b8aa;
    border-radius: 0.4rem;
    background-color: #ffffff;
    font-size: 1.4rem;
    color: #3c2a20;
}

.ctr-listing__apply {
    background-color: #88563f;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.ctr-listing__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-margin-top: 2rem;
}

.ctr-listing__empty {
    padding: 5rem 1.5rem;
    text-align: center;
    color: #666;
    background-color: #f7f3ea;
    border-radius: 0.75rem;
}

/* Unit cards — luxury full-width horizontal layout */

.ctr-unit-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ctr-unit-card {
    background-color: #f0f0f0;
    border: solid 1px rgba(136, 86, 63, 0.25);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ctr-unit-card:hover,
.ctr-unit-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.33);
}

.ctr-unit-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.ctr-unit-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #e1d9c8;
}

.ctr-unit-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .ctr-unit-card__link {
        flex-direction: row;
        align-items: stretch;
    }

    .ctr-unit-card__media {
        flex: 0 0 42%;
        aspect-ratio: auto;
        min-height: 28rem;
    }
}

.ctr-unit-card__body {
    flex: 1 1 auto;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background-image: linear-gradient(180deg, #f8f8f8 0%, #e0e0e0 100%);
}

.ctr-unit-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ctr-unit-card__title {
    margin: 0;
    font-size: 4rem;
    font-weight: 600;
    color: #4d4d4d;
    line-height: 1.25;
}

.ctr-unit-card__location {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 0.9rem;
    font-size: 1.45rem;
    color: #666;
}

.ctr-unit-card__area {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background-color: rgba(136, 86, 63, 0.1);
    color: #88563f;
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ctr-unit-card__type {
    font-style: italic;
}

.ctr-unit-card__synopsis {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.6;
    color: #555;
}

.ctr-unit-card__specs {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    color: #3c2a20;
    font-size: 1.5rem;
    border-top: 1px solid rgba(136, 86, 63, 0.15);
    border-bottom: 1px solid rgba(136, 86, 63, 0.15);
}

.ctr-unit-card__specs li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.ctr-unit-card__specs svg {
    width: 2rem;
    height: 2rem;
    color: #88563f;
    flex-shrink: 0;
}

.ctr-unit-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.ctr-unit-card__price {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 600;
    color: #88563f;
}

.ctr-unit-card__price--placeholder {
    color: #4d4d4d;
}

.ctr-unit-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    color: #88563f;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ctr-unit-card__cta svg {
    width: 1.4rem;
    height: 1.4rem;
    transition: transform 0.2s ease;
}

.ctr-unit-card:hover .ctr-unit-card__cta svg,
.ctr-unit-card:focus-within .ctr-unit-card__cta svg {
    transform: translateX(4px);
}

/* Pagination */

.ctr-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.ctr-pagination--empty {
    min-height: 0;
    padding: 0;
}

.ctr-pagination__btn {
    background-color: #ffffff;
    border: 1px solid #d6c9b8;
    color: #88563f;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.ctr-pagination__btn:hover:not([disabled]),
.ctr-pagination__btn:focus-visible:not([disabled]) {
    background-color: #88563f;
    border-color: #88563f;
    color: #ffffff;
}

.ctr-pagination__btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    background-color: #f0f0f0;
}

.ctr-pagination__status {
    padding: 0 0.75rem;
    font-size: 1.75rem;
    color: #3c2a20;
    font-weight: 500;
}

/* -------------------------------------------------------------------------
 * Property page — gallery, info layout, booking widget, map
 * ------------------------------------------------------------------------- */

.ctr-unit-page {
    max-width: 1400px;
    margin: 1.5rem auto 4rem;
    padding: 0 1.5rem;
    color: #3c2a20;
}

@media (min-width: 960px) {
    .ctr-unit-page {
        padding: 0 2rem;
    }
}

.ctr-unit-page__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.5rem;
    align-items: start;
    margin: 1rem 0 1.5rem;
}

.ctr-unit-page__header .ctr-unit-page__title {
    grid-column: 1;
    grid-row: 1;
}

.ctr-unit-page__header .ctr-unit-page__fav {
    grid-column: 2;
    grid-row: 1;
}

.ctr-unit-page__header .ctr-unit-page__subtitle {
    grid-column: 1 / -1;
}

.ctr-unit-page__title {
    margin: 0 0 0.5rem;
    font-size: 8rem;
    font-weight: 600;
    color: #4d4d4d;
    line-height: 1.15;
}

.ctr-unit-page__subtitle {
    margin: 0;
    font-size: 1.85rem;
    color: #88563f;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ctr-unit-page__subtitle svg {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

/* Gallery */

.ctr-unit-gallery {
    margin: 0 0 3rem;
}

.ctr-unit-gallery__primary {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
    border-radius: 1.25rem;
    background-color: #e1d9c8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ctr-unit-gallery__primary:hover,
.ctr-unit-gallery__primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ctr-unit-gallery__primary img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ctr-unit-gallery__tile-btn {
    cursor: zoom-in;
}

.ctr-unit-gallery__data {
    display: none;
}

.ctr-unit-gallery__strip {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .ctr-unit-gallery__strip {
        grid-template-columns: repeat(8, 1fr);
        gap: 1rem;
    }
}

.ctr-unit-gallery__tile {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ctr-unit-gallery__tile-btn {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    background-color: #e1d9c8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ctr-unit-gallery__tile-btn:hover,
.ctr-unit-gallery__tile-btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.ctr-unit-gallery__tile-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ctr-unit-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    background-color: rgba(60, 42, 32, 0.7);
    color: #ffffff;
    line-height: 1.1;
    text-align: center;
    padding: 0.4rem;
}

.ctr-unit-gallery__overlay-count {
    font-size: 2.2rem;
    font-weight: 700;
}

.ctr-unit-gallery__overlay-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

/* Two-column layout */

.ctr-unit-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 960px) {
    .ctr-unit-page__layout {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 4rem;
        align-items: start;
    }
}

.ctr-unit-page__main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    min-width: 0;
}

@media (min-width: 960px) {
    .ctr-unit-page__sidebar {
        position: sticky;
        top: 2rem;
    }
}

/* Highlights row */

.ctr-unit-highlights__list {
    list-style: none;
    margin: 0;
    padding: 1.75rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(136, 86, 63, 0.18);
    border-bottom: 1px solid rgba(136, 86, 63, 0.18);
}

@media (min-width: 640px) {
    .ctr-unit-highlights__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ctr-unit-highlights__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.ctr-unit-highlights__item svg {
    width: 2.6rem;
    height: 2.6rem;
    color: #88563f;
}

.ctr-unit-highlights__value {
    font-size: 2.4rem;
    font-weight: 600;
    color: #3c2a20;
    line-height: 1;
}

.ctr-unit-highlights__label {
    font-size: 1.4rem;
    color: #6b554a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections (description, amenities, info, map) */

.ctr-unit-section__title {
    margin: 2rem 0 1.25rem;
    font-size: 2.6rem;
    font-weight: 600;
    color: #4d4d4d;
}

.ctr-unit-section__subtitle {
    padding-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 600;
    color: #6b554a;
}

.ctr-unit-section__lede {
    margin: 0 0 1rem;
    font-size: 1.7rem;
    color: #6b554a;
}

.ctr-unit-prose {
    font-size: 1.7rem;
    line-height: 1.7;
    color: #3c2a20;
}

.ctr-unit-prose p {
    margin: 0 0 1.25rem;
}

.ctr-unit-prose p:last-child {
    margin-bottom: 0;
}

/* Read-more truncation */

.ctr-readmore {
    position: relative;
}

.ctr-readmore__content {
    position: relative;
    max-height: 40rem;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctr-readmore.is-expanded .ctr-readmore__content {
    max-height: none;
    overflow: visible;
}

.ctr-readmore.is-truncated .ctr-readmore__content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 70%,
        #ffffff 100%
    );
    pointer-events: none;
}

.ctr-readmore__toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.75rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.ctr-readmore__toggle[hidden] {
    display: none;
}

.ctr-readmore__toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d6ccbc;
    z-index: 0;
}

.ctr-readmore__toggle-label {
    position: relative;
    z-index: 1;
    padding: 0.65rem 1.75rem;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #88563f;
    background-color: #ffffff;
    border: 1px solid #d6ccbc;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ctr-readmore__toggle:hover .ctr-readmore__toggle-label,
.ctr-readmore__toggle:focus-visible .ctr-readmore__toggle-label {
    background-color: #88563f;
    color: #ffffff;
    border-color: #88563f;
    box-shadow: 0 3px 8px rgba(136, 86, 63, 0.25);
}

/* Amenities grid */

.ctr-unit-amenities__category {
    margin: 0 0 2.25rem;
}

.ctr-unit-amenities__category:last-child {
    margin-bottom: 0;
}

.ctr-unit-amenities__category-title {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4d4d4d;
}

.ctr-unit-amenities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem 2rem;
}

@media (min-width: 540px) {
    .ctr-unit-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .ctr-unit-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ctr-unit-amenities__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.6rem;
    color: #3c2a20;
}

.ctr-unit-amenities__item svg {
    width: 2.2rem;
    height: 2.2rem;
    color: #88563f;
    flex-shrink: 0;
}

/* Things-to-know list */

.ctr-unit-info {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(136, 86, 63, 0.18);
}

.ctr-unit-info__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(136, 86, 63, 0.12);
}

.ctr-unit-info__row:last-child {
    border-bottom: none;
}

.ctr-unit-info dt {
    flex: 0 0 14rem;
    font-size: 1.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #88563f;
    margin: 0;
}

.ctr-unit-info dd {
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.65rem;
    color: #3c2a20;
}

/* "Book your stay" CTA (sidebar, above map) */

.ctr-book-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    background-color: #88563f;
    color: #ffffff !important;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(136, 86, 63, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ctr-book-cta:hover,
.ctr-book-cta:focus-visible {
    background-color: #6e4430;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(136, 86, 63, 0.3);
}

.ctr-book-cta svg {
    width: 1.8rem;
    height: 1.8rem;
    transition: transform 0.2s ease;
}

.ctr-book-cta:hover svg,
.ctr-book-cta:focus-visible svg {
    transform: translateY(2px);
}

.ctr-book-cta--mobile {
    margin-top: 1rem;
}

@media (min-width: 960px) {
    .ctr-book-cta--mobile {
        display: none;
    }
}

@media (max-width: 959px) {
    .ctr-book-cta--desktop {
        display: none;
    }
}

/* Map placeholder */

.ctr-unit-map {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(136, 86, 63, 0.25);
    aspect-ratio: 1 / 1.5;
    background-color: #e9e3d3;
    background-image:
        repeating-linear-gradient(0deg, rgba(136, 86, 63, 0.12) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(90deg, rgba(136, 86, 63, 0.12) 0 1px, transparent 1px 48px),
        radial-gradient(circle at 30% 70%, rgba(136, 86, 63, 0.18), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(60, 42, 32, 0.12), transparent 55%);
}

.ctr-unit-map__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.ctr-unit-map__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b554a;
    text-align: center;
    padding: 1rem;
}

.ctr-unit-map__placeholder svg {
    width: 4.8rem;
    height: 4.8rem;
    color: #88563f;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.ctr-unit-map__title {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    color: #3c2a20;
}

.ctr-unit-map__coords {
    margin: 0;
    font-size: 1.35rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: #88563f;
}

/* Booking widget */

.ctr-booking-widget {
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border: 1px solid rgba(136, 86, 63, 0.25);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ctr-booking-widget__price {
    font-size: 1.55rem;
    color: #6b554a;
    line-height: 1.2;
    text-align: center;
}

.ctr-booking-widget__price-from {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 2.3rem;
    color: #88563f;
    margin-right: 0.5rem;
}

.ctr-booking-widget__price-amount {
    font-size: 3.8rem;
    font-weight: 600;
    color: #808080;
}

.ctr-booking-widget__price-amount--placeholder {
    font-size: 2.2rem;
}

.ctr-booking-widget__price-period {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 2.3rem;
    color: #88563f;
    margin-left: 0.5rem;
}

.ctr-booking-widget__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 720px) {
    .ctr-booking-widget__fields {
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 60rem;
        align-self: center;
    }
}

.ctr-booking-widget__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (max-width: 719px) {
    .ctr-booking-widget__field:last-child {
        grid-column: 1 / -1;
    }
}

.ctr-booking-widget__field label {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #88563f;
}

.ctr-booking-widget__field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(136, 86, 63, 0.3);
    border-radius: 0.5rem;
    background-color: #ffffff;
    font-size: 1.5rem;
    color: #3c2a20;
    cursor: not-allowed;
}

.ctr-booking-widget__cta {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: #88563f;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(136, 86, 63, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ctr-booking-widget__cta:hover,
.ctr-booking-widget__cta:focus-visible {
    background-color: #6e4430;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(136, 86, 63, 0.3);
}

@media (min-width: 720px) {
    .ctr-booking-widget__cta {
        max-width: 36rem;
        align-self: center;
    }
}

.ctr-booking-widget__note {
    margin: 0;
    font-size: 1.3rem;
    color: #6b554a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctr-booking-widget__note a {
    color: #88563f;
    text-decoration: underline;
}

.ctr-booking-widget__logo {
    width: 100px;
    height: auto;
}

/* Booking calendar */

.ctr-booking-calendar {
    border: 1px solid rgba(136, 86, 63, 0.2);
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 1.5rem;
    user-select: none;
}

.ctr-booking-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ctr-booking-calendar__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ctr-booking-calendar__status {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #88563f;
}

.ctr-booking-calendar__select {
    appearance: none;
    -webkit-appearance: none;
    padding: 0.6rem 2.6rem 0.6rem 1rem;
    border: 1px solid rgba(136, 86, 63, 0.3);
    border-radius: 0.5rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%2388563f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1,1 6,7 11,1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    font-size: 1.4rem;
    font-family: inherit;
    color: #3c2a20;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ctr-booking-calendar__select:focus {
    outline: none;
    border-color: #88563f;
    box-shadow: 0 0 0 3px rgba(136, 86, 63, 0.15);
}

.ctr-booking-calendar__nav-group {
    display: flex;
    gap: 0.5rem;
}

.ctr-booking-calendar__nav {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1px solid rgba(136, 86, 63, 0.3);
    background-color: #ffffff;
    color: #88563f;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ctr-booking-calendar__nav:hover:not(:disabled),
.ctr-booking-calendar__nav:focus-visible:not(:disabled) {
    background-color: #f7efe2;
    border-color: rgba(136, 86, 63, 0.55);
    outline: none;
}

.ctr-booking-calendar__nav:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.ctr-booking-calendar__viewport {
    position: relative;
}

.ctr-booking-calendar__loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(253, 250, 243, 0.85);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 0.5rem;
    text-align: center;
}

.ctr-booking-calendar__loading[hidden] {
    display: none;
}

.ctr-booking-calendar__loading-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #88563f;
    letter-spacing: 0.02em;
}

.ctr-booking-calendar__help {
    margin: 0 0 1rem;
    text-align: center;
    font-size: 2rem;
    color: #3c2a20;
}

.ctr-booking-calendar__help[hidden] {
    display: none;
}

.ctr-booking-calendar__months {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ctr-booking-calendar__months {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ctr-booking-calendar__months {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ctr-booking-calendar__month {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.ctr-booking-calendar__month[hidden] {
    display: none;
}

.ctr-booking-calendar__month-label {
    font-size: 1.55rem;
    font-weight: 600;
    color: #3c2a20;
    text-align: center;
}

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

.ctr-booking-calendar__dow {
    font-size: 1.1rem;
    text-align: center;
    color: #88563f;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.4rem 0;
}

.ctr-booking-calendar__day {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    font-family: inherit;
    color: #3c2a20;
    border: none;
    border-radius: 0.4rem;
    background-color: #fdfaf3;
    cursor: default;
}

button.ctr-booking-calendar__day:not(:disabled):not(.ctr-booking-calendar__day--unavailable) {
    cursor: pointer;
}

button.ctr-booking-calendar__day:disabled {
    cursor: not-allowed;
}

.ctr-booking-calendar__day__num {
    font-size: 1.3rem;
    line-height: 1;
}

.ctr-booking-calendar__day__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    line-height: 1.1;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
}

.ctr-booking-calendar__day__meta-nights {
    font-size: 0.9rem;
    font-weight: 500;
}

.ctr-booking-calendar__day__meta-price {
    font-size: 0.95rem;
    font-weight: 700;
}

.ctr-booking-calendar__day--empty {
    background-color: transparent;
}

.ctr-booking-calendar__day--past {
    color: #b8a99a;
    background-color: transparent;
    text-decoration: line-through;
}

.ctr-booking-calendar__day--today {
    background-color: #88563f;
    color: #ffffff;
    font-weight: 600;
}

.ctr-booking-calendar__day--unavailable {
    background-color: #f1c8c2;
    color: #8a3a31;
    text-decoration: line-through;
    cursor: not-allowed;
}

.ctr-booking-calendar__day--checkin-available {
    background-color: #c8e0bf;
    color: #2f5d28;
    box-shadow: inset 0 0 0 1px #6fa05f;
    font-weight: 600;
}

.ctr-booking-calendar__day--checkin-available:hover,
.ctr-booking-calendar__day--checkin-available:focus-visible {
    background-color: #b1d6a4;
    outline: none;
}

.ctr-booking-calendar__day--checkout-available {
    background-color: #c8e0bf;
    color: #2f5d28;
    box-shadow: inset 0 0 0 1px #6fa05f;
    font-weight: 600;
}

.ctr-booking-calendar__day--checkout-available:hover,
.ctr-booking-calendar__day--checkout-available:focus-visible {
    background-color: #b1d6a4;
    outline: none;
}

.ctr-booking-calendar__day--in-range {
    background-color: #5189d6;
    color: #e0e0e0;
}

.ctr-booking-calendar__day--checkin-selected,
.ctr-booking-calendar__day--checkout-selected {
    background-color: #2e63ae;
    color: #ffffff;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px #2f5d28;
}

.ctr-booking-calendar__legend {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 1.2rem;
    color: #3c2a20;
}

.ctr-booking-calendar__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ctr-booking-calendar__legend-swatch {
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0.3rem;
    flex-shrink: 0;
}

.ctr-booking-calendar__legend-swatch--unavailable {
    background-color: #f1c8c2;
}

.ctr-booking-calendar__legend-swatch--available {
    background-color: #c8e0bf;
    box-shadow: inset 0 0 0 1px #6fa05f;
}

.ctr-booking-calendar__legend-swatch--selected {
    background-color: #2e63ae;
}

.ctr-booking-calendar__reset {
    align-self: center;
    margin-top: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: none;
    border: 1px solid #88563f;
    color: #88563f;
    border-radius: 999px;
    font-size: 1.35rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ctr-booking-calendar__reset:hover,
.ctr-booking-calendar__reset:focus-visible {
    background-color: #88563f;
    color: #ffffff;
    outline: none;
}

.ctr-booking-calendar__reset[hidden] {
    display: none;
}

.ctr-booking-widget__field input[readonly] {
    cursor: default;
    background-color: #ffffff;
}

.ctr-booking-widget__field--nights {
    grid-column: 1 / -1;
}

.ctr-booking-widget__field--nights input {
    max-width: 14rem;
}

@media (min-width: 720px) {
    .ctr-booking-widget__field--nights {
        grid-column: auto;
    }

    .ctr-booking-widget__field--nights input {
        max-width: none;
    }
}

.ctr-booking-widget__field--guests {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 24rem;
    justify-self: center;
    align-items: center;
}

.ctr-booking-widget__field select {
    width: 100%;
    padding: 0.85rem 2.6rem 0.85rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(136, 86, 63, 0.3);
    border-radius: 0.5rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%2388563f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1,1 6,7 11,1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    font-size: 1.5rem;
    font-family: inherit;
    color: #3c2a20;
    cursor: pointer;
}

.ctr-booking-widget__field select:focus {
    outline: none;
    border-color: #88563f;
    box-shadow: 0 0 0 3px rgba(136, 86, 63, 0.15);
}

.ctr-booking-widget__summary {
    margin: 0;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border: 1px solid rgba(136, 86, 63, 0.25);
    border-radius: 0.6rem;
    align-self: center;
    max-width: 36rem;
    width: 100%;
}

.ctr-booking-widget__summary[hidden] {
    display: none;
}

.ctr-booking-widget__summary-label {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #88563f;
}

.ctr-booking-widget__summary-amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3c2a20;
    line-height: 1.1;
}

.ctr-booking-widget__error {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 1.4rem;
    color: #8a3a31;
    background-color: #fbe7e3;
    border: 1px solid #e8a399;
    border-radius: 0.5rem;
    text-align: center;
}

.ctr-booking-widget__error[hidden] {
    display: none;
}

.ctr-booking-widget__cta--disabled,
.ctr-booking-widget__cta:disabled {
    background-color: #b8a99a;
    cursor: not-allowed;
    box-shadow: none;
}

.ctr-booking-widget__cta--disabled:hover,
.ctr-booking-widget__cta:disabled:hover {
    background-color: #b8a99a;
    transform: none;
    box-shadow: none;
}

/* -------------------------------------------------------------------------
 * Lightbox
 * ------------------------------------------------------------------------- */

body.ctr-lightbox-open {
    overflow: hidden;
}

.ctr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: rgba(10, 7, 5, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: ctr-lightbox-fade 0.2s ease;
}

.ctr-lightbox[hidden] {
    display: none;
}

@keyframes ctr-lightbox-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ctr-lightbox__figure {
    position: relative;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ctr-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 10rem);
    border-radius: 0.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background-color: #1a1210;
    user-select: none;
}

.ctr-lightbox__counter {
    color: #ffffff;
    font-size: 1.55rem;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    pointer-events: none;
}

.ctr-lightbox__close,
.ctr-lightbox__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ctr-lightbox__close:hover,
.ctr-lightbox__close:focus-visible,
.ctr-lightbox__nav:hover,
.ctr-lightbox__nav:focus-visible {
    background-color: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

.ctr-lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.8rem;
    padding-bottom: 0.2rem;
}

.ctr-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 5.2rem;
    height: 5.2rem;
    font-size: 3.6rem;
    padding-bottom: 0.3rem;
}

.ctr-lightbox__nav:hover,
.ctr-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

.ctr-lightbox__nav--prev {
    left: 1.5rem;
}

.ctr-lightbox__nav--next {
    right: 1.5rem;
}

@media (max-width: 640px) {
    .ctr-lightbox {
        padding: 2.5rem 0.75rem;
    }
    .ctr-lightbox__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 3.6rem;
        height: 3.6rem;
        font-size: 2.2rem;
    }
    .ctr-lightbox__nav {
        width: 4rem;
        height: 4rem;
        font-size: 2.8rem;
    }
    .ctr-lightbox__nav--prev { left: 0.5rem; }
    .ctr-lightbox__nav--next { right: 0.5rem; }
    .ctr-lightbox__image {
        max-height: calc(100vh - 8rem);
    }
}

/* -------------------------------------------------------------------------
 * Booking request modal
 * ------------------------------------------------------------------------- */

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

.ctr-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    animation: ctr-modal-fade 0.2s ease;
}

.ctr-booking-modal[hidden] {
    display: none;
}

@keyframes ctr-modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ctr-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 7, 5, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ctr-booking-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 58rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: ctr-modal-slide 0.25s ease;
}

@keyframes ctr-modal-slide {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.ctr-booking-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #6b554a;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ctr-booking-modal__close:hover,
.ctr-booking-modal__close:focus-visible {
    background-color: rgba(136, 86, 63, 0.1);
    color: #88563f;
}

.ctr-booking-modal__header {
    margin-bottom: 1.75rem;
    padding-right: 2rem;
}

.ctr-booking-modal__title {
    margin: 0 0 0.25rem;
    font-size: 2.4rem;
    font-weight: 600;
    color: #3c2a20;
    line-height: 1.2;
}

.ctr-booking-modal__subtitle {
    margin: 0;
    font-size: 1.55rem;
    color: #88563f;
    font-weight: 500;
}

/* Booking form */

.ctr-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ctr-booking-form__summary {
    margin: 0;
    padding: 1.25rem 1.5rem;
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border: 1px solid rgba(136, 86, 63, 0.2);
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ctr-booking-form__summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.45rem;
    color: #3c2a20;
}

.ctr-booking-form__summary-row dt {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #88563f;
}

.ctr-booking-form__summary-row dd {
    margin: 0;
    font-weight: 500;
    text-align: right;
}

.ctr-booking-form__summary-row--total {
    margin-top: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(136, 86, 63, 0.2);
}

.ctr-booking-form__summary-row--total dt {
    font-size: 1.3rem;
}

.ctr-booking-form__summary-row--total dd {
    font-size: 1.9rem;
    font-weight: 700;
    color: #3c2a20;
}

.ctr-booking-form__divider {
    margin: 0.25rem 0;
    border: none;
    border-top: 1px solid rgba(136, 86, 63, 0.18);
    height: 0;
}

.ctr-booking-form__post-submit {
    margin: -0.25rem 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #6b554a;
    text-align: center;
}

.ctr-booking-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 540px) {
    .ctr-booking-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.ctr-booking-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ctr-booking-form__field label {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #88563f;
}

.ctr-booking-form__field input,
.ctr-booking-form__field select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(136, 86, 63, 0.3);
    border-radius: 0.5rem;
    background-color: #ffffff;
    font-size: 1.55rem;
    color: #3c2a20;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ctr-booking-form__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' fill='none' stroke='%2388563f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1,1 6,7 11,1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.ctr-booking-form__field input:focus,
.ctr-booking-form__field select:focus {
    outline: none;
    border-color: #88563f;
    box-shadow: 0 0 0 3px rgba(136, 86, 63, 0.15);
}

.ctr-booking-form__submit {
    margin-top: 1rem;
    padding: 1.2rem 1.5rem;
    background-color: #88563f;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(136, 86, 63, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ctr-booking-form__submit:hover,
.ctr-booking-form__submit:focus-visible {
    background-color: #6e4430;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(136, 86, 63, 0.3);
}

.ctr-booking-form__partner {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(136, 86, 63, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ctr-booking-form__partner p {
    margin: 0;
    font-size: 1.3rem;
    color: #6b554a;
}

.ctr-booking-form__partner-logo {
    max-height: 2.8rem;
    width: auto;
    opacity: 0.9;
}

/* -------------------------------------------------------------------------
 * Booking success page
 * ------------------------------------------------------------------------- */

.casatuscany-rentals--booking-success {
    display: flex;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.ctr-booking-success {
    max-width: 60rem;
    text-align: center;
    padding: 3rem;
    background-image: linear-gradient(180deg, #fdfaf3 0%, #f4ede0 100%);
    border: 1px solid rgba(136, 86, 63, 0.25);
    border-radius: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.ctr-booking-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 auto 1.5rem;
    background-color: #88563f;
    color: #ffffff;
    border-radius: 999px;
}

.ctr-booking-success__icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.ctr-booking-success__title {
    margin: 0 0 1rem;
    font-size: 3rem;
    font-weight: 600;
    color: #3c2a20;
    line-height: 1.2;
}

.ctr-booking-success__lede {
    margin: 0 auto 2rem;
    max-width: 48rem;
    font-size: 1.7rem;
    line-height: 1.6;
    color: #3c2a20;
}

.ctr-booking-success__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #88563f;
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    border-radius: 0.6rem;
    box-shadow: 0 3px 10px rgba(136, 86, 63, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ctr-booking-success__btn:hover,
.ctr-booking-success__btn:focus-visible {
    background-color: #6e4430;
    transform: translateY(-1px);
}

/* ----- Favourites: per-card heart button ----------------------------- */

.ctr-unit-card {
    position: relative;
}

.ctr-fav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.ctr-fav-btn:hover,
.ctr-fav-btn:focus-visible {
    background: #fff;
    transform: scale(1.08);
    outline: none;
}

.ctr-fav-btn__icon {
    fill: none;
    stroke: #111;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill 0.15s ease, stroke 0.15s ease;
}

.ctr-fav-btn.is-active .ctr-fav-btn__icon {
    fill: #e11d48;
    stroke: #e11d48;
}

/* On-card position: overlay at top-right of each card */
.ctr-unit-card__fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 4rem;
    height: 4rem;
}

.ctr-unit-card__fav .ctr-fav-btn__icon {
    width: 2rem;
    height: 2rem;
}

/* On-page position: sits to the right of the property title */
.ctr-unit-page__fav {
    width: 5.5rem;
    height: 5.5rem;
    justify-self: end;
    align-self: start;
    margin-top: 0.5rem;
}

.ctr-unit-page__fav .ctr-fav-btn__icon {
    width: 2.8rem;
    height: 2.8rem;
}

/* ----- Favourites: limit-reached modal -------------------------------- */

.ctr-fav-limit-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    animation: ctr-modal-fade 0.2s ease;
}

.ctr-fav-limit-modal[hidden] {
    display: none;
}

.ctr-fav-limit-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 7, 5, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ctr-fav-limit-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 46rem;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.ctr-fav-limit-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    color: #3c2a20;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.ctr-fav-limit-modal__close:hover,
.ctr-fav-limit-modal__close:focus-visible {
    background-color: rgba(136, 86, 63, 0.1);
    color: #88563f;
    outline: none;
}

.ctr-fav-limit-modal__title {
    margin: 0 0 1.25rem;
    font-size: 2.2rem;
    font-weight: 600;
    color: #3c2a20;
    line-height: 1.2;
}

.ctr-fav-limit-modal__body {
    margin: 0 0 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #3c2a20;
}

.ctr-fav-limit-modal__body a {
    color: #88563f;
    text-decoration: underline;
    display: inline;
}

.ctr-fav-limit-modal__ok {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border: none;
    border-radius: 0.6rem;
    background-color: #88563f;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
    margin-top: 1rem;
}

.ctr-fav-limit-modal__ok:hover,
.ctr-fav-limit-modal__ok:focus-visible {
    background-color: #6e4430;
    transform: translateY(-1px);
    outline: none;
}

/* ----- Favourites: floating tab --------------------------------------- */

.ctr-fav-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #09222D;
    color: #ffffff !important;
    padding: 1.5rem 1rem;
    border-radius: 10px 0 0 10px;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: padding 0.25s ease, right 0.25s ease, background-color 0.25s ease;
}

.ctr-fav-tab:hover,
.ctr-fav-tab:focus-visible {
    background: #0d2e3c;
    padding-right: 1.75rem;
    outline: none;
    color: #fff;
}

.ctr-fav-tab__icon {
    width: 2rem;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.ctr-fav-tab__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ----- Favourites page ------------------------------------------------ */

.casatuscany-rentals--favourites .ctr-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.ctr-favourites__message {
    margin: 3rem 0;
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 5rem !important;
}

.ctr-favourites[data-state="loading"] .ctr-favourites__message--empty,
.ctr-favourites[data-state="empty"] .ctr-favourites__message--loading,
.ctr-favourites[data-state="ready"] .ctr-favourites__message--loading,
.ctr-favourites[data-state="ready"] .ctr-favourites__message--empty,
.ctr-favourites[data-state="error"] .ctr-favourites__message--loading,
.ctr-favourites[data-state="error"] .ctr-favourites__message--empty {
    display: none;
}

.ctr-favourites__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}


@media (min-width: 1200px) {
    .ctr-favourites__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Nearby properties on unit page */

.ctr-unit-nearby {
    margin-top: 4rem;
}

.ctr-unit-nearby__scroller {
    position: relative;
}

.ctr-unit-nearby__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ctr-unit-nearby__list::-webkit-scrollbar {
    display: none;
}

.ctr-unit-nearby__list .ctr-unit-card {
    flex: 0 0 auto;
    width: 30rem;
    scroll-snap-align: start;
}

.ctr-unit-nearby__list .ctr-unit-card__link {
    flex-direction: column;
}

.ctr-unit-nearby__list .ctr-unit-card__media {
    flex: none;
    aspect-ratio: 16 / 10;
    min-height: 0;
}

@media (min-width: 768px) {
    .ctr-unit-nearby__list .ctr-unit-card {
        width: 32rem;
    }
}

.ctr-unit-nearby__nav {
    position: absolute;
    top: 50%;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: solid 1px rgba(136, 86, 63, 0.25);
    border-radius: 50%;
    background-color: #ffffff;
    color: #4d4d4d;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.ctr-unit-nearby__nav[hidden] {
    display: none;
}

.ctr-unit-nearby__nav svg {
    width: 2rem;
    height: 2rem;
}

.ctr-unit-nearby__nav:hover,
.ctr-unit-nearby__nav:focus-visible {
    background-color: #f7efe2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.ctr-unit-nearby__nav--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.ctr-unit-nearby__nav--next {
    right: 0;
    transform: translate(50%, -50%);
}

.ctr-unit-nearby__nav--prev:hover,
.ctr-unit-nearby__nav--prev:focus-visible {
    transform: translate(-50%, -50%) scale(1.05);
}

.ctr-unit-nearby__nav--next:hover,
.ctr-unit-nearby__nav--next:focus-visible {
    transform: translate(50%, -50%) scale(1.05);
}
