.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.booking-modal__dialog {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 725px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 48px 56px 28px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s;
    box-sizing: border-box;
}

.booking-modal.is-open .booking-modal__dialog {
    transform: translateY(0);
}

.booking-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #4C6C91;
    transition: color 0.2s;
    font-size: 30px;
    line-height: 1;
}

.booking-modal__close:hover {
    color: #363D72;
}

.booking-popup__header {
    text-align: center;
    margin-bottom: 28px;
}

.booking-popup__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 126%;
    color: #0499B5;
    margin: 0 0 10px;
}

.booking-popup__subtitle {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    color: #363D72;
    margin: 0;
}

.booking-popup__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-popup__row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-popup__row .booking-popup__label {
    flex: 0 0 96px;
}

.booking-popup__field-grow {
    flex: 1;
    min-width: 0;
}

.booking-popup__double {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-popup__label {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4C6C91;
}

.booking-popup__input,
.booking-popup__textarea,
.booking-popup__field-grow input[type="text"],
.booking-popup__field-grow input[type="email"],
.booking-popup__field-grow input[type="tel"],
.booking-popup__field-grow input[type="number"],
.booking-popup__double input[type="text"],
.booking-popup__double input[type="email"],
.booking-popup__double input[type="tel"],
.booking-popup__col-count input[type="text"],
.booking-popup__col-count input[type="number"] {
    height: 46px;
    padding: 0 16px;
    border: 1.5px solid #9ad9e6;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #4C6C91;
    background: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.booking-popup__input:focus,
.booking-popup__textarea:focus,
.booking-popup__field-grow input:focus,
.booking-popup__double input:focus,
.booking-popup__col-count input:focus {
    border-color: #0499B5;
}

.booking-popup__textarea {
    height: 100px;
    padding: 12px 16px;
    resize: none;
}

.booking-popup__agree {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4C6C91;
    padding-left: 112px;
}

.booking-popup__agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #0499B5;
    cursor: pointer;
    margin: 0;
}

.booking-popup__agree label {
    cursor: pointer;
    line-height: 1.4;
}

.booking-popup__link {
    color: #0499B5;
    text-decoration: underline;
}

.booking-popup__two-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-popup__col-date {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.booking-popup__col-date .booking-popup__label {
    flex: 0 0 auto;
    white-space: nowrap;
}

.booking-popup__col-count {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.booking-popup__col-count .booking-popup__label {
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.2;
}

.booking-popup__input--count {
    width: 80px !important;
    flex: 0 0 80px;
}

.booking-popup__full-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-popup__full-row .booking-popup__label {
    flex: 0 0 160px;
    white-space: nowrap;
}

.booking-popup__comment-block {
    display: block;
}

.booking-popup__comment-label {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4C6C91;
    margin-bottom: 8px;
    display: block;
}

.booking-popup__comment-block textarea {
    width: 100%;
    min-height: 155px;
    padding: 12px 16px;
    border: 1.5px solid #9ad9e6;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #4C6C91;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
}

.booking-popup__comment-block textarea:focus {
    border-color: #0499B5;
}

.booking-popup__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.booking-popup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 347px;
    padding: 0 26px;
    background: #0499B5;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
}

.booking-popup__submit:hover {
    background: #037d96;
}

.booking-popup__success {
    display: none;
    text-align: center;
    padding: 60px 40px 40px;
    color: #363D72;
}

.booking-popup__success-title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 126%;
    color: #0499B5;
    margin: 0 0 16px;
}

.booking-popup__success-text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    color: #363D72;
    margin: 0 0 36px;
}

.booking-popup__hidden-meta,
.booking-popup__meta-inline {
    display: none;
}

.booking-popup__privacy {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4C6C91;
}

.booking-popup__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0499B5;
    margin-right: 8px;
    vertical-align: middle;
}

.booking-popup__privacy label {
    line-height: 1.4;
}

.booking-popup__privacy a {
    color: #0499B5;
    text-decoration: underline;
}

.booking-popup__captcha {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-popup__captcha-image {
    margin-bottom: 4px;
}

.booking-popup__req {
    color: #e05252;
    margin-left: 2px;
}

.booking-popup__error-msg {
    display: none;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    color: #e05252;
    text-align: center;
    margin-bottom: 4px;
}

.booking-popup__input.is-error,
.booking-popup__field-grow input.is-error,
.booking-popup__double input.is-error,
.booking-popup__comment-block textarea.is-error,
.booking-popup__col-count input.is-error {
    border-color: #e05252;
}

.booking-popup__label.is-error {
    color: #e05252;
}

.booking-popup__agree.is-error input[type="checkbox"] {
    outline: 2px solid #e05252;
    outline-offset: 1px;
}

.booking-popup__agree.is-error label {
    color: #e05252;
}

.booking-popup__agree.is-error .booking-popup__link {
    color: #e05252;
}

.booking-popup__required-note {
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    color: #4C6C91;
    margin-top: 2px;
}

.booking-popup__field-grow--date {
    position: relative;
}

.booking-popup__field-grow--date .calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    cursor: pointer;
}

.booking-popup__field-grow--date .calendar-icon + * {
    display: none;
}

@media (max-width: 760px) {
    .booking-modal__dialog {
        padding: 36px 24px 28px;
    }

    .booking-popup__title {
        font-size: 26px;
    }

    .booking-popup__row,
    .booking-popup__two-col,
    .booking-popup__full-row,
    .booking-popup__col-date,
    .booking-popup__col-count {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-popup__row .booking-popup__label,
    .booking-popup__full-row .booking-popup__label {
        flex: none;
    }

    .booking-popup__agree {
        padding-left: 0;
    }

    .booking-popup__input--count {
        width: 100% !important;
        flex: 1;
    }

    .booking-popup__submit {
        width: 100%;
        max-width: 347px;
    }
}

.booking-popup__hidden-meta {
    display: none !important;
}

.cruise__sidebar-card .hero-card__date-text {
display: flex;
flex-direction: column;
}

.promo-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 26px;
}

.promo-tabs__btn {
    border: 0;
    background: transparent;
    padding: 0;
    color: #363D72;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: underline;
    cursor: pointer;
}

.promo-tabs__btn.is-active {
    color: #0499B5;
    font-weight: 700;
}

.promo-tabs__pane {
    display: none;
}

.promo-tabs__pane.is-active {
    display: block;
}

.offers__grid--promo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.offers__card--promo {
    position: relative;
    min-height: 142px;
    padding: 18px 16px 16px;
    border: 1px solid #9ad9e6;
    border-radius: 10px;
    background: #bfe8f6;
    overflow: visible;
}

.offers__badge {
    position: absolute;
    top: -1px;
    left: 14px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 0 0 4px 4px;
    background: #e54848;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
}

.offers__detail {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(100% + 14px);
    z-index: 20;
    width: 380px;
    max-width: calc(100vw - 40px);
    transform: translateX(-50%);
    padding: 18px 20px;
    border: 1px solid #9ad9e6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.offers__detail.is-open {
    display: block;
}

.offers__card-title {
	margin-top: 20px;
}

.offers__detail::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border-left: 1px solid #9ad9e6;
    border-top: 1px solid #9ad9e6;
    transform: translateX(-50%) rotate(45deg);
}

.offers__detail-title {
    margin-bottom: 10px;
    color: #0499B5;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.offers__detail-text {
    color: #363D72;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .offers__grid--promo {
        grid-template-columns: 1fr;
    }

    .offers__detail {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        max-width: 100%;
        transform: none;
        margin-top: 14px;
    }

    .offers__detail::before {
        display: none;
    }
}