.cruise-program__intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: var(--color-text);
}

.cruise-map {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    background: #e8f0f2;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cruise-map__placeholder {
    font-size: 15px;
    color: var(--color-sub);
}

.cruise-map iframe,
.cruise-map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cruise-route {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0 0 28px;
}

.cruise-schedule__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cruise-schedule__title {
    font-size: var(--fs-section-title);
    font-weight: var(--fw-section-title);
    color: var(--color-primary);
    margin: 0;
}

.cruise-schedule__download {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: underline;
}

.cruise__sidebar-mobile {
    display: none;
}

.day-cards-wrap {
    /*border: 1px solid var(--color-border);*/
	border: none;
    border-radius: 10px;
    /*padding: 0 18px;*/
	padding: 0px;
}

.day-card {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
	border-radius: 16px;
	margin-bottom: 20px;
	background: #C5ECFC;
	padding: 0 25px;
	padding-bottom: 20px;
}

.day-card:last-child {
    border-bottom: none;
}

.day-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 18px;
    align-items: start;
    height: auto;
}

.day-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 10px;
}

.day-card__city {
    font-size: var(--fs-card-text);
    font-weight: var(--fw-card-title);
    color: var(--color-primary);
    margin: 0 0 12px;
}

.day-card__meta {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.day-card__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day-card__meta-label {
    font-size: 12px;
    color: var(--color-sub);
}

.day-card__meta-val {
    font-size: var(--fs-dates);
    font-weight: var(--fw-dates);
    color: var(--color-text);
}

.day-card__place {
    margin-bottom: 14px;
}

.day-card__place-label {
    display: block;
    font-size: 12px;
    color: var(--color-sub);
    margin-bottom: 2px;
}

.day-card__place-val {
    font-size: var(--fs-dates);
    font-weight: var(--fw-dates);
    color: var(--color-text);
}

.day-card__more {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.day-card__more::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--color-text);
    border-bottom: 1.5px solid var(--color-text);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
}

.day-card__more[aria-expanded="true"]::after {
    transform: rotate(-135deg) translateY(-2px);
}

.day-card__more:hover {
    color: var(--color-primary);
}

