@import url('https://fonts.googleapis.com/css2?family=Jura:wght@400;500;600;700&display=swap');

.altr-booking,
.altr-event-calendar {
    --altr-bg: #f0ede7;
    --altr-border: rgba(77, 57, 34, 0.38);
    --altr-text: #253243;
    --altr-olive: #66694a;
    --altr-rust: #b35a32;
    --altr-orange: #cd813f;
    background: var(--altr-bg);
    color: var(--altr-text);
    font-family: "Jura", sans-serif;
    letter-spacing: 0;
}

.altr-booking *,
.altr-event-calendar * {
    box-sizing: border-box;
    border-radius: 0 !important;
}

.altr-search-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 24px;
    border: 0.5px solid var(--altr-border);
    margin-bottom: 28px;
}

.altr-search-form label,
.altr-field {
    display: grid;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--altr-olive);
}

.altr-search-form input,
.altr-search-form select,
.altr-search-form button,
.altr-room-card button,
.altr-cart button,
.altr-event-card a {
    min-height: 46px;
    border: 0.5px solid var(--altr-border);
    background: transparent;
    color: var(--altr-text);
    font: inherit;
    padding: 11px 14px;
}

.altr-search-form button,
.altr-room-card button,
.altr-event-card a {
    background: var(--altr-text);
    color: var(--altr-bg);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.altr-booking-layout {
    display: grid;
    gap: 28px;
}

.altr-room-grid {
    display: grid;
    gap: 22px;
}

.altr-room-card {
    display: grid;
    border: 0.5px solid var(--altr-border);
    background: rgba(240, 237, 231, 0.74);
}

.altr-room-card img,
.altr-event-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: 0.5px solid var(--altr-border);
}

.altr-room-card__body {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.altr-room-card h3,
.altr-event-card h3,
.altr-cart h2 {
    margin: 0;
    color: var(--altr-text);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
}

.altr-room-card p,
.altr-cart p,
.altr-event-card p {
    margin: 0;
    line-height: 1.55;
}

.altr-room-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    margin: 0;
    padding-top: 14px;
    border-top: 0.5px solid var(--altr-border);
}

.altr-room-card dt {
    color: var(--altr-rust);
    font-weight: 700;
}

.altr-room-card dd {
    margin: 0;
}

.altr-chip,
.altr-badge {
    width: fit-content;
    border: 0.5px solid var(--altr-border);
    color: var(--altr-rust);
    padding: 5px 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.altr-rate-line,
.altr-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-top: 14px;
    border-top: 0.5px solid var(--altr-border);
}

.altr-rate-line strong,
.altr-cart-total strong {
    color: var(--altr-rust);
    white-space: nowrap;
}

.altr-events-strip {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.altr-event-inline,
.altr-event-card,
.altr-cart {
    border: 0.5px solid var(--altr-border);
    padding: 18px;
}

.altr-cart-shell {
    position: relative;
}

.altr-cart {
    background: var(--altr-bg);
}

.altr-cart__toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: var(--altr-text) !important;
    color: var(--altr-bg) !important;
}

.altr-cart__body {
    display: grid;
    gap: 16px;
    padding-top: 16px;
}

.altr-cart-item {
    display: grid;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 0.5px solid var(--altr-border);
}

.altr-cart-item button {
    width: fit-content;
    min-height: 34px;
    padding: 6px 10px;
}

.altr-cart-total--final {
    font-size: 18px;
}

.altr-recommendations,
.altr-next-dates {
    display: grid;
    gap: 8px;
    padding-top: 12px;
    border-top: 0.5px solid var(--altr-border);
}

.altr-event-list {
    display: grid;
    gap: 18px;
}

.altr-event-card {
    display: grid;
    gap: 18px;
}

.altr-event-card div {
    display: grid;
    gap: 12px;
}

.altr-event-card time {
    color: var(--altr-rust);
    font-weight: 700;
}

@media (min-width: 720px) {
    .altr-search-form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .altr-room-grid,
    .altr-event-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .altr-search-form {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        padding: 34px;
    }

    .altr-booking-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: start;
    }

    .altr-cart-shell {
        position: sticky;
        top: 32px;
    }

    .altr-cart__toggle {
        display: none;
    }

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

@media (max-width: 1023px) {
    .altr-cart-shell {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        padding: 10px;
        background: var(--altr-bg);
        border-top: 0.5px solid var(--altr-border);
    }

    .altr-cart__body {
        display: none;
        max-height: 70vh;
        overflow: auto;
    }

    .altr-cart.is-open .altr-cart__body {
        display: grid;
    }
}

@media (max-width: 520px) {
    .altr-search-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .altr-room-card__body {
        padding: 18px;
    }
}

.altr-events-notice {
    margin: 18px 0;
}

.altr-event-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.16);
    background: #fffaf0;
    color: #111;
}

.altr-event-alert span {
    font-weight: 600;
}

.altr-event-alert button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 9px 14px;
    cursor: pointer;
}

.altr-events-bottom {
    margin-top: 48px;
}

.altr-events-expanded {
    padding: 28px;
    border: 0.5px solid rgba(0, 0, 0, 0.14);
    background: #fffdf8;
}

.altr-events-expanded__head {
    margin-bottom: 22px;
}

.altr-events-expanded__head span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.altr-events-expanded__head h2 {
    margin: 0;
}

