:root {
    color-scheme: light;
    --blue: #0878d1;
    --blue-dark: #0668b6;
    --green: #168a5a;
    --green-dark: #117047;
    --border: #d7dce2;
    --ink: #252b31;
    --muted: #63717e;
    --panel: #f7f9fb;
    --danger: #c93d3d;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: #f4f6f8;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background: #f4f6f8;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

button,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(8, 120, 209, 0.34);
    outline-offset: 2px;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.52;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.app-view[hidden] {
    display: none !important;
}

.page-shell {
    min-height: 100vh;
    padding: 27px 16px 58px;
}

.booking-frame {
    width: min(970px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.04);
}

.app-toolbar {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.booking-frame[data-view="detail"] .app-toolbar,
.booking-frame[data-view="dateSearch"] .app-toolbar,
.booking-frame[data-view="planner"] .app-toolbar {
    border-bottom-color: transparent;
}

.language-button,
.cart-button,
.date-search-picker,
.date-search-submit,
.select-button,
.primary-button,
.home-button,
.back-button,
.keep-shopping,
.text-button,
.month-controls button,
.calendar-day,
.recommendation-card button,
.cart-action {
    border: 0;
    cursor: pointer;
}

.language-button {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    padding: 7px 2px;
    color: #313a43;
    background: transparent;
}

.globe {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border: 1.5px solid #4c5660;
    border-radius: 50%;
}

.globe::before {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 4px;
    width: 4px;
    border-right: 1px solid #4c5660;
    border-left: 1px solid #4c5660;
    border-radius: 50%;
    content: "";
}

.globe::after {
    position: absolute;
    top: 6px;
    right: 1px;
    left: 1px;
    border-top: 1px solid #4c5660;
    content: "";
}

.chevron,
.cart-chevron {
    width: 0;
    height: 0;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-control {
    position: relative;
}

.cart-button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    color: #fff;
    background: var(--blue);
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.cart-button[aria-expanded="true"] .cart-chevron {
    transform: rotate(180deg);
}

.cart-popover {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    right: -10px;
    width: 355px;
    max-width: calc(100vw - 32px);
    padding: 0 15px;
    color: #303942;
    background: #fff;
    border: 1px solid #d6dce2;
    border-radius: 5px;
    box-shadow: 0 7px 24px rgba(25, 36, 47, 0.3);
}

.cart-popover[hidden] {
    display: none;
}

.cart-popover::before,
.cart-popover::after {
    position: absolute;
    right: 20px;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    content: "";
}

.cart-popover::before {
    z-index: 2;
    top: -8px;
    border-bottom: 8px solid #fff;
}

.cart-popover::after {
    z-index: 1;
    top: -9px;
    border-right-width: 9px;
    border-bottom: 9px solid #cdd4db;
    border-left-width: 9px;
}

.cart-popover-total {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #607080;
    font-size: 12px;
}

.cart-popover-total strong {
    flex: 0 0 auto;
    color: #252b31;
    font-size: 17px;
}

.cart-checkout {
    width: 100%;
    min-height: 34px;
    margin: 0 0 14px;
    padding: 8px 14px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.cart-checkout:hover {
    background: var(--blue-dark);
}

.cart-popover-items {
    max-height: 336px;
    overflow-y: auto;
    border-top: 1px solid #dfe4e9;
}

.cart-popover-item {
    display: grid;
    width: 100%;
    grid-template-columns: 64px minmax(0, 1fr) 9px;
    align-items: start;
    gap: 10px;
    padding: 14px 0;
    color: #303942;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #dfe4e9;
    cursor: pointer;
    text-align: left;
}

.cart-popover-item:last-child {
    border-bottom: 0;
}

.cart-popover-item:hover {
    background: #f8fafc;
}

.cart-popover-item img {
    display: block;
    width: 64px;
    height: 70px;
    object-fit: cover;
}

.cart-popover-copy {
    display: block;
    min-width: 0;
}

.cart-popover-title,
.cart-popover-date,
.cart-popover-slot,
.cart-popover-quantity,
.cart-popover-amount {
    display: block;
}

.cart-popover-title {
    margin-bottom: 2px;
    overflow-wrap: anywhere;
    color: #252b31;
    font-size: 15px;
    line-height: 1.25;
}

.cart-popover-date {
    margin-bottom: 3px;
    color: #687684;
    font-size: 12px;
}

.cart-popover-slot {
    margin-bottom: 3px;
    color: var(--blue);
    font-size: 11px;
    line-height: 1.25;
}

.cart-popover-slot.needs-selection,
.cart-item .cart-item-slot.needs-selection {
    color: #b24a00;
}

.cart-popover-quantity {
    color: #303942;
    font-size: 12px;
    line-height: 1.35;
}

.cart-popover-amount {
    margin-top: 3px;
    color: #71808e;
    font-size: 12px;
}

.cart-popover-arrow {
    align-self: center;
    color: #48545f;
    font-size: 22px;
    line-height: 1;
}

.cart-button:hover,
.select-button:hover,
.primary-button:hover,
.recommendation-card button:hover {
    background: var(--blue-dark);
}

.cart-icon {
    position: relative;
    width: 17px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: 0;
    transform: skew(-7deg);
}

.cart-icon::before {
    position: absolute;
    top: -5px;
    left: -4px;
    width: 5px;
    height: 5px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    content: "";
}

.cart-icon::after {
    position: absolute;
    bottom: -6px;
    left: 1px;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 9px 0 0 currentColor;
    content: "";
}

.close-button {
    display: grid;
    width: 25px;
    height: 33px;
    place-items: center;
    color: #313a43;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.close-button:hover {
    color: #000;
}

.toolbar-message {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.brand-row {
    display: flex;
    min-height: 122px;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 17px 27px 20px 39px;
    border-bottom: 1px solid var(--border);
}

.museum-logo {
    display: block;
    width: min(320px, 42%);
    height: auto;
}

.date-search-control {
    position: relative;
    width: 245px;
    min-width: 215px;
}

.date-search {
    display: grid;
    width: 100%;
    min-height: 40px;
    grid-template-columns: minmax(0, 1fr) 43px;
    align-items: center;
    padding: 0;
    overflow: hidden;
    color: var(--blue);
    background: #fff;
    border: 1px solid #cbd3dc;
    border-radius: 5px;
    box-shadow: 0 3px 12px rgba(24, 39, 55, 0.16);
    text-align: left;
    font-size: 15px;
}

.date-search:hover {
    border-color: #8aa9c5;
}

.date-search-picker {
    display: grid;
    min-width: 0;
    min-height: 40px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 0;
    color: var(--blue);
    background: #fff;
    text-align: left;
}

.date-search-picker:hover,
.date-search-picker[aria-expanded="true"] {
    background: #f4f9fd;
}

.date-search-submit {
    display: grid;
    width: 43px;
    height: 40px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: var(--blue);
}

.date-search-submit:hover {
    background: var(--blue-dark);
}

.calendar-icon {
    position: relative;
    width: 18px;
    height: 17px;
    justify-self: center;
    border: 2px solid var(--blue);
    border-radius: 2px;
}

.calendar-icon::before {
    position: absolute;
    top: 3px;
    right: 0;
    left: 0;
    border-top: 2px solid var(--blue);
    content: "";
}

.calendar-icon::after {
    position: absolute;
    top: -4px;
    left: 3px;
    width: 2px;
    height: 5px;
    background: var(--blue);
    box-shadow: 7px 0 0 var(--blue);
    content: "";
}

.search-icon {
    position: relative;
    display: block;
    width: 43px;
    height: 40px;
    background: transparent;
}

.search-icon::before {
    position: absolute;
    top: 10px;
    left: 13px;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
}

.search-icon::after {
    position: absolute;
    top: 23px;
    left: 25px;
    width: 8px;
    height: 2px;
    background: #fff;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.quick-date-popover {
    position: absolute;
    z-index: 35;
    top: calc(100% + 8px);
    right: 0;
    width: 310px;
    max-width: calc(100vw - 30px);
    padding: 17px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #ccd4dc;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(24, 39, 55, 0.24);
}

.quick-date-popover[hidden] {
    display: none;
}

.quick-date-popover::before {
    position: absolute;
    top: -8px;
    right: 70px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-top: 1px solid #ccd4dc;
    border-left: 1px solid #ccd4dc;
    content: "";
    transform: rotate(45deg);
}

.quick-date-month-controls {
    position: relative;
    z-index: 1;
}

.quick-date-calendar-grid .calendar-day {
    min-height: 34px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 17px 14px 14px;
}

.catalog-card {
    position: relative;
    min-height: 174px;
    overflow: hidden;
    isolation: isolate;
    background: #303943;
    border-radius: 7px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.catalog-card.is-highlighted {
    box-shadow: 0 0 0 4px rgba(8, 120, 209, 0.42), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.catalog-card > img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.catalog-card:hover > img {
    transform: scale(1.025);
}

.card-shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 8, 12, 0.02) 14%, rgba(4, 8, 12, 0.22) 47%, rgba(4, 8, 12, 0.9) 100%);
}

.card-copy {
    position: absolute;
    right: 108px;
    bottom: 13px;
    left: 12px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.78);
}

.card-copy h2 {
    margin: 0 0 2px;
    font-size: 18px;
    line-height: 1.12;
}

.card-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.24;
}

.select-button {
    position: absolute;
    right: 12px;
    bottom: 11px;
    min-width: 91px;
    min-height: 35px;
    padding: 8px 12px;
    color: #fff;
    background: var(--blue);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    font-weight: 700;
}

.catalog-footer {
    padding: 7px 18px 20px;
    color: #66727e;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
}

.catalog-footer p {
    margin: 7px 0;
}

.fareharbor-mark {
    color: #8b949e;
    letter-spacing: 0.01em;
}

.subnav,
.planner-subnav {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 35px;
    border-bottom: 1px solid var(--border);
}

.detail-view .subnav,
.date-search-view .subnav {
    min-height: 42px;
    padding: 3px 29px;
}

.home-button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--blue);
    background: transparent;
    border-radius: 5px;
    font-size: 20px;
}