.day-card__more:hover::after {
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.day-card__more[aria-expanded="true"] {
    color: var(--color-primary);
}

.day-card__more[aria-expanded="true"]::after {
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.day-card__img {
    width: 100%;
    height: 220px;
    max-height: none;
    object-fit: cover;
    margin-top: 0;
    align-self: start;
	padding: 0;
	margin-top: 20px;
	border-radius: 16px;
}

.day-card__note {
    display: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.day-card__note p {
    margin: 0 0 8px;
}

.day-card__note p:last-of-type {
    margin-bottom: 10px;
}

.day-card__link {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
}

@media (max-width: 768px) {

    .day-card__img {
        height: 270px;
    }

    .day-card__header {
        grid-template-columns: 1fr;
    }

    .cruise__sidebar-mobile {
        display: block;
        width: 100%;
        position: relative;
        top: -20px;
        z-index: 100;
        margin-bottom: 30px;
    }

    .cruise__sidebar-card {
        background: #C5ECFC;
    }

    .cruise__sidebar {
        display: none;
    }

    .cruise__tabs {
        margin-top: 0;
    }

    .cruise-schedule__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .day-cards-wrap {
        border: none;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .day-card {
        background: #C5ECFC;
        border: none;
        border-radius: 10px;
        padding: 16px;
    }

    .day-card:last-child {
        border-bottom: none;
    }

    .day-card__header {
        grid-template-columns: 1fr;
    }
}

/* ===== Слайдер во вкладке "Теплоход" ===== */

.cruise__slider {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
    background: #f4f7fb;
}

.cruise__slider .swiper-wrapper {
    align-items: stretch;
}

.cruise__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 460px;
    padding: 0;
    background: #f4f7fb;
    overflow: hidden;
}

.cruise__slide {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #f4f7fb;
}

/* если нужна более "плотная" картинка — можно потом заменить contain на cover */

.cruise__swiper-prev,
.cruise__swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    color: #129fbe;
}

.cruise__swiper-prev::after,
.cruise__swiper-next::after {
    font-size: 18px;
    font-weight: 700;
}

.cruise__pagination {
    position: static;
    margin-top: 14px;
    text-align: center;
}

.cruise__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(18, 159, 190, 0.28);
}

.cruise__pagination .swiper-pagination-bullet-active {
    background: #129fbe;
}

@media (max-width: 991px) {
    .cruise__slider .swiper-slide {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .cruise__slider .swiper-slide {
        height: 240px;
    }

    .cruise__swiper-prev,
    .cruise__swiper-next {
        width: 36px;
        height: 36px;
    }

    .cruise__swiper-prev::after,
    .cruise__swiper-next::after {
        font-size: 14px;
    }
}

.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: block;
        position: sticky;
        bottom: -1px;
        left: 0;
        right: 0;
        z-index: 100;
        border-radius: 14px 14px 0 0;
        background: var(--color-primary);
        overflow: hidden;
    }

    .bottom-nav__inner {
        display: flex;
        align-items: stretch;
    }

    .bottom-nav__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 12px 4px 10px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.2;
        transition: color 0.15s, font-weight 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-nav__item span {
        border-bottom: 2px solid transparent;
        padding-bottom: 1px;
        transition: border-color 0.15s;
    }

    .bottom-nav__item--active,
    .bottom-nav__item:hover,
    .bottom-nav__item:active {
        color: #ffffff;
        font-weight: 700;
    }

    .bottom-nav__item--active span,
    .bottom-nav__item:hover span,
    .bottom-nav__item:active span {
        border-bottom-color: #ffffff;
    }

    .bottom-nav__icon {
        width: 24px;
        height: 24px;
        display: block;
        flex-shrink: 0;
    }
}

.hero-card__badges {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.hero-card__badge-chip--new {
    background: #e9f8fc;
    color: #0ea5c6;
    border: 1px solid #b8e8f3;
	padding: 3px 7px;
	border-radius: 10px;
}

.hero-card__badge-chip--special {
    background: #f25f5c;
    color: #fff;
    border: 1px solid #f25f5c;
	padding: 3px 7px;
	border-radius: 10px;
}

.cruise-map__frame {
    position: relative;
    width: 100%;
	height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.cruise-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.cruise-map {
	display: flex;
	flex-direction: column;
}

.cruise-map__actions {
	margin-bottom: 15px;
}

.cruise-cost-v2__block {
	margin-bottom: 20px;
}
.cruise-cost-v2__chip {
display: block;
}
.cruise-cost-v2__subtitle {
display: block;
margin-bottom: 10px;
font-weight: 600;
}

.promo-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 24px;
}

.promo-tabs__btn {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #4b4b7f;
    text-decoration: underline;
    cursor: pointer;
}

.promo-tabs__btn.is-active {
    color: #0598b8;
    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: 18px;
}

.offers__card--promo {
    position: relative;
    min-height: 148px;
    padding: 18px 16px 16px;
    border: 1px solid #9fd9e8;
    border-radius: 12px;
    background: #bfe8f6;
}

.offers__badge {
    position: absolute;
    top: -1px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 0 0 6px 6px;
    background: #e54848;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.offers__card-title {
    margin-top: 14px;
    margin-bottom: 8px;
    color: #0598b8;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.offers__card-dates {
    margin-bottom: 30px;
    color: #4b4b7f;
    font-size: 16px;
    line-height: 1.3;
}

.offers__card-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: #4b4b7f;
    text-decoration: underline;
    font-size: 16px;
    cursor: pointer;
}

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

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

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

.offers__detail-title {
    margin-bottom: 12px;
    color: #0598b8;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.offers__detail-text {
    color: #3d3d70;
    font-size: 16px;
    line-height: 1.45;
}

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

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

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