.altr-events-expanded__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.altr-event-card-expanded {
    border: 0.5px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    overflow: hidden;
}

.altr-event-card-expanded img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.altr-event-card-expanded__body {
    padding: 16px;
}

.altr-event-card-expanded__body h3 {
    margin: 8px 0;
}

.altr-event-card-expanded__body p {
    margin: 8px 0 0;
}

.altr-event-chip {
    display: inline-flex;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #555;
}

.altr-event-meta {
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px) {
    .altr-events-expanded__grid {
        grid-template-columns: 1fr;
    }

    .altr-event-alert {
        align-items: flex-start;
        flex-direction: column;
    }
}

.altr-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.altr-room-card {
    overflow: hidden;
}

.altr-room-gallery {
    width: 100%;
}

.altr-room-gallery__main {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.altr-room-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
}

.altr-room-gallery__thumb {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.66;
}

.altr-room-gallery__thumb.is-active,
.altr-room-gallery__thumb:hover {
    opacity: 1;
}

.altr-room-gallery__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.altr-room-description {
    margin-bottom: 6px;
}

.altr-desc-toggle {
    border: 0;
    padding: 0;
    background: transparent;
    color: currentColor;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.altr-desc-toggle--inline {
    display: inline;
    margin-left: 4px;
    color: #ff7518;
}

.altr-search-form {
    align-items: end;
}

.altr-mobile-choices {
    display: none;
}

@media (max-width: 1024px) {
    .altr-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .altr-search-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .altr-search-form button[type="submit"] {
        grid-column: 1 / -1;
    }

    .altr-room-grid {
        grid-template-columns: 1fr;
    }

    .altr-room-gallery__thumbs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 8px 10px;
        scroll-snap-type: x mandatory;
    }

    .altr-room-gallery__thumb {
        min-width: 62px;
        scroll-snap-align: start;
    }

    .altr-mobile-choices {
        position: fixed;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%) translateY(20px);
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .altr-mobile-choices.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .altr-mobile-choices button {
        border: 1px solid rgba(0, 0, 0, 0.18);
        background: #111;
        color: #fff;
        padding: 10px 14px;
        font-size: 13px;
        line-height: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .altr-mobile-choices [data-altr-mobile-choice-close] {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 999px;
    }
}

.altr-room-description {
    margin: 0 0 12px;
}

.altr-desc-toggle,
.altr-desc-toggle--inline {
    display: inline;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0 0 0 4px;
    background: none;
    box-shadow: none;
    font: inherit;
    line-height: inherit;
    color: #ff7518;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.altr-desc-toggle:hover,
.altr-desc-toggle:focus {
    color: #111;
    outline: none;
}

.altr-room-grid {
    align-items: start;
}

.altr-room-card {
    align-self: start;
}

.altr-room-card.is-unavailable .altr-room-gallery,
.altr-room-card.is-unavailable > img,
.altr-room-card.is-unavailable h3,
.altr-room-card.is-unavailable .altr-room-description,
.altr-room-card.is-unavailable .altr-room-amenities,
.altr-room-card.is-unavailable .altr-rate-line {
    opacity: 0.45;
    filter: grayscale(1);
}

.altr-room-card.is-unavailable .altr-next-dates,
.altr-room-card.is-unavailable .altr-recommendations {
    opacity: 1;
    filter: none;
}

.altr-next-dates {
    margin-top: 16px;
}

.altr-next-dates > button[data-altr-load-next-dates],
.altr-find-next-date {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #111;
    color: #fff;
    padding: 12px 14px;
    cursor: pointer;
}

.altr-next-dates-output {
    margin-top: 12px;
}

.altr-next-dates-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.altr-next-dates-carousel::-webkit-scrollbar {
    height: 6px;
}

.altr-next-dates-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.24);
}

.altr-next-dates-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 3);
    gap: 12px;
}

.altr-next-date-card {
    scroll-snap-align: start;
    min-height: 150px;
    padding: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.18);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.altr-next-date-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.altr-next-date-card strong {
    font-size: 15px;
}

.altr-next-date-status {
    font-size: 13px;
    color: #555;
}

.altr-next-date-card em {
    font-style: normal;
    font-weight: 700;
}

.altr-next-date-card button {
    margin-top: auto;
    border: 0;
    background: #ff7518;
    color: #111;
    padding: 9px 10px;
    cursor: pointer;
}

.altr-next-date-card.is-sold-out {
    opacity: 0.55;
    background: #f7f7f7;
}

.altr-next-date-card.is-sold-out button {
    display: none;
}

@media (max-width: 767px) {
    .altr-next-dates-track {
        grid-auto-columns: 78%;
    }

    .altr-next-date-card {
        min-height: 145px;
    }
}

.altr-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.altr-room-amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 0.5px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1;
}

.altr-room-amenity i {
    font-size: 13px;
    color: #ff7518;
}
.altr-next-dates-carousel-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 8px;
}

.altr-next-dates-arrow {
    width: 32px;
    height: 32px;
    border: 0.5px solid rgba(0, 0, 0, 0.18);
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.altr-next-dates-arrow:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    .altr-next-dates-carousel-wrap {
        grid-template-columns: 28px minmax(0, 1fr) 28px;
        gap: 6px;
    }

    .altr-next-dates-arrow {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}