.home-button:hover {
    background: #eef6fc;
}

.home-glyph {
    position: relative;
    display: block;
    width: 12px;
    height: 8px;
    margin-top: 4px;
    background: currentColor;
    border-radius: 1px 1px 2px 2px;
}

.home-glyph::before {
    position: absolute;
    top: -4px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 1px;
    content: "";
    transform: rotate(45deg);
}

.home-glyph::after {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 5px;
    width: 3px;
    height: 5px;
    background: #fff;
    content: "";
}

.detail-layout,
.planner-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(275px, 1fr);
}

.item-information {
    min-width: 0;
    padding: 33px 40px 38px;
}

.item-information > h2 {
    margin: 0 0 5px;
    font-size: 28px;
    line-height: 1.15;
}

.item-subtitle {
    margin: 0 0 15px;
    color: #4e5963;
}

.rating-block {
    display: grid;
    width: fit-content;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 3px 8px;
    margin-bottom: 21px;
    color: #798691;
    font-size: 12px;
}

.rating-block strong,
.compact-rating strong {
    color: #788691;
    font-size: 11px;
}

.rating-block small {
    grid-column: 1 / -1;
}

.rating-symbol {
    color: #1f2a32;
    font-size: 18px;
}

.rating-dots {
    display: inline-flex;
    gap: 2px;
}

.rating-dots i {
    display: block;
    width: 11px;
    height: 11px;
    background: #08ad79;
    border-radius: 50%;
}

.detail-image {
    display: block;
    width: min(100%, 500px);
    max-height: 390px;
    margin: 0 auto 28px;
    object-fit: cover;
}

.info-section {
    padding: 18px 0 20px;
    border-bottom: 1px solid var(--border);
}

.info-section h3 {
    margin: 0;
    font-size: 17px;
}

.accordion-toggle {
    display: flex;
    width: 100%;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
}

.accordion-toggle:hover {
    color: var(--blue);
}

.accordion-chevron {
    display: block;
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    margin-right: 3px;
    border-right: 1.5px solid #61717f;
    border-bottom: 1.5px solid #61717f;
    transform: rotate(45deg);
    transition: transform 150ms ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-chevron {
    transform: rotate(225deg);
}

.accordion-content {
    padding-top: 21px;
}

.accordion-content[hidden] {
    display: none;
}

.cancellations-content p {
    margin: 0;
    color: #343b42;
    line-height: 1.55;
}

.meeting-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.meeting-point strong {
    display: block;
    margin-bottom: 4px;
}

.meeting-point p {
    margin: 0;
    color: #6a7681;
    font-size: 12px;
}

.pin-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 22px;
    margin: 2px 2px 0;
    border: 3px solid #4e5963;
    border-radius: 12px 12px 14px 14px;
}

.pin-icon::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 4px;
    height: 4px;
    background: #4e5963;
    border-radius: 50%;
    content: "";
}

.details-content {
    color: #343b42;
    line-height: 1.52;
}

.details-content .detail-subheading {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
}

.details-content .detail-paragraph {
    margin: 0 0 18px;
}

.details-content .detail-fact {
    margin: 0 0 12px;
}

.details-content .detail-fact strong {
    color: var(--ink);
}

.details-content .detail-list {
    margin: 2px 0 20px;
    padding-left: 21px;
}

.details-content .detail-list li {
    margin-bottom: 7px;
    padding-left: 2px;
}

.details-content .detail-notice {
    margin-top: 22px;
    padding: 17px 0 2px;
    border-top: 1px solid var(--border);
}

.details-content .detail-notice strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
}

.details-content .detail-notice p {
    margin: 0;
    color: #4f5963;
    font-style: italic;
}

.calendar-panel,
.order-summary {
    min-width: 0;
    padding: 33px 25px;
    background: #fbfcfd;
    border-left: 1px solid var(--border);
}

.month-controls {
    display: grid;
    grid-template-columns: 1fr 36px 36px;
    align-items: center;
    gap: 4px;
    margin-bottom: 9px;
    border-bottom: 1px solid #cfd6dd;
}

.month-controls h3 {
    margin: 0;
    font-size: 16px;
}

.month-controls h3 span:last-child {
    color: #6d7985;
    font-size: 14px;
}

.month-controls button {
    height: 37px;
    color: #303a43;
    background: transparent;
    font-size: 28px;
}

.month-controls button:hover {
    color: var(--blue);
}

.weekday-grid,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
}

.weekday-grid {
    margin-bottom: 4px;
    color: #4d5862;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.weekday-grid span {
    padding: 4px 0;
}

.calendar-day {
    display: grid;
    min-width: 0;
    min-height: 39px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: var(--green);
    border-radius: 2px;
    font-weight: 700;
}

.calendar-day:hover:not(:disabled) {
    background: var(--green-dark);
}

.calendar-day.outside-month {
    background: #288f68;
    opacity: 0.78;
}

.calendar-day:disabled {
    color: #929da7;
    background: transparent;
    opacity: 1;
}

.calendar-day.is-today {
    color: #fff;
    background: #6e7378;
}

.calendar-day[aria-selected="true"] {
    box-shadow: inset 0 0 0 3px #173d5e;
}

.calendar-help {
    margin: 10px 0 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.time-slot-panel {
    margin-top: 12px;
    padding-top: 13px;
    border-top: 1px solid #cfd6dd;
}

.time-slot-panel[hidden] {
    display: none;
}

.time-slot-panel h4 {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
}

.time-slot-list {
    display: grid;
    gap: 5px;
}

.time-slot-card {
    display: grid;
    min-height: 48px;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 8px;
    padding: 7px 9px 7px 11px;
    color: #252b31;
    background: #fff;
    border: 1px solid var(--blue);
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.time-slot-card:hover,
.time-slot-card:focus-visible {
    background: #f4f9fd;
    border-color: var(--blue-dark);
}

.time-slot-card[aria-pressed="true"] {
    background: #eaf5fd;
    box-shadow: inset 0 0 0 1px var(--blue-dark);
}

.time-slot-copy,
.time-slot-primary,
.time-slot-subtitle {
    display: block;
    min-width: 0;
}

.time-slot-primary {
    line-height: 1.18;
}

.time-slot-time {
    margin-right: 4px;
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

.time-slot-title {
    font-size: 12px;
    line-height: 1.18;
}

.time-slot-subtitle {
    margin-top: 2px;
    color: #66737f;
    font-size: 11px;
    line-height: 1.2;
}

.time-slot-chevron {
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

.date-search-layout {
    display: grid;
    grid-template-columns: minmax(285px, 315px) minmax(0, 1fr);
}

.date-search-subnav {
    justify-content: flex-start;
}

.date-search-calendar-panel {
    min-width: 0;
    padding: 29px 25px 34px;
    background: #fbfcfd;
    border-right: 1px solid var(--border);
}

.date-search-calendar-panel > h2 {
    margin: 0 0 21px;
    font-size: 21px;
}

.date-search-calendar-grid .calendar-day[aria-selected="true"] {
    background: #6e7378;
    box-shadow: inset 0 0 0 3px #173d5e;
}

.date-search-results {
    min-width: 0;
    padding: 25px 30px 36px;
}

.date-search-results-header {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.date-search-results-header h2 {
    margin: 0;
    text-align: center;
    font-size: 19px;
}

.date-search-results-header button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #303a43;
    background: transparent;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 28px;
}

.date-search-results-header button:hover:not(:disabled) {
    color: var(--blue);
    background: #eef6fc;
}

.date-search-results-list {
    display: grid;
    gap: 14px;
}

.date-result-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
    padding: 14px;
    background: #fff;
    border: 1px solid #d7dde3;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(31, 43, 55, 0.05);
}

.date-result-card > img {
    display: block;
    width: 112px;
    height: 104px;
    object-fit: cover;
    border-radius: 3px;
}

.date-result-copy {
    min-width: 0;
}

.date-result-copy h3 {
    margin: 0 0 3px;
    font-size: 18px;
}

.date-result-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.date-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.date-result-availability,
.date-result-details-button {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.date-result-availability {
    color: #fff;
    background: var(--blue);
    border: 1px solid var(--blue);
}

.date-result-availability:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.date-result-details-button {
    color: #3d4b57;
    background: #fff;
    border: 1px solid #c8d0d8;
}

.date-result-details-button:hover {
    color: var(--blue);
    border-color: #89a9c6;
}

.date-result-details {
    grid-column: 1 / -1;
    margin: 0;
    padding: 13px 2px 2px;
    color: #4b5660;
    border-top: 1px solid #e0e5ea;
    line-height: 1.55;
}

.date-result-details[hidden] {
    display: none;
}

.date-search-empty {
    margin: 0;
    padding: 24px;
    color: var(--muted);
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 5px;
    text-align: center;
}

.planner-subnav {
    color: #697681;
    font-size: 12px;
}

.back-button {
    padding: 8px 0;
    color: #343d45;
    background: transparent;
}

.back-button:hover,
.text-button:hover,
.cart-action:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.selected-item-header {
    display: grid;
    min-height: 145px;
    grid-template-columns: 90px minmax(0, 1fr) 230px;
    align-items: center;
    gap: 18px;
    padding: 25px 39px;
    border-bottom: 1px solid var(--border);
}

.selected-item-header > img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 3px;
}

.selected-item-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.selected-item-header p {
    margin: 0;
    color: #58646f;
}

.selected-item-header .planner-time {
    margin-top: 3px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.compact-rating {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: end;
    gap: 5px 8px;
    color: #77848f;
    text-align: right;
}

.compact-rating small {
    grid-column: 1 / -1;
    font-size: 10px;
}

.ticket-planner {
    min-width: 0;
    padding: 30px 40px 38px;
}

.ticket-planner > h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.member-note {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 12px;
}

.ticket-rows {
    display: grid;
    gap: 5px;
}

.ticket-row {
    display: grid;
    min-height: 42px;
    grid-template-columns: 65px minmax(0, 1fr) auto;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
    border: 1px solid #9daab7;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(26, 38, 50, 0.09);
}

.ticket-row select {
    width: 65px;
    padding: 0 8px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 0;
    font-weight: 700;
}

.ticket-name {
    align-self: center;
    padding: 6px 13px;
    line-height: 1.15;
}

.ticket-name small {
    display: block;
    color: #687580;
    font-size: 11px;
}

.ticket-price {
    align-self: center;
    padding: 7px 13px;
    white-space: nowrap;
    font-weight: 700;
}

.selected-tickets {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.selected-ticket {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(31, 44, 55, 0.18);
}

.selected-ticket strong {
    font-size: 15px;
}

.selected-ticket button {
    color: #6f7b86;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 21px;
}

.order-summary {
    align-self: stretch;
    padding-top: 49px;
}

.order-summary dl,
.cart-total-panel dl {
    margin: 0 0 18px;
}

.order-summary dl div,
.cart-total-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.order-summary dt,
.cart-total-panel dt {
    color: #697681;
}

.order-summary dd,
.cart-total-panel dd {
    margin: 0;
    white-space: nowrap;
}

.order-summary .total-row,
.cart-total-panel .total-row {
    align-items: end;
    margin-top: 9px;
    color: #30383f;
    font-size: 17px;
    font-weight: 700;
}

.order-summary .total-row dt,
.cart-total-panel .total-row dt {
    color: #30383f;
}

.fees-note {
    margin: -14px 0 21px;
    color: #4f5a64;
    font-size: 11px;
}

.primary-button {
    width: 100%;
    min-height: 46px;
    padding: 10px 15px;
    color: #fff;
    background: var(--blue);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
}

.price-unavailable {
    margin: 13px 0 0;
    color: #66737f;
    font-size: 12px;
    line-height: 1.4;
}

.cart-heading {
    display: flex;
    min-height: 140px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 27px 39px;
    border-bottom: 1px solid var(--border);
}

.cart-heading h2 {
    margin: 0 0 2px;
    font-size: 27px;
}

.cart-heading p {
    margin: 0;
    color: #7a8792;
}

.keep-shopping {
    display: inline-flex;
    min-height: 34px;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    color: #3c464f;
    background: #fff;
    border: 1px solid #b9c3cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(29, 42, 53, 0.15);
}

.keep-shopping:hover {
    background: #f8fafc;
}

.keep-shopping-home {
    position: relative;
    display: block;
    width: 38px;
    flex: 0 0 38px;
    border-right: 1px solid #d2d8de;
}

.keep-shopping-home::before {
    position: absolute;
    top: 13px;
    left: 14px;
    width: 8px;
    height: 7px;
    border: 2px solid #35414b;
    border-top: 0;
    border-radius: 1px;
    content: "";
}

.keep-shopping-home::after {
    position: absolute;
    top: 9px;
    left: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #35414b;
    border-left: 2px solid #35414b;
    content: "";
    transform: rotate(45deg);
}

.keep-shopping-label {
    display: grid;
    place-items: center;
    padding: 8px 13px;
    white-space: nowrap;
}

.cart-items {
    display: grid;
    gap: 0;
    padding: 32px 44px 18px;
}

.cart-empty {
    padding: 35px 15px;
    color: #6b7782;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) minmax(150px, auto) auto;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e0e5ea;
}

.cart-item > img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}

.cart-item h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.cart-item p {
    margin: 3px 0;
    color: #5f6b76;
    font-size: 12px;
}

.cart-item .cart-item-slot {
    color: var(--blue);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    gap: 8px;
}

.cart-action,
.text-button {
    padding: 3px 0;
    color: var(--blue);
    background: transparent;
    font-size: 12px;
}

.cart-item-summary {
    color: #4b5761;
    text-align: right;
    font-size: 12px;
}

.cart-item-amount {
    min-width: 75px;
    text-align: right;
    font-size: 16px;
}

.recommendations {
    display: grid;
    grid-auto-columns: minmax(235px, 1fr);
    grid-auto-flow: column;
    gap: 10px;
    margin: 7px 44px 31px;
    padding: 10px;
    overflow-x: auto;
    border: 1px solid #cbd4dc;
    border-radius: 6px;
    scroll-snap-type: x mandatory;
}

.recommendation-card {
    position: relative;
    min-height: 126px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    border-radius: 5px;
    scroll-snap-align: start;
}

.recommendation-card > img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendation-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
    content: "";
}

.recommendation-card div {
    position: absolute;
    right: 92px;
    bottom: 12px;
    left: 12px;
    text-shadow: 0 1px 2px #000;
}

.recommendation-card h3,
.recommendation-card p {
    margin: 0 0 3px;
}

.recommendation-card p {
    font-size: 11px;
}

.recommendation-card button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
    color: #fff;
    background: var(--blue);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.cart-total-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 19px 44px;
    background: #f6f8fa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cart-total-panel dl {
    width: 245px;
    margin: 0;
}

.secure-booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px 24px;
    margin: 28px 44px 42px;
    padding: 20px 22px;
    color: #34414b;
    background: #f7f9fb;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.secure-booking-copy h3,
.secure-booking-copy p {
    margin: 0;
}

.secure-booking-copy h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.secure-booking-copy p {
    color: var(--muted);
    line-height: 1.45;
}

.secure-booking-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    color: #fff;
    background: var(--blue);
    border: 1px solid #0069bd;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(18, 38, 57, 0.2);
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.secure-booking-button:hover:not(:disabled) {
    background: var(--blue-dark);
    border-color: #075b9e;
    box-shadow: 0 2px 4px rgba(18, 38, 57, 0.24);
}

.secure-booking-button:active:not(:disabled) {
    box-shadow: inset 0 1px 2px rgba(18, 38, 57, 0.28);
}

.secure-booking-button:disabled {
    color: #747d85;
    background: #e2e6ea;
    border-color: #d2d8de;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.button-lock {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 11px;
    flex: 0 0 14px;
    border: 2px solid currentColor;
    border-radius: 2px;
    transform: translateY(2px);
}

.button-lock::before {
    position: absolute;
    top: -9px;
    left: 2px;
    width: 6px;
    height: 7px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    content: "";
}

.booking-confirmation {
    grid-column: 1 / -1;
    margin: 0;
    padding: 11px 13px;
    color: var(--green-dark);
    background: #edf7f3;
    border: 1px solid #b9ddce;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1.4;
}

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

@media (max-width: 760px) {
    .page-shell {
        padding: 0;
    }

    .booking-frame {
        border: 0;
        border-radius: 0;
    }

    .brand-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 17px 22px 22px;
    }

    .museum-logo {
        width: min(310px, 92%);
        align-self: center;
    }

    .date-search-control,
    .date-search {
        width: 100%;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .detail-layout,
    .planner-layout,
    .date-search-layout {
        grid-template-columns: 1fr;
    }

    .date-search-calendar-panel {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .calendar-panel,
    .order-summary {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .selected-item-header {
        grid-template-columns: 75px 1fr;
        padding: 20px 25px;
    }

    .compact-rating {
        display: none;
    }

    .cart-heading {
        min-height: 122px;
        padding: 24px;
    }

    .cart-items {
        padding-right: 24px;
        padding-left: 24px;
    }

    .cart-item {
        grid-template-columns: 70px minmax(0, 1fr) auto;
    }

    .cart-item-summary {
        grid-column: 2 / 3;
        text-align: left;
    }

    .cart-item-amount {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .recommendations,
    .secure-booking-panel {
        margin-right: 24px;
        margin-left: 24px;
    }

    .cart-total-panel {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 470px) {
    .app-toolbar {
        gap: 2px 8px;
        padding-right: 12px;
        padding-left: 14px;
    }

    .toolbar-actions {
        gap: 7px;
    }

    .language-button span:nth-child(2) {
        max-width: 24px;
        overflow: hidden;
        white-space: nowrap;
    }

    .cart-button {
        padding-right: 8px;
        padding-left: 8px;
    }

    .cart-popover {
        position: fixed;
        top: 59px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }

    .cart-popover::before,
    .cart-popover::after {
        right: 42px;
    }

    .cart-popover-items {
        max-height: calc(100vh - 190px);
    }

    .catalog-card {
        min-height: 205px;
    }

    .card-copy {
        right: 12px;
        bottom: 56px;
    }

    .subnav,
    .planner-subnav {
        padding-right: 18px;
        padding-left: 18px;
    }

    .planner-subnav span {
        display: none;
    }

    .item-information,
    .ticket-planner,
    .calendar-panel,
    .order-summary {
        padding: 24px 18px;
    }

    .item-information > h2 {
        font-size: 24px;
    }

    .calendar-day {
        min-height: 36px;
    }

    .date-search-results {
        padding: 22px 18px 30px;
    }

    .date-search-results-header h2 {
        font-size: 16px;
    }

    .date-result-card {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .date-result-card > img {
        width: 82px;
        height: 82px;
    }

    .ticket-row {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .ticket-row select {
        width: 62px;
        grid-row: 1 / span 2;
    }

    .ticket-price {
        padding-top: 0;
        font-size: 12px;
    }

    .selected-ticket {
        grid-template-columns: 1fr auto;
    }

    .selected-ticket span:nth-child(2) {
        grid-column: 1;
    }

    .cart-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
    }

    .cart-item > img {
        width: 58px;
        height: 58px;
    }

    .cart-item-summary,
    .cart-item-amount {
        grid-column: 2;
        grid-row: auto;
        text-align: left;
    }

    .cart-total-panel {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .cart-total-panel dl {
        width: 100%;
    }

    .secure-booking-panel {
        grid-template-columns: 1fr;
        margin-bottom: 26px;
        padding: 18px;
    }

    .secure-booking-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
