/* Редизайн страницы тура — блок hero (фаза 1) */
body.single-tour {
	--tour-forest: #06652e;
	--tour-ink: #152019;
	--tour-muted: #65716a;
	--tour-line: #dce4de;
	--tour-lime: #c9e54d;
	--tour-mist: #f3f6f2;
	--tour-paper: #fff;
	--tour-orange: #e24420;
	background: var(--tour-mist);
	color: var(--tour-ink);
	overflow-x: clip;
}

body.single-tour .header__menu {
	padding-bottom: 20px;
}

/* Старое мобильное меню тура больше не используем */
body.single-tour .tour_menu_mob {
	display: none !important;
}

body.single-tour .calc-head {
	display: none !important;
}

body.single-tour .tour_content {
	/* мобилка: фиксированный хедер ~60px */
	margin-top: 60px;
}

@media (min-width: 1200px) {
	body.single-tour .tour_content {
		/* десктоп: absolute-хедер + меню с padding-bottom */
		margin-top: 180px;
	}
}

/* Старая мобильная плашка калькулятора — заменена на tour-mobile-bar */
body.single-tour .total-mob_bron,
body.single-tour .total-mob {
	display: none !important;
}

.tour-hero {
	padding: 30px 0 8px;
}

.tour-hero__crumbs {
	padding: 22px 0 16px;
	overflow: hidden;
}

.tour-hero__crumbs .brcr,
.tour-hero__crumbs #breadcrumbs {
	display: block;
	margin: 0;
	color: var(--tour-muted);
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tour-hero__crumbs .brcr a,
.tour-hero__crumbs #breadcrumbs a {
	color: var(--tour-muted);
	text-decoration: none;
}

.tour-hero__crumbs .brcr a:hover,
.tour-hero__crumbs #breadcrumbs a:hover {
	color: var(--tour-forest);
}

.tour-hero__crumbs .separator {
	color: var(--tour-muted);
	opacity: 0.65;
	margin: 0;
	user-select: none;
}

.tour-hero__crumbs .breadcrumb_last,
.tour-hero__crumbs .last {
	color: var(--tour-muted);
	opacity: 0.65;
}

.tour-hero__gallery {
	display: grid;
	grid-template-columns: 1.7fr 0.8fr;
	grid-template-rows: 230px 230px;
	gap: 10px;
	border-radius: 28px;
	overflow: hidden;
	position: relative;
	background: #dbe8dd;
}

.tour-hero__photo {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: transparent;
	background-size: cover;
	background-position: center;
}

.tour-hero__gallery:not(.tour-hero__gallery--vertical):not(.tour-hero__gallery--horizontal) .tour-hero__photo:first-child {
	grid-row: 1 / 3;
}

.tour-hero__photo img,
.tour-hero__photo video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
	display: block;
}

.tour-hero__photo video {
	pointer-events: none;
}

.tour-hero__photo:hover img,
.tour-hero__photo:hover video {
	transform: scale(1.025);
}

.tour-hero__photo--video {
	background: #0d2216;
}

.tour-hero__video-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(71, 171, 53, 0.92);
	pointer-events: none;
	box-shadow: 0 10px 28px rgba(13, 34, 22, 0.28);
}

.tour-hero__video-play::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

/* Вертикальное видео: слева видео, справа 4 фото 2×2 */
.tour-hero__gallery--vertical {
	grid-template-columns: 0.4fr 0.55fr 0.55fr;
	grid-template-rows: 230px 230px;
}

.tour-hero__gallery--vertical .tour-hero__photo:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / 3;
}

.tour-hero__gallery--vertical .tour-hero__photo:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}

.tour-hero__gallery--vertical .tour-hero__photo:nth-child(3) {
	grid-column: 3;
	grid-row: 1;
}

.tour-hero__gallery--vertical .tour-hero__photo:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.tour-hero__gallery--vertical .tour-hero__photo:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
}

/* Горизонтальное видео: два крупных сверху, ряд мелких снизу */
.tour-hero__gallery--horizontal {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: 260px 150px;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(2) {
	grid-column: 3 / 5;
	grid-row: 1;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(3) {
	grid-column: 1;
	grid-row: 2;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
}

.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(6) {
	grid-column: 4;
	grid-row: 2;
}

.tour-hero-gallery-modal__item--video {
	position: relative;
	background: #0d2216;
}

.tour-hero-gallery-modal__item--video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tour-hero-gallery-modal__item--video .tour-hero__video-play {
	width: 52px;
	height: 52px;
}

.tour-hero-gallery-modal__item--video .tour-hero__video-play::before {
	border-width: 8px 0 8px 13px;
}

.tour-hero__gallery-count {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	border: 0;
	cursor: pointer;
	background: rgba(13, 34, 22, 0.82);
	color: #fff;
	padding: 11px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	backdrop-filter: blur(8px);
}

.tour-hero__gallery-count:hover {
	background: rgba(13, 34, 22, 0.92);
}

.tour-hero__actions {
	position: absolute;
	right: 18px;
	top: 18px;
	z-index: 2;
	display: flex;
	gap: 8px;
}

.tour-hero__icon-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.94);
	display: grid;
	place-items: center;
	color: var(--tour-forest);
	cursor: pointer;
	padding: 0;
	box-shadow: 0 6px 18px rgba(20, 54, 34, 0.12);
}

.tour-hero__icon-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tour-hero__icon-btn.tour_book_favorite_submit.active {
	color: #e24420;
	background: rgba(255, 255, 255, 0.94);
}

.tour-hero__icon-btn.tour_book_favorite_submit.active svg {
	fill: none;
	stroke: #e24420;
}

.tour-hero__content {
	padding: 28px 0 20px;
}

.tour-hero__title {
	font-size: clamp(34px, 5vw, 66px);
	line-height: 1.02;
	letter-spacing: -0.045em;
	margin: 0 0 18px;
	color: var(--tour-ink);
	font-weight: 700;
}

.tour-hero__sub {
	font-size: 19px;
	line-height: 1.5;
	color: #4c5951;
	margin: 0 0 8px;
}

.tour-hero__yandex {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
	padding: 13px 20px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--tour-line);
	box-shadow: 0 12px 28px rgba(20, 40, 30, 0.1);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	color: inherit;
}

.tour-hero__trust {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	gap: 14px;
	margin: 14px 0 8px;
}

.tour-hero__trust .tour-hero__yandex {
	margin: 0;
	justify-self: start;
	align-self: start;
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
}

.tour-hero__trust .brand-advantage-band {
	width: 100%;
	max-width: none;
	margin: 0;
	min-width: 0;
}

.tour-hero__trust .brand-advantage-shell {
	height: auto;
	box-sizing: border-box;
}

.tour-hero__yandex:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(20, 40, 30, 0.14);
	color: inherit;
	text-decoration: none;
}

.tour-hero__yandex-score {
	font-size: 22px;
	font-weight: 800;
	color: var(--tour-ink);
}

.tour-hero__yandex-logo {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #fc3f1d;
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 15px;
	flex: none;
}

.tour-hero__yandex-stars {
	color: #f5a000;
	font-size: 15px;
	letter-spacing: 1px;
}

.tour-hero__yandex-count {
	font-size: 13px;
	font-weight: 700;
	color: var(--tour-muted);
	border-left: 1px solid var(--tour-line);
	padding-left: 12px;
}

.tour-hero__badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 22px 0 18px;
}

.tour-hero__badge {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	background: #e7f3ea;
	color: var(--tour-forest);
	border-radius: 999px;
	padding: 7px 11px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

a.tour-hero__badge:hover {
	color: var(--tour-forest);
	opacity: 0.85;
}

.tour-hero__badge--accent {
	background: #eef6c8;
	color: #3a5200;
}

.tour-hero__facts {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 0;
	width: 100%;
}

.tour-hero__clarity {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 12px;
	border-radius: 14px;
	padding: 12px 14px;
	background: #fff8ef;
	color: #6f512a;
	font-size: 12px;
	line-height: 1.5;
}

.tour-hero__clarity strong {
	color: var(--tour-ink, #152019);
}

.tour-hero__fact {
	background: #fff;
	border: 1px solid var(--tour-line);
	border-radius: 16px;
	padding: 15px;
	min-height: 94px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.tour-hero__fact--dates,
.tour-hero__fact--clickable {
	cursor: pointer;
}

.tour-hero__fact-ic {
	font-size: 21px;
	margin-bottom: 9px;
	display: block;
	line-height: 1;
}

.tour-hero__fact b,
.tour-hero__fact-main {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
	color: var(--tour-ink);
	font-weight: 700;
}

.tour-hero__fact-main .tour_main_date {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.tour-hero__fact-main .tour_more_dates {
	display: inline-block;
	margin-top: 2px;
	font-size: 12px;
	font-weight: 600;
	color: var(--tour-forest);
}

.tour-hero__fact small {
	font-size: 12px;
	color: var(--tour-muted);
	line-height: 1.35;
	display: block;
}

.tour-hero__anchors-wrap {
	position: relative;
	z-index: 40;
	background: rgba(243, 246, 242, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
}

.tour-hero__anchors-wrap.is-stuck {
	position: fixed !important;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	/* fallback под .header-fixed (80px) / мобильный .header (60px); JS перезапишет точным значением */
	top: 80px !important;
	z-index: 98;
	margin: 0;
	border-bottom-color: rgba(6, 101, 46, 0.08);
	box-shadow: 0 8px 24px rgba(20, 54, 34, 0.06);
}

@media (max-width: 1199px) {
	.tour-hero__anchors-wrap.is-stuck {
		top: 60px !important;
		z-index: 102;
	}
}

.tour-hero__anchors-spacer {
	width: 100%;
	pointer-events: none;
	visibility: hidden;
}

.tour-hero__anchors {
	display: flex;
	gap: 8px;
	overflow: auto;
	padding: 10px 0;
	margin: 0;
	scrollbar-width: none;
}

.tour-hero__anchors::-webkit-scrollbar {
	display: none;
}

.tour-hero__anchor {
	white-space: nowrap;
	background: #fff;
	border: 1px solid var(--tour-line);
	border-radius: 999px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--tour-ink);
	cursor: pointer;
	flex: none;
}

.tour-hero__anchor:hover {
	border-color: var(--tour-forest);
	color: var(--tour-forest);
}

.tour-hero__anchor.is-active {
	color: #06652e;
	border-color: #06652e;
	background: rgba(6, 101, 46, 0.08);
}

.tour-fit {
	margin: 26px 0 34px;
	max-width: 100%;
	min-width: 0;
	overflow-x: clip;
}

.tour-fit__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 348px;
	gap: 28px;
	align-items: stretch;
}

.tour-fit__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tour-fit__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-fit__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #414141;
}

.tour-fit__title {
	margin: 0 0 12px;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink);
	font-weight: 700;
}

.tour-fit__intro {
	max-width: 360px;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: var(--tour-muted);
}

.tour-fit__short {
	margin: 0;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.08);
	padding: 28px;
}

@media (min-width: 769px) {
	.tour-fit__head,
	.tour-fit__short {
		padding-left: 20px;
	}
}

.tour-fit__short .tour_short_content {
	font-size: 15px;
	line-height: 1.65;
	color: var(--tour-ink, #132419);
}

.tour-fit__short .tour_short_content p {
	margin: 0 0 14px;
}

.tour-fit__short .tour_short_content p:last-child {
	margin-bottom: 0;
}

.tour-fit__short .tour_short_content b,
.tour-fit__short .tour_short_content strong {
	font-weight: 700;
}

.tour-fit__decision-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
	gap: 18px;
	min-width: 0;
}

.tour-fit__card,
.tour-fit__dates,
.tour-fit__request {
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.08);
	min-width: 0;
}

.tour-fit__card {
	padding: 28px;
}

.tour-fit__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.tour-fit__box {
	border-radius: 18px;
	padding: 21px;
	background: #edf6ef;
}

.tour-fit__box--caution {
	background: #f8f2ea;
}

.tour-fit__box h3 {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--tour-ink);
}

.tour-fit__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
	font-size: 14px;
	line-height: 1.45;
	color: #455148;
}

.tour-fit__list li {
	position: relative;
	padding-left: 25px;
}

.tour-fit__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: -1px;
	font-weight: 700;
	color: var(--tour-forest);
}

.tour-fit__box--caution .tour-fit__list li::before {
	content: '!';
	color: #9b5d1f;
}

.tour-fit__pace {
	padding: 28px;
	background: var(--tour-forest);
	color: #fff;
	box-shadow: 0 18px 55px rgba(20, 54, 34, 0.11);
	border-radius: 22px;
}

.tour-fit__pace h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #fff;
}

.tour-fit__pace .tour-fit__eyebrow,
.tour-fit__pace b {
	color: #fff;
}

.tour-fit__dates h3,
.tour-fit__request h3,
.tour-fit__quick-success h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--tour-ink);
}

.tour-fit__dates h3 {
	font-size: 20px;
}

.tour-fit__meter {
	display: flex;
	gap: 5px;
	margin: 22px 0 12px;
}

.tour-fit__meter i {
	height: 8px;
	flex: 1;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.2);
}

.tour-fit__meter i.is-on {
	background: var(--tour-lime);
}

.tour-fit__pace-note {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #d8eadf;
}

.tour-fit__pace-data {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.tour-fit__pace-line {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding-top: 12px;
}

.tour-fit__dates {
	padding: 26px;
	margin-top: 18px;
	flex: 1 1 auto;
}

.tour-fit__dates-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.tour-fit__dates-head > div > p:not(.tour-fit__eyebrow) {
	max-width: 580px;
	margin: 7px 0 0;
	color: var(--tour-muted);
	font-size: 12px;
	line-height: 1.5;
}

.tour-fit__dates-more,
.tour-fit__legend-link {
	border: 1px solid var(--tour-line);
	background: #e8f2eb;
	color: var(--tour-forest);
	border-radius: 13px;
	min-height: 46px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.tour-fit__date-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
	min-width: 0;
	scroll-behavior: smooth;
}

.tour-fit__date-card {
	border: 1px solid var(--tour-line);
	border-radius: 14px;
	padding: 13px;
	text-align: left;
	background: #fff;
	min-width: 0;
	cursor: pointer;
}

.tour-fit__date-card.is-active {
	border: 2px solid var(--tour-forest);
	padding: 12px;
	background: #eff8f1;
}

.tour-fit__date-card span,
.tour-fit__date-card b,
.tour-fit__date-card small,
.tour-fit__date-card em {
	display: block;
}

.tour-fit__date-card span {
	color: var(--tour-muted);
	font-size: 9px;
	text-transform: uppercase;
	line-height: 1.3;
}

.tour-fit__date-card b {
	margin: 5px 0;
	font-size: 12px;
	line-height: 1.3;
	color: var(--tour-ink);
	font-weight: 700;
}

.tour-fit__date-card small {
	color: var(--tour-forest);
	font-size: 9px;
	font-weight: 700;
	text-transform: none;
}

.tour-fit__date-card small.is-request {
	color: #be7517;
}

.tour-fit__date-card small.is-promo {
	color: #c0392b;
}

.tour-fit__date-card em {
	margin-top: 2px;
	color: var(--tour-muted);
	font-size: 9px;
	font-style: normal;
}

.tour-fit__legend {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 17px;
	color: var(--tour-muted);
	font-size: 10px;
	flex-wrap: wrap;
}

.tour-fit__legend span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.tour-fit__legend i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #43ab34;
}

.tour-fit__legend i.is-request {
	background: #be7517;
}

.tour-fit__legend i.is-promo {
	background: #c0392b;
}

.tour-fit__legend-link {
	margin-left: auto;
	background: #fff;
}

.booking-window-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
	border-radius: 13px;
	padding: 11px 13px;
	background: #f7f2e9;
	color: #705326;
	font-size: 11px;
	line-height: 1.5;
}

.booking-window-note b {
	flex: 0 0 auto;
	color: var(--tour-ink);
}

.tour-fit__request {
	position: relative;
	top: auto;
	padding: 24px;
	z-index: auto;
	max-width: 100%;
}

.tour-fit__sidebar {
	display: grid;
	gap: 14px;
	align-content: start;
	position: sticky;
	top: 132px;
	z-index: 15;
}

.tour-fit__request-text {
	font-size: 13px;
	line-height: 1.5;
	color: var(--tour-muted);
	margin: 7px 0 0;
}

.tour-fit__quick-form {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.tour-fit__quick-form label {
	display: grid;
	gap: 4px;
	color: var(--tour-ink);
	font-size: 13px;
	font-weight: 500;
}

.tour-fit__quick-form input {
	width: 100%;
	height: 48px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	outline: none;
}

.tour-fit__quick-form input:focus {
	border-color: var(--tour-forest);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.12);
}

.tour-fit__quick-submit,
.tour-fit__calc-btn {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.tour-fit__quick-submit {
	background: var(--tour-orange);
	color: #fff;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
}

.tour-fit__quick-form > small {
	color: var(--tour-muted);
	font-size: 11px;
	line-height: 1.45;
}

.tour-fit__calc-btn {
	margin-top: 10px;
	background: var(--tour-forest);
	color: #fff;
}

.tour-fit__quick-success {
	padding: 45px 0;
	text-align: center;
}

.tour-fit__quick-success[hidden] {
	display: none !important;
}

.tour-fit__quick-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e0f0e4;
	color: var(--tour-forest);
	font-size: 30px;
	margin: 0 auto 15px;
}

.tour-fit__quick-success p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tour-muted);
}

.brand-advantage-band {
	margin: 0;
}

.brand-advantage-shell {
	overflow: visible;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 24px;
	padding: 18px;
	background: #fff;
	box-shadow: 0 20px 48px rgba(18, 55, 35, 0.11);
}

.brand-advantage-kicker {
	margin: 0 0 11px;
	color: var(--tour-forest);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.brand-advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.brand-advantage-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 90px;
	height: auto;
	border: 1px solid #cfe3d3;
	border-radius: 16px;
	padding: 15px;
	background: #eaf4ec;
	color: var(--tour-ink);
	overflow: visible;
}

.brand-advantage-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 12px;
	background: #fff;
	color: #b596e8;
	box-shadow: 0 7px 18px rgba(9, 45, 24, 0.1);
}

.brand-advantage-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.brand-advantage-item:nth-child(2) .brand-advantage-icon {
	color: #4d9cf0;
}

.brand-advantage-item:nth-child(3) .brand-advantage-icon {
	color: #43ab34;
}

.brand-advantage-item:nth-child(4) .brand-advantage-icon {
	background: #4d9cf0;
	color: #fff;
}

.brand-advantage-item b {
	display: block;
	min-width: 0;
	flex: 1 1 auto;
	font-size: 13px;
	line-height: 1.35;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}


/* На редизайне календарь только в модалке */
body.single-tour .tour_order .calend_block .calend,
body.single-tour .tour_order .calend_block .calc_loading,
body.single-tour .tour_order .calend_block .calc__labels {
	display: none !important;
}

.tour-calc-date-pick__text {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tour-muted, #65716a);
}

.tour-calc-date-pick__btn {
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 13px;
	background: var(--tour-forest, #06652e);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.tour-calc-date-pick__btn:hover {
	opacity: 0.92;
}

/* Контент на всю ширину без правого сайдбара бронирования */
body.single-tour .tour_container.col-12 {
	max-width: 100%;
	flex: 0 0 100%;
}

/* Контент тура — ширина как в шаблоне (--max: 1240px).
   Хедер и футер сюда не входят: у них контейнер общесайтовый. */
body.single-tour .tour_vars .container,
body.single-tour .tour_related .container {
	width: min(calc(100% - 32px), 1240px);
	max-width: 1240px;
	padding-left: 0;
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
}

/* Bootstrap .row с margin -15px ломает ширину шаблона */
body.single-tour .tour_content > .container > .row {
	margin-left: 0;
	margin-right: 0;
}

body.single-tour .tour_content > .container > .row > .tour_container.col-12 {
	padding-left: 0;
	padding-right: 0;
}

/* ===== Единая типографика секций (как в шаблоне) ===== */
body.single-tour .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

body.single-tour .section-head .eyebrow {
	margin: 0 0 10px;
	color: #414141;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.single-tour .section-head > p,
body.single-tour .section-head p:not(.eyebrow) {
	margin: 0;
	color: var(--tour-muted, #65716a);
	font-size: 15px;
	line-height: 1.5;
	max-width: 610px;
}

body.single-tour .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

body.single-tour .tour-program .section-head {
	align-items: flex-start;
}

body.single-tour .tour-calculator-section .section-head > p,
body.single-tour .tour-reviews .section-head > p,
body.single-tour .tour-guides .section-head > p,
body.single-tour .tour-booking-steps .section-head > p {
	max-width: 420px;
}

/* Модалка «Все фото» */
.tour-hero-gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 16px;
	background: rgba(8, 26, 16, 0.62);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}

/* Fancybox default z-index is 1050 — must be above tour gallery grid (1200). */
.fancybox__container {
	z-index: 1300 !important;
}

.tour-hero-gallery-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.tour-hero-gallery-modal[hidden] {
	display: none;
}

.tour-hero-gallery-modal.is-open[hidden] {
	display: grid;
}

.tour-hero-gallery-modal__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 900px);
	max-height: min(780px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-hero-gallery-modal.is-open .tour-hero-gallery-modal__dialog {
	transform: none;
}

.tour-hero-gallery-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 1;
}

.tour-hero-gallery-modal__head h2 {
	font-size: 26px;
	margin: 0 0 6px;
	color: var(--tour-ink);
	line-height: 1.15;
}

.tour-hero-gallery-modal__head p {
	font-size: 13px;
	color: var(--tour-muted);
	margin: 0;
}

.tour-hero-gallery-modal__close {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #f3f6f2;
	color: var(--tour-ink);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	flex: none;
}

.tour-hero-gallery-modal__close:hover {
	background: #e7f3ea;
}

.tour-hero-gallery-modal__body {
	padding: 10px 24px 25px;
}

.tour-hero-gallery-modal__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 8px;
}

.tour-hero-gallery-modal__item {
	display: block;
	overflow: hidden;
	border-radius: 14px;
	background: #dbe8dd;
	min-height: 120px;
}

.tour-hero-gallery-modal__item:first-child {
	grid-row: span 2;
	min-height: 360px;
}

.tour-hero-gallery-modal__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.tour-hero-gallery-modal__item:hover img {
	transform: scale(1.03);
}

body.tour-hero-gallery-modal-open {
	overflow: hidden;
}

/* Fancybox поверх модалки «Все медиа» (у модалки z-index: 1200) */
.fancybox__container,
.fancybox-container {
	z-index: 1300;
}

@media (max-width: 860px) {
	.tour-hero-gallery-modal__dialog {
		border-radius: 21px;
		max-height: calc(100vh - 24px);
	}

	.tour-hero-gallery-modal__head {
		padding: 18px 16px 12px;
	}

	.tour-hero-gallery-modal__head h2 {
		font-size: 20px;
	}

	.tour-hero-gallery-modal__body {
		padding: 8px 16px 18px;
	}

	.tour-hero-gallery-modal__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tour-hero-gallery-modal__item:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 220px;
	}

	.tour-hero-gallery-modal__item {
		min-height: 110px;
	}
}


@media (max-width: 1100px) {
	.tour-fit__layout {
		grid-template-columns: 1fr;
	}

	.tour-fit__request,
	.tour-fit__sidebar {
		position: static;
		top: auto;
	}

	.tour-hero__facts {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 980px) {
	.tour-fit__date-grid {
		display: flex;
		overflow-x: auto;
		gap: 8px;
		margin-right: 0;
		padding-right: 0;
		-webkit-overflow-scrolling: touch;
	}

	.tour-fit__date-card {
		min-width: 150px;
		flex: 0 0 auto;
	}

	.tour-hero__trust {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 12px 0 6px;
	}

	.tour-hero__trust .tour-hero__yandex {
		justify-self: start;
		width: fit-content;
		max-width: 100%;
	}

	.tour-hero__trust .brand-advantage-band {
		width: 100%;
	}

	.tour-hero__trust .brand-advantage-shell {
		height: auto;
		overflow: visible;
	}

	.tour-hero__trust .brand-advantage-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tour-hero__trust .brand-advantage-item {
		min-height: auto;
		height: auto;
		align-self: stretch;
		overflow: visible;
	}
}

@media (max-width: 860px) {
	.tour-fit__layout,
	.tour-fit__decision-grid,
	.tour-fit__columns {
		grid-template-columns: 1fr;
	}

	.tour-fit__head,
	.tour-fit__dates-head {
		display: block;
	}

	.tour-fit__intro {
		max-width: none;
		margin-top: 12px;
	}

	.tour-fit__request {
		position: static;
		top: auto;
	}

	.tour-fit__legend-link {
		margin-left: 0;
	}

	.tour-fit__box h3 {
		font-size: 16px;
	}

	.tour-fit__pace h3 {
		font-size: 21px;
	}

	.tour-hero__crumbs {
		padding: 14px 0 11px;
	}

	.tour-hero__crumbs .brcr,
	.tour-hero__crumbs #breadcrumbs {
		font-size: 11px;
	}

	.tour-hero__gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 280px 110px;
		border-radius: 20px;
		gap: 5px;
	}

	.tour-hero__gallery:not(.tour-hero__gallery--vertical):not(.tour-hero__gallery--horizontal) .tour-hero__photo:first-child {
		grid-row: auto;
		grid-column: 1 / 3;
	}

	.tour-hero__gallery--vertical {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 140px 140px 140px;
	}

	.tour-hero__gallery--vertical .tour-hero__photo:nth-child(1) {
		grid-column: 1;
		grid-row: 1 / 4;
	}

	.tour-hero__gallery--vertical .tour-hero__photo:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.tour-hero__gallery--vertical .tour-hero__photo:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.tour-hero__gallery--vertical .tour-hero__photo:nth-child(4) {
		grid-column: 2;
		grid-row: 3;
	}

	.tour-hero__gallery--vertical .tour-hero__photo:nth-child(5) {
		display: none;
	}

	.tour-hero__gallery--horizontal {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 180px 110px 110px;
	}

	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(1) {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(2) {
		grid-column: 1;
		grid-row: 2;
	}

	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(4),
	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(5),
	.tour-hero__gallery--horizontal .tour-hero__photo:nth-child(6) {
		display: none;
	}

	.tour-hero__video-play {
		width: 48px;
		height: 48px;
	}

	.tour-hero__video-play::before {
		border-width: 8px 0 8px 12px;
	}

	.tour-hero__actions {
		top: 12px;
		right: 12px;
	}

	.tour-hero__icon-btn {
		width: 42px;
		height: 42px;
	}

	.tour-hero__gallery-count {
		right: 10px;
		bottom: 10px;
		padding: 8px 11px;
	}

	.tour-hero__content {
		padding: 24px 0 14px;
	}

	.tour-hero__yandex {
		padding: 11px 14px;
		gap: 8px;
	}

	.tour-hero__yandex-count {
		border-left: 0;
		padding-left: 0;
	}

	.tour-hero__facts {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.tour-hero__clarity {
		font-size: 11px;
	}

	.tour-hero__fact {
		min-height: 86px;
		padding: 13px;
	}

	.tour-hero__anchors {
		padding: 8px 0;
	}

	.tour-hero__anchor {
		font-size: 12px;
		padding: 8px 12px;
	}
}

/* h1 + subtitle — как в шаблоне new.scantour (breakpoint 680px) */
@media (max-width: 680px) {
	.tour-hero__content {
		padding: 20px 0 14px;
	}

	.tour-hero__title {
		font-size: 37px;
		line-height: 1.03;
		margin-bottom: 14px;
	}

	.tour-hero__sub {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 12px;
	}

	.tour-fit__title {
		font-size: 30px;
	}
}

/* Нижняя плашка CTA — скрывается, когда в viewport формы бронирования */
.tour-sticky-cta {
	position: fixed !important;
	left: 0;
	right: 0;
	bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
	z-index: 1100;
	display: none !important;
	justify-content: center;
	padding: 0 16px;
	pointer-events: none;
	transform: none;
}

.tour-sticky-cta.is-visible {
	display: flex !important;
}

.tour-sticky-cta__inner {
	pointer-events: auto;
	width: 100%;
	max-width: 620px;
	background: rgba(10, 42, 24, 0.94);
	backdrop-filter: blur(16px);
	border-radius: 18px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 30px rgba(6, 20, 12, 0.28);
}

.tour-sticky-cta__date {
	color: #fff;
	flex: 0 0 auto;
	line-height: 1.25;
}

.tour-sticky-cta__date small {
	display: block;
	color: #b8d4bf;
	font-size: 10px;
}

.tour-sticky-cta__date b {
	display: block;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.tour-sticky-cta__actions {
	display: flex;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.tour-sticky-cta__btn {
	flex: 1;
	min-height: 46px;
	font-size: 13px;
	font-weight: 700;
	padding: 0 10px;
	border-radius: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	white-space: nowrap;
}

.tour-sticky-cta__btn--ghost {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}

.tour-sticky-cta__btn--ghost:hover {
	border-color: #fff;
	color: #fff;
}

.tour-sticky-cta__btn--primary {
	background: var(--tour-lime, #c9e54d);
	color: var(--tour-ink, #152019);
}

.tour-sticky-cta__btn--primary:hover {
	color: var(--tour-ink, #152019);
	opacity: 0.95;
}

@media (max-width: 1023px) {
	.tour-sticky-cta,
	.tour-sticky-cta.is-visible {
		display: none !important;
	}
}

@media (max-width: 560px) {
	.tour-sticky-cta__inner {
		flex-wrap: wrap;
	}

	.tour-sticky-cta__date {
		width: 100%;
		text-align: center;
	}

	.tour-sticky-cta__actions {
		width: 100%;
	}
}

/* Нижняя мобильная плашка из шаблона (< 1024) */
.tour-mobile-bar {
	display: none;
	position: fixed !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1090;
	align-items: center;
	gap: 11px;
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--tour-line, #dce4de);
	padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
	backdrop-filter: blur(16px);
	box-sizing: border-box;
}

.tour-mobile-bar__total {
	min-width: 102px;
	flex: 0 0 auto;
	line-height: 1.2;
}

.tour-mobile-bar__total small {
	display: block;
	color: var(--tour-muted, #65716a);
	font-size: 10px;
}

.tour-mobile-bar__total b {
	display: block;
	font-size: 18px;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
	font-weight: 700;
}

.tour-mobile-bar__fav {
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 1px solid var(--tour-line, #dce4de);
	background: #fff;
	display: grid;
	place-items: center;
	color: var(--tour-forest, #06652e);
	padding: 0;
	cursor: pointer;
}

.tour-mobile-bar__fav svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tour-mobile-bar__fav.active {
	color: #e24420;
	background: #fff;
}

.tour-mobile-bar__fav.active svg {
	fill: none;
	stroke: #e24420;
}

.tour-mobile-bar__btn {
	flex: 1;
	min-height: 50px;
	padding: 0 12px;
	border: 0;
	border-radius: 13px;
	background: var(--tour-orange, #e24420);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
	cursor: pointer;
}

.tour-mobile-bar__btn:hover {
	color: #fff;
	opacity: 0.95;
}

@media (max-width: 1023px) {
	.tour-mobile-bar.is-active-var,
	.tour_var.active .tour-mobile-bar {
		display: flex !important;
	}

	.tour-sticky-cta {
		bottom: calc(72px + env(safe-area-inset-bottom));
	}
}

body > .tour-mobile-bar:not(.is-active-var) {
	display: none !important;
}

body > .tour-mobile-bar.is-form-overlap {
	display: none !important;
}

/* Модалка «Проверить места» (из шаблона) */
.tour-check-seats {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.tour-check-seats.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
}

.tour-check-seats__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 560px);
	max-height: min(780px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-check-seats.is-open .tour-check-seats__dialog {
	transform: none;
}

.tour-check-seats__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-check-seats__head h2 {
	font-size: 26px;
	line-height: 1.15;
	margin: 0 0 6px;
	color: var(--tour-ink, #152019);
	font-weight: 700;
}

.tour-check-seats__head p {
	font-size: 13px;
	color: var(--tour-muted, #65716a);
	margin: 0;
}

.tour-check-seats__close {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background: #eef3ef;
	color: var(--tour-forest, #06652e);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0;
}

.tour-check-seats__body {
	padding: 10px 24px 25px;
}

.tour-check-seats__field {
	display: grid;
	gap: 6px;
	margin-bottom: 13px;
}

.tour-check-seats__field label {
	font-size: 12px;
	font-weight: 600;
	color: var(--tour-ink, #152019);
}

.tour-check-seats__field input,
.tour-check-seats__field select {
	width: 100%;
	height: 50px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	color: var(--tour-ink, #152019);
	font-size: 15px;
	box-sizing: border-box;
}

.tour-check-seats__field input:focus,
.tour-check-seats__field select:focus {
	outline: none;
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.12);
}

.tour-check-seats__submit {
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 13px;
	background: var(--tour-orange, #e24420);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
	margin-top: 4px;
}

.tour-check-seats__submit:hover {
	opacity: 0.95;
}

.tour-check-seats__submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.tour-check-seats__consent {
	font-size: 11px;
	line-height: 1.45;
	color: var(--tour-muted, #65716a);
	margin: 12px 0 0;
}

.tour-check-seats__success {
	display: none;
	text-align: center;
	padding: 20px 0 8px;
}

.tour-check-seats__success.is-show {
	display: block;
}

.tour-check-seats__success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e0f0e4;
	color: var(--tour-forest, #06652e);
	font-size: 30px;
	margin: 0 auto 15px;
}

.tour-check-seats__success h3 {
	font-size: 22px;
	margin: 0 0 10px;
	color: var(--tour-ink, #152019);
}

.tour-check-seats__success p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--tour-muted, #65716a);
	margin: 0 0 18px;
}

.tour-check-seats__back {
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 13px;
	background: #e8f2eb;
	color: var(--tour-forest, #06652e);
	font-weight: 700;
	cursor: pointer;
}

body.tour-check-seats-open {
	overflow: hidden;
}

@media (max-width: 680px) {
	.tour-check-seats__dialog {
		border-radius: 21px;
	}

	.tour-check-seats__head h2 {
		font-size: 22px;
	}
}

.tour-help-modal {
	position: fixed;
	inset: 0;
	z-index: 1205;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.tour-help-modal.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
}

.tour-help-modal__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 560px);
	max-height: min(780px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-help-modal.is-open .tour-help-modal__dialog {
	transform: none;
}

.tour-help-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-help-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-help-modal__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted, #65716a);
}

.tour-help-modal__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: #eef3ef;
	color: var(--tour-ink, #1a2b20);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.tour-help-modal__body {
	padding: 10px 24px 25px;
}

.tour-help-modal__field {
	margin-bottom: 14px;
}

.tour-help-modal__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--tour-ink, #1a2b20);
}

.tour-help-modal__field input,
.tour-help-modal__field select {
	width: 100%;
	height: 48px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	outline: none;
}

.tour-help-modal__field input:focus,
.tour-help-modal__field select:focus {
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.1);
}

.tour-help-modal__submit {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 13px;
	background: var(--tour-orange, #e24420);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
}

.tour-help-modal__submit:hover {
	opacity: 0.94;
}

.tour-help-modal__success {
	text-align: center;
	padding: 8px 0 4px;
}

.tour-help-modal__success[hidden] {
	display: none !important;
}

.tour-help-modal__success-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e8f2eb;
	color: var(--tour-forest, #06652e);
	font-size: 30px;
	font-weight: 700;
}

.tour-help-modal__success h3 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-help-modal__success p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--tour-muted, #65716a);
	margin: 0 0 18px;
}

.tour-help-modal__back {
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 13px;
	background: #e8f2eb;
	color: var(--tour-forest, #06652e);
	font-weight: 700;
	cursor: pointer;
}

body.tour-help-modal-open {
	overflow: hidden;
}

@media (max-width: 680px) {
	.tour-help-modal__dialog {
		border-radius: 21px;
	}

	.tour-help-modal__head h2 {
		font-size: 22px;
	}
}

.tour-tickets-modal {
	position: fixed;
	inset: 0;
	z-index: 1206;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.tour-tickets-modal.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
}

.tour-tickets-modal__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 560px);
	max-height: min(780px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-tickets-modal.is-open .tour-tickets-modal__dialog {
	transform: none;
}

.tour-tickets-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-tickets-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-tickets-modal__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted, #65716a);
}

.tour-tickets-modal__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: #eef3ef;
	color: var(--tour-ink, #1a2b20);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.tour-tickets-modal__body {
	padding: 10px 24px 25px;
}

.tour-tickets-modal__links {
	display: grid;
	gap: 9px;
	margin: 20px 0;
}

.tour-tickets-modal__link {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	gap: 11px;
	border: 1px solid var(--tour-line, #dce4de);
	border-radius: 14px;
	padding: 12px;
	text-decoration: none;
	color: var(--tour-ink, #1a2b20);
}

.tour-tickets-modal__link > span:first-child {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	background: #eaf4ec;
	color: var(--tour-forest, #06652e);
	font-size: 20px;
}

.tour-tickets-modal__link b,
.tour-tickets-modal__link small {
	display: block;
}

.tour-tickets-modal__link small {
	color: var(--tour-muted, #65716a);
	font-size: 9px;
}

.tour-tickets-modal__warning {
	border-radius: 13px;
	padding: 13px;
	background: #fbf2e4;
	color: #715428;
	font-size: 10px;
}

body.tour-tickets-modal-open {
	overflow: hidden;
}

@media (max-width: 680px) {
	.tour-tickets-modal__dialog {
		border-radius: 21px;
	}

	.tour-tickets-modal__head h2 {
		font-size: 22px;
	}
}

/* Модалка календаря дат */
.tour-dates-calendar {
	position: fixed;
	inset: 0;
	z-index: 1210;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
	overflow: auto;
}

.tour-dates-calendar.is-open,
.tour-dates-calendar.is-open[hidden] {
	display: grid !important;
	opacity: 1;
	pointer-events: auto;
}

.tour-dates-calendar__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 900px);
	max-height: min(860px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-dates-calendar.is-open .tour-dates-calendar__dialog {
	transform: none;
}

.tour-dates-calendar__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-dates-calendar__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-dates-calendar__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted, #65716a);
}

.tour-dates-calendar__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: #eef3ef;
	color: var(--tour-ink, #1a2b20);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.tour-dates-calendar__body {
	padding: 10px 24px 25px;
}

.tour-dates-calendar__loading {
	padding: 40px 10px;
	text-align: center;
	color: var(--tour-muted, #65716a);
	font-size: 14px;
}

.tour-dates-calendar .calc__step,
.tour-dates-calendar .calc__title {
	display: none;
}

.tour-dates-calendar .calend {
	margin: 0;
	overflow: hidden;
}

.tour-dates-calendar .calend .swiper-wrapper {
	align-items: stretch;
}

.tour-dates-calendar .calend .swiper-slide {
	height: auto;
	align-self: stretch;
	box-sizing: border-box;
}

.tour-dates-calendar .calend_month {
	min-width: 0;
	/* 6 недель сетки — высота не прыгает при листании месяцев с 4–5 рядами */
	min-height: 340px;
	padding: 0 6px 4px;
	box-sizing: border-box;
}

.tour-dates-calendar .calend .arrow-nav.calend-next,
.tour-dates-calendar .calend .arrow-nav.calend-prev {
	outline: none;
}

.tour-dates-calendar .calend .arrow-nav.calend-next:focus,
.tour-dates-calendar .calend .arrow-nav.calend-prev:focus,
.tour-dates-calendar .calend .arrow-nav.calend-next:focus-visible,
.tour-dates-calendar .calend .arrow-nav.calend-prev:focus-visible {
	outline: none;
}

.tour-dates-calendar .day_dates {
	/* Место под точку статуса (раньше клипалась overflow у .calend) */
	padding-right: 6px;
}

.tour-dates-calendar .day_num:before {
	right: -2px;
}

.tour-dates-calendar .many.action_price .day_min_price,
.tour-dates-calendar .not_many.action_price .day_min_price {
	color: #ba2300;
	background: url("../img/calend_action.svg") no-repeat 0 1px;
	padding-left: 12px;
	letter-spacing: -0.5px;
	display: inline-block;
}

.tour-dates-calendar .not_many .day_num:before {
	background: #f90;
}

.tour-dates-calendar .many .day_num:before {
	background: #43ab34;
}

.tour-dates-calendar .calc__labels {
	margin-top: 16px;
}

.tour-dates-calendar .calc__labels li.hot {
	background-image: url("../img/fire2.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 8px auto;
	padding-left: 20px;
}

body.tour-dates-calendar-open {
	overflow: hidden;
	/* position/top задаются из JS, чтобы не прыгать к верху при закрытии */
}

@media (max-width: 680px) {
	.tour-dates-calendar__dialog {
		border-radius: 21px;
	}

	.tour-dates-calendar__head {
		padding: 20px 18px 12px;
	}

	.tour-dates-calendar__head h2 {
		font-size: 22px;
	}

	.tour-dates-calendar__body {
		padding: 8px 18px 20px;
	}

	.tour-dates-calendar .calend_month {
		min-height: 300px;
	}
}

/* Arrival section (How to get to start) — from template */
.arrival-section {
	/* full-bleed: секция внутри .container, фон на всю ширину окна */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
	background: linear-gradient(145deg, #eff7f1, #e4f1e7);
	padding: 76px 0;
}

.arrival-section .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.arrival-section .section-head p {
	color: var(--tour-muted, #65716a);
	max-width: 610px;
	margin-bottom: 0;
}

.arrival-section .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.arrival-section .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

.arrival-shell {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	overflow: hidden;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(21, 66, 37, 0.12);
}

.arrival-form,
.route-result {
	padding: 34px;
}

.start-point {
	display: flex;
	gap: 14px;
	margin-bottom: 27px;
}

.start-pin {
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: #e5f2e8;
	color: var(--tour-forest, #06652e);
	font-size: 22px;
}

.start-point-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.start-point small {
	color: var(--tour-muted, #65716a);
	font-size: 11px;
}

.start-point b {
	font-size: 21px;
}

.start-point span {
	color: var(--tour-muted, #65716a);
	font-size: 12px;
}

.arrival-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
}

.origin-control {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.arrival-form .btn-primary {
	min-height: 48px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	background: var(--tour-orange, #e24420);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.arrival-form .btn-primary:hover {
	opacity: 0.92;
	color: #fff;
}

.origin-control select,
.origin-control input,
.tourist-row select,
.tourist-row input,
.quick-form input,
.quick-form select {
	width: 100%;
	height: 48px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	outline: none;
}

.origin-control select:focus,
.origin-control input:focus,
.tourist-row select:focus,
.tourist-row input:focus,
.quick-form input:focus,
.quick-form select:focus {
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.1);
}

.arrival-hint {
	margin: 10px 0 0;
	color: #899189;
	font-size: 10px;
}

.route-result {
	background: var(--tour-forest, #06652e);
	color: #fff;
}

.route-result-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.recommend-pill {
	border-radius: 99px;
	padding: 6px 10px;
	background: var(--tour-lime, #c9e54d);
	color: #29440f;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.route-result-top small {
	color: #c9e3cf;
}

.route-result h3 {
	margin: 22px 0 14px;
	font-size: 29px;
	line-height: 30px;
}

.route-chain {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 15px;
	overflow: auto;
	font-size: 12px;
	font-weight: 700;
}

.route-chain span {
	flex: none;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	padding: 8px 11px;
}

.route-chain i {
	font-style: normal;
	color: var(--tour-lime, #c9e54d);
}

.route-result > p {
	color: #d7eadc;
	font-size: 13px;
}

.transport-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 16px 0;
}

.transport-chips span {
	border-radius: 99px;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 10px;
}

.arrival-advice {
	display: flex;
	gap: 11px;
	margin: 18px 0;
	border-radius: 14px;
	padding: 13px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 12px;
}

.arrival-alternate {
	margin-bottom: 18px !important;
}

.route-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.route-result .btn-primary {
	background: var(--tour-lime, #c9e54d);
	color: #29440f;
}

.route-result .btn-secondary {
	border-color: rgba(255, 255, 255, 0.42);
	background: #fff;
	color: var(--tour-forest, #06652e);
}

/* Кнопки в блоке маршрута (как в шаблоне) */
.arrival-section .route-actions .btn {
	min-height: 46px;
	padding: 0 22px;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
}

.arrival-section .route-actions .btn-primary {
	background: var(--tour-lime, #c9e54d);
	color: #29440f;
	border-color: transparent;
}

.arrival-section .route-actions .btn-secondary {
	background: #fff;
	color: var(--tour-forest, #06652e);
	border-color: rgba(255, 255, 255, 0.42);
}

.arrival-section .route-actions .btn-primary:hover {
	opacity: 0.92;
}

.arrival-section .route-actions .btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
	.brand-advantage-grid {
		grid-template-columns: 1fr 1fr;
	}

	.arrival-shell {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.brand-advantage-shell {
		border-radius: 20px;
		padding: 12px;
	}

	.brand-advantage-grid {
		gap: 8px;
	}

	.brand-advantage-item {
		min-height: auto;
		height: auto;
		align-items: flex-start;
		gap: 8px;
		padding: 12px 10px;
		overflow: visible;
	}

	.brand-advantage-item .brand-advantage-icon {
		width: 32px;
		height: 32px;
		border-radius: 9px;
	}

	.brand-advantage-icon svg {
		width: 18px;
		height: 18px;
	}

	.brand-advantage-item b {
		font-size: 11px;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.arrival-section {
		padding: 56px 0;
	}

	.arrival-section .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.arrival-section .section-head p {
		font-size: 14px;
	}

	.arrival-section .section-head h2 {
		font-size: 30px;
		line-height: 30px;
	}

	.arrival-form,
	.route-result {
		padding: 22px;
	}

	.origin-control {
		grid-template-columns: 1fr;
	}

	.arrival-form .btn-primary {
		width: 100%;
	}

	.route-result h3 {
		font-size: 24px;
	}

	.route-chain {
		margin-right: -22px;
		padding-right: 22px;
	}

	.route-actions {
		display: grid;
	}

	.arrival-section .route-actions .btn {
		width: 100%;
	}
}

/* Impressions / «Зачем ехать» — from template */
.tour-impressions {
	padding: 70px 0;
}

.tour-impressions .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-impressions .section-head p {
	color: var(--tour-muted, #65716a);
	max-width: 610px;
	margin-bottom: 0;
}

.tour-impressions .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-impressions .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.experience-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	grid-template-rows: 240px 240px;
	gap: 12px;
}

.experience {
	border-radius: 22px;
	overflow: hidden;
	position: relative;
	color: #fff;
	min-height: 230px;
}

.experience:first-child {
	grid-row: 1 / 3;
}

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

.experience::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 25%, rgba(6, 36, 20, 0.88));
	pointer-events: none;
}

.experience-text {
	position: absolute;
	z-index: 2;
	left: 22px;
	right: 22px;
	bottom: 20px;
}

.experience-text h3 {
	font-size: 22px;
	margin: 0 0 6px;
	color: #fff;
}

.experience-text p {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #edf5ef;
}

@media (max-width: 980px) {
	.experience-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 280px 220px;
	}

	.experience:first-child {
		grid-column: 1 / 3;
		grid-row: auto;
	}
}

@media (max-width: 680px) {
	.tour-impressions {
		padding: 48px 0;
	}

	.tour-impressions .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-impressions .section-head p {
		font-size: 14px;
		margin-top: 12px;
	}

	.tour-impressions .section-head h2 {
		font-size: 30px;
	}

	.experience-grid {
		display: flex;
		overflow: auto;
		gap: 12px;
		margin-right: -12px;
		padding-right: 12px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.experience-grid::-webkit-scrollbar {
		display: none;
	}

	.experience,
	.experience:first-child {
		width: 82vw;
		min-width: 82vw;
		max-width: 82vw;
		height: 340px;
		flex: 0 0 82vw;
		grid-column: auto;
		grid-row: auto;
	}

	.experience-text h3 {
		font-size: 20px;
	}
}

/* Route timeline — from template */
.tour-route {
	padding: 70px 0;
}

.tour-route .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-route .section-head p {
	color: var(--tour-muted, #65716a);
	max-width: 610px;
	margin-bottom: 0;
}

.tour-route .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-route .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.route-card {
	padding: 30px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.08);
}

.tour-map-visual {
	background: #eef6ee;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.tour-map-visual__link {
	display: block;
	position: relative;
}

.tour-map-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.tour-map-visual__zoom {
	display: grid;
	place-items: center;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--tour-forest, #06652e);
	color: #fff;
	z-index: 1;
}

.tour-map-visual__zoom svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.tour-map-note {
	margin-top: 16px;
}

.tour-map-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #455148;
}

.tour-map-note p + p {
	margin-top: 8px;
}

.route-line {
	display: grid;
	grid-template-columns: repeat(var(--route-stops, 6), minmax(0, 1fr));
	gap: 0;
	margin: 28px 0 18px;
	position: relative;
}

@media (max-width: 980px) {
	.route-line {
		display: flex;
		overflow-x: auto;
		gap: 28px;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.route-line::-webkit-scrollbar {
		display: none;
	}

	.route-line::before {
		left: 0;
		right: 0;
	}

	.route-stop {
		min-width: 120px;
		flex: 0 0 auto;
	}
}

.route-line::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 8%;
	right: 8%;
	height: 3px;
	background: linear-gradient(90deg, var(--tour-forest, #06652e), #43ab34);
	border-radius: 99px;
}

.route-stop {
	text-align: center;
	position: relative;
	font-size: 12px;
	color: var(--tour-muted, #65716a);
	padding-top: 30px;
}

.route-stop::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 50%;
	translate: -50% 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	border: 4px solid #43ab34;
	z-index: 2;
	box-sizing: border-box;
}

.route-stop b {
	display: block;
	color: var(--tour-ink, #152019);
	font-size: 13px;
	margin-bottom: 3px;
}

.route-stop span {
	display: block;
}

.route-note {
	background: #f2f7f3;
	border-radius: 14px;
	padding: 13px 16px;
	font-size: 13px;
	color: #455148;
	line-height: 1.45;
}

.route-note b,
.route-note strong {
	font-weight: 700;
}

.route-note p {
	margin: 0;
}

.route-note p + p {
	margin-top: 6px;
}

@media (max-width: 680px) {
	.tour-route {
		padding: 48px 0;
	}

	.tour-route .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-route .section-head p {
		font-size: 14px;
		margin-top: 12px;
	}

	.tour-route .section-head h2 {
		font-size: 30px;
	}

	.route-card {
		padding: 20px;
	}

	.route-line {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		margin: 20px 0;
		overflow: visible;
		padding-bottom: 0;
	}

	.route-line::before {
		left: 9px;
		right: auto;
		top: 11px;
		bottom: 11px;
		width: 2px;
		height: auto;
	}

	.route-stop {
		text-align: left;
		padding: 0 0 18px 34px;
		min-width: 0;
		flex: none;
	}

	.route-stop:last-child {
		padding-bottom: 0;
	}

	.route-stop::before {
		left: 9px;
		top: 2px;
		translate: -50% 0;
	}
}

/* Meeting points — место сбора + Яндекс.Карта */
.meeting-points-section {
	padding: 0 0 70px;
}

.meeting-points-section .section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.meeting-points-section .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.meeting-points-section .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
	font-weight: 700;
}

.meeting-points-section .section-head > p {
	color: var(--tour-muted, #65716a);
	max-width: 610px;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.meeting-points-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

/* Одна точка — только половина ряда */
.meeting-points-grid.is-single {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meeting-points-grid.is-single .meeting-point-card {
	grid-column: 1;
}

.meeting-point-card {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(220px, 1.08fr);
	min-width: 0;
	min-height: 214px;
	height: auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.08);
	align-items: stretch;
}

.meeting-point-copy {
	display: flex;
	align-items: stretch;
	gap: 13px;
	min-width: 0;
	min-height: 100%;
	height: 100%;
	padding: 21px;
}

.meeting-point-pin {
	display: grid;
	place-items: center;
	align-self: flex-start;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 13px;
	background: #e5f2e8;
	color: var(--tour-forest, #06652e);
}

.meeting-point-pin svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.meeting-point-text {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	align-self: stretch;
}

.meeting-point-label {
	display: block;
	margin-bottom: 6px;
	color: var(--tour-forest, #06652e);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.meeting-point-card h3 {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--tour-ink, #152019);
	font-weight: 700;
}

.meeting-point-landmark {
	margin: 0;
	color: var(--tour-muted, #65716a);
	font-size: 12px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.meeting-point-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	color: var(--tour-forest, #06652e);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.meeting-point-link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.meeting-map {
	position: relative;
	min-width: 0;
	min-height: 214px;
	height: 100%;
	background: #dfe9e1;
	overflow: hidden;
}

.meeting-map .ymaps-2-1-copyright,
.meeting-map .ymaps-2-1-map-copyrights-promo,
.meeting-map [class*='copyright'],
.meeting-map [class*='gototech'] {
	display: none !important;
}

.meeting-map__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.meeting-map__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: calc(100% + 40px);
	border: 0;
	display: block;
}

.meeting-map__pin {
	width: 34px;
	height: 44px;
	transform: translate(-50%, -100%);
	pointer-events: none;
	filter: drop-shadow(0 2px 4px rgba(20, 54, 34, 0.28));
}

.meeting-map__pin svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #43ab34;
	stroke: #fff;
	stroke-width: 1.4;
}

.meeting-map__pin circle {
	fill: #fff;
	stroke: none;
}

.meeting-map__zoom {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	background: #fff;
	user-select: none;
}

.meeting-map__zoom-btn {
	box-sizing: border-box;
	display: block;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	color: #464646;
	font: bold 18px/30px 'Lucida Console', Monaco, monospace;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.meeting-map__zoom-btn + .meeting-map__zoom-btn {
	border-top: 1px solid #ccc;
}

.meeting-map__zoom-btn:hover {
	background: #f4f4f4;
	color: #000;
	text-decoration: none;
}

.meeting-points-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 11px 0 0;
	color: var(--tour-muted, #65716a);
	font-size: 11px;
	line-height: 1.5;
}

.meeting-points-note svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	margin-top: 1px;
	fill: none;
	stroke: var(--tour-forest, #06652e);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 1080px) {
	.meeting-points-grid,
	.meeting-points-grid.is-single {
		grid-template-columns: 1fr;
	}

	.meeting-points-grid.is-single .meeting-point-card {
		grid-column: auto;
	}

	.meeting-point-card {
		grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
		height: auto;
		max-height: none;
	}
}

@media (max-width: 680px) {
	.meeting-points-section {
		padding-bottom: 48px;
	}

	.meeting-points-section .section-head {
		display: block;
		margin-bottom: 16px;
	}

	.meeting-points-section .section-head > p {
		margin-top: 12px;
		font-size: 14px;
	}

	.meeting-points-section .section-head h2 {
		font-size: 30px;
	}

	.meeting-point-card {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
		min-height: 0;
	}

	.meeting-point-copy {
		padding: 18px;
	}

	.meeting-point-card h3 {
		font-size: 14px;
	}

	.meeting-map {
		min-height: 190px;
		height: 190px;
	}
}

/* Старый переключатель сезона сверху — перенесён в блок программы */
body.single-tour .tour_variants_tab_mob {
	display: none !important;
}

/* Переключатель сезона */
body.single-tour .tour-season-toggle {
	display: inline-flex;
	gap: 6px;
	background: #eef3ef;
	border-radius: 14px;
	padding: 5px;
	margin: 0 0 20px;
}

body.single-tour .tour-season-toggle .season-btn {
	border: 0;
	background: transparent;
	padding: 9px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tour-muted);
	cursor: pointer;
	font-family: inherit;
	line-height: 1.2;
}

body.single-tour .tour-season-toggle .season-btn.active {
	background: var(--tour-paper);
	color: var(--tour-ink);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Программа по дням */
body.single-tour .tour-program.tour_prog {
	margin-top: 0;
}

.tour-program {
	padding: 20px 0;
}

.tour-program .section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-program .section-head p {
	color: var(--tour-muted);
	max-width: 610px;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.5;
}

.tour-program .section-head .eyebrow {
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 8px;
}

.tour-program .section-head h2 {
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.tour-program .program-head-aside {
	display: flex;
	align-items: flex-start;
	flex: 0 1 560px;
	flex-direction: column;
	gap: 14px;
	position: relative;
}

.tour-program .program-head-aside > p {
	margin: 0;
}

.tour-fit__sidebar .program-curator-desktop,
.program-curator-desktop {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 70px;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 18px;
	padding: 9px 13px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(18, 55, 35, 0.08);
	box-sizing: border-box;
}

.tour-fit__sidebar .curator-photo,
.program-curator-desktop .curator-photo {
	display: block;
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border-radius: 50%;
	background: center / cover no-repeat url("../img/program-curator.webp");
}

.program-curator-desktop .program-curator-copy b,
.program-curator-desktop .program-curator-copy strong,
.program-curator-desktop .program-curator-copy span {
	display: block;
}

.program-curator-desktop .program-curator-copy b {
	margin-bottom: 2px;
	color: var(--tour-ink);
	font-size: 12px;
	line-height: 1.35;
}

.program-curator-desktop .program-curator-copy strong {
	font-size: 13px;
	line-height: 1.35;
}

.program-curator-desktop .program-curator-copy span {
	color: var(--tour-muted);
	font-size: 10px;
	line-height: 1.45;
}

.tour-trust-card {
	width: 100%;
	border-radius: 22px;
	padding: 20px 18px;
	background: var(--tour-forest);
	box-sizing: border-box;
}

.tour-trust-card .tour-trust-item b {
	color: #fff;
}

.tour-trust-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-trust-item {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
}

.tour-trust-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 50%;
	background: #fff;
	color: var(--tour-forest);
}

.tour-trust-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tour-trust-item b {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--tour-ink);
}

.tour-program .program-list {
	display: grid;
	gap: 12px;
}

.tour-program .program-list .day {
	overflow: hidden;
	background: var(--tour-paper);
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
}

.tour-program .day-button {
	width: 100%;
	border: 0;
	background: var(--tour-paper);
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr) auto;
	align-items: center;
	text-align: left;
	padding: 18px;
	gap: 18px;
	cursor: pointer;
	font-family: inherit;
}

.tour-program .day-image {
	width: 88px;
	height: 74px;
	object-fit: cover;
	border-radius: 13px;
	display: block;
	flex-shrink: 0;
}

.tour-program .day-image--placeholder {
	background: linear-gradient(135deg, #dbe8dd, #edf5ef);
}

.tour-program .day-kicker {
	display: block;
	color: var(--tour-forest);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tour-program .day-title {
	font-size: 18px;
	font-weight: 700;
	display: block;
	color: var(--tour-ink);
	line-height: 1.3;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-program .day-route {
	font-size: 12px;
	color: var(--tour-muted);
	display: block;
	margin-top: 5px;
	line-height: 1.4;
}

.tour-program .chevron {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #edf5ef;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: center;
	transition: rotate 0.2s ease;
	color: var(--tour-forest);
	font-size: 0;
	line-height: 0;
}

.tour-program .chevron::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: -2px;
}

.tour-program .day.open .chevron {
	rotate: 180deg;
}

.tour-program .day-content {
	display: none;
	border-top: 1px solid var(--tour-line);
	padding: 24px 28px 28px;
	min-width: 0;
	max-width: 100%;
	overflow-x: clip;
}

.tour-program .day.open .day-content {
	display: block;
}

.tour-program .day-intro {
	font-size: 16px;
	line-height: 1.65;
	color: #425047;
	max-width: 770px;
	margin: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-program .timeline {
	display: grid;
	gap: 0;
	margin-top: 20px;
	min-width: 0;
	max-width: 100%;
}

.tour-program .time-row {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 18px;
	position: relative;
	padding: 0 0 22px;
	min-width: 0;
	max-width: 100%;
}

.tour-program .time-row:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 77px;
	top: 22px;
	bottom: 0;
	width: 1px;
	background: #cfddd2;
}

.tour-program .time-row .time {
	font-size: 13px;
	font-weight: 700;
	color: var(--tour-forest);
	min-width: 0;
	white-space: pre-line;
}

.tour-program .activity {
	padding-left: 22px;
	position: relative;
	min-width: 0;
	max-width: 100%;
}

.tour-program .activity::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--tour-lime);
	box-shadow: 0 0 0 5px #e8f3ea;
}

.tour-program .activity b {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	color: var(--tour-ink);
	overflow-wrap: anywhere;
	word-break: break-word;
	white-space: normal;
}

.tour-program .activity p {
	font-size: 13px;
	color: var(--tour-muted);
	margin: 0;
	line-height: 1.5;
	overflow-wrap: anywhere;
	word-break: break-word;
	white-space: normal;
}

.tour-program .value-tag {
	display: inline-flex;
	margin-top: 8px;
	padding: 5px 8px;
	border-radius: 8px;
	background: #edf5ef;
	color: var(--tour-forest);
	font-size: 11px;
	font-weight: 600;
}

.tour-program .tour-program-text,
.tour-program .tour-program-include {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #425047;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-program .tour-program-info {
	margin-top: 16px;
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.6;
	color: #425047;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-program .tour-program-include img,
.tour-program .tour-program-include table,
.tour-program .tour-program-include iframe,
.tour-program .tour-program-include video {
	max-width: 100%;
}

.tour-program .tour_prog_acc_tit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
	padding: 15px 18px;
	border: 1px solid var(--tour-line);
	border-radius: 13px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--tour-ink);
}

.tour-program .tour_prog_acc_tit span:first-child {
	flex: 1;
}

.tour-program .tour_prog_acc_tit__chevron {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #edf5ef;
	flex-shrink: 0;
	position: relative;
}

.tour-program .tour_prog_acc_tit__chevron::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid var(--tour-forest);
	border-bottom: 2px solid var(--tour-forest);
	transform: translate(-50%, -65%) rotate(45deg);
	transition: transform 0.2s ease;
}

.tour-program .tour_prog_acc_tit.open .tour_prog_acc_tit__chevron::before {
	transform: translate(-50%, -35%) rotate(225deg);
}

.tour-program .tour_prog_acc {
	display: none;
	padding: 4px 0 8px;
}

.tour-program .tour_prog_acc.open {
	display: block;
}

.tour-program .tour_prog_acc .timeline {
	margin-top: 12px;
}

.tour-program .tour_prog_acc .tour-program-info {
	margin-top: 12px;
	margin-bottom: 15px;
}

.tour-program-actions {
	margin-top: 18px;
}

.tour-program-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tour-program-buttons .btn {
	min-height: 52px;
	padding: 0 22px;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	line-height: 1.2;
	text-decoration: none;
	box-sizing: border-box;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tour-program-buttons .btn:hover {
	transform: translateY(-1px);
}

.tour-program-buttons .btn-secondary {
	background: var(--tour-forest);
	color: #fff;
}

.tour-program-buttons .btn-ghost {
	background: var(--tour-paper);
	border-color: var(--tour-line);
	color: var(--tour-ink);
}

.tour-program-memo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tour-forest);
	text-decoration: none;
}

.tour-program-memo img {
	width: 20px;
	height: 20px;
}

.tour-route-map-modal {
	position: fixed;
	inset: 0;
	z-index: 1205;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.tour-route-map-modal.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
}

.tour-route-map-modal__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 640px);
	max-height: min(90vh, 820px);
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-route-map-modal.has-route-map .tour-route-map-modal__dialog {
	width: min(100%, 520px);
	max-height: min(92vh, 900px);
}

.tour-route-map-modal.is-open .tour-route-map-modal__dialog {
	transform: none;
}

.tour-route-map-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-route-map-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-route-map-modal__head p,
.tour-route-map-modal__lead {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted, #65716a);
}

.tour-route-map-modal__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #eef3ef;
	color: var(--tour-forest, #06652e);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.tour-route-map-modal__body {
	padding: 0 24px 24px;
}

.tour-route-map-modal__schema {
	background: #eef6ee;
	border-radius: 16px;
	overflow: hidden;
	line-height: 0;
	min-height: 200px;
	position: relative;
}

.tour-route-map-modal__schema.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #eef6ee 0%, #f7fbf7 45%, #eef6ee 90%);
	background-size: 200% 100%;
	animation: tour-route-map-shimmer 1.1s ease-in-out infinite;
}

@keyframes tour-route-map-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

.tour-route-map-modal__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(70vh, 720px);
	object-fit: contain;
	background: #f4f7f4;
}

.tour-route-map-modal__svg {
	display: block;
	width: 100%;
	height: auto;
	max-height: 320px;
}

body.tour-route-map-modal-open {
	overflow: hidden;
}

.tour-program-modal {
	position: fixed;
	inset: 0;
	z-index: 1206;
	background: rgba(8, 26, 16, 0.62);
	padding: 16px;
	display: none;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.tour-program-modal.is-open {
	display: grid;
	opacity: 1;
	pointer-events: auto;
}

.tour-program-modal__dialog {
	background: #fff;
	border-radius: 24px;
	width: min(100%, 560px);
	max-height: min(780px, calc(100vh - 32px));
	overflow: auto;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.2s;
}

.tour-program-modal.is-open .tour-program-modal__dialog {
	transform: none;
}

.tour-program-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-program-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #1a2b20);
}

.tour-program-modal__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted, #65716a);
}

.tour-program-modal__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #eef3ef;
	color: var(--tour-forest, #06652e);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.tour-program-modal__body {
	padding: 10px 24px 25px;
}

.tour-program-modal__send-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-bottom: 18px;
}

.tour-program-modal__send-options .send-option {
	border: 1px solid var(--tour-line);
	border-radius: 13px;
	background: #fff;
	padding: 14px 8px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	color: var(--tour-ink);
}

.tour-program-modal__send-options .send-option.active {
	border: 2px solid var(--tour-forest);
	background: #eef6f0;
	padding: 13px 7px;
}

.tour-program-modal__field {
	display: grid;
	gap: 6px;
	margin-bottom: 13px;
}

.tour-program-modal__field label {
	font-size: 12px;
	font-weight: 600;
	color: var(--tour-ink);
}

.tour-program-modal__field input {
	width: 100%;
	height: 50px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	color: var(--tour-ink);
	outline: none;
	font-family: inherit;
	font-size: 14px;
}

.tour-program-modal__field input:focus {
	border-color: var(--tour-forest);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.1);
}

.tour-program-modal__form .btn-block {
	width: 100%;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}

.tour-program-modal__form .btn-primary {
	background: var(--tour-orange, #e24420);
	color: #fff;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
}

.tour-program-modal__form .btn-primary:hover {
	opacity: 0.94;
}

.tour-program-modal__form .btn-primary:disabled {
	opacity: 0.65;
	cursor: wait;
}

.tour-program-modal__form .btn-ghost {
	background: #fff;
	border-color: var(--tour-line);
	color: var(--tour-ink);
	margin-top: 8px;
}

.tour-program-modal__form .btn-ghost:hover {
	border-color: var(--tour-forest);
}

.tour-program-modal__consent {
	font-size: 10px;
	color: var(--tour-muted);
	margin: 12px 0 0;
	line-height: 1.45;
}

.tour-program-modal__consent a {
	color: var(--tour-forest);
}

.tour-form-submit-error {
	margin: 0 0 10px;
	padding: 10px 12px;
	border-radius: 10px;
	background: #fdeceb;
	border: 1px solid #f0b4ae;
	color: #9b1c1c;
	font-size: 13px;
	line-height: 1.4;
}

.tour-form-submit-error[hidden] {
	display: none;
}

.tour-program-modal__success {
	text-align: center;
	padding: 20px 0 8px;
}

.tour-program-modal__success[hidden] {
	display: none;
}

.tour-program-modal__success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e0f0e4;
	color: var(--tour-forest);
	font-size: 30px;
	margin: 0 auto 15px;
}

.tour-program-modal__success h3 {
	margin: 0 0 8px;
	font-size: 22px;
	color: var(--tour-ink);
}

.tour-program-modal__success p {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--tour-muted);
	line-height: 1.5;
}

.tour-program-modal__back {
	border: 0;
	background: #eef3ef;
	color: var(--tour-forest);
	border-radius: 13px;
	min-height: 46px;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

body.tour-program-modal-open {
	overflow: hidden;
}

@media (max-width: 680px) {
	.tour-program-buttons {
		flex-direction: column;
	}

	.tour-program-buttons .btn {
		width: 100%;
	}

	.tour-route-map-modal__dialog {
		width: 100%;
	}

	.tour-program-modal__send-options {
		grid-template-columns: 1fr;
	}

	.tour-program-modal__dialog {
		width: 100%;
		border-radius: 21px;
	}
}

.tour-program-footer {
	margin-top: 16px;
	font-size: 13px;
	color: var(--tour-muted);
	line-height: 1.5;
}

.tour-hotels-redesign {
	padding: 36px 0 70px;
}

.tour-hotels-redesign .section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-hotels-redesign .section-head p {
	margin-bottom: 0;
	max-width: 610px;
	color: var(--tour-muted);
	font-size: 15px;
	line-height: 1.5;
}

.tour-hotels-redesign .section-head .eyebrow {
	margin: 0 0 8px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tour-hotels-redesign .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.tour-hotels-redesign .hotel-tabs {
	display: grid;
	grid-template-columns: repeat(var(--hotel-tab-count, 4), minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 18px;
}

.tour-hotels-redesign .hotel-tab {
	border: 1px solid rgba(6, 101, 46, 0.1);
	background: #fff;
	border-radius: 14px;
	padding: 12px 10px;
	text-align: left;
	color: var(--tour-ink);
	min-width: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tour-hotels-redesign .hotel-tab.active {
	background: var(--tour-forest);
	color: #fff;
	border-color: var(--tour-forest);
}

.tour-hotels-redesign .hotel-tab b,
.tour-hotels-redesign .hotel-tab small {
	display: block;
}

.tour-hotels-redesign .hotel-tab b {
	font-size: 14px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.tour-hotels-redesign .hotel-tab small {
	margin-top: 4px;
	opacity: 0.72;
	font-size: 11px;
	line-height: 1.35;
}

.tour-hotels-redesign .hotel-panel {
	display: none;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 24px;
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.08);
}

.tour-hotels-redesign .hotel-panel.active {
	display: grid;
}

.tour-hotels-redesign .hotel-panel__media img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 16px;
}

.tour-hotels-redesign .hotel-panel__eyebrow {
	margin: 0 0 6px;
	color: var(--tour-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tour-hotels-redesign .hotel-panel h3 {
	margin: 0 0 7px;
	font-size: 30px;
	line-height: 1.1;
}

.tour-hotels-redesign .hotel-panel__body > p {
	margin: 0;
	color: var(--tour-muted);
	font-size: 14px;
	line-height: 1.5;
}

.tour-hotels-redesign .hotel-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
}

.tour-hotels-redesign .hotel-feature {
	background: #eef5ef;
	padding: 7px 9px;
	border-radius: 9px;
	font-size: 12px;
	color: #3d4a42;
}

.tour-hotels-redesign .hotel-warning {
	margin-top: 16px;
	font-size: 12px;
	line-height: 1.5;
	background: #f8f3e9;
	border-radius: 11px;
	padding: 11px 13px;
	color: #735326;
}

.tour-hotels-redesign .hotel-panel__link {
	margin-top: 16px;
}

.tour-hotels-redesign .hotel-examples-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid var(--tour-line, #dce4de);
	border-radius: 13px;
	background: #fff;
	color: var(--tour-ink, #152019);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tour-hotels-redesign .hotel-examples-btn:hover,
.tour-hotels-redesign .hotel-examples-btn:focus-visible {
	transform: translateY(-1px);
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 8px 20px rgba(20, 54, 34, 0.1);
}

.hotel-examples-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: start center;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 56px 16px 24px;
	background: rgba(8, 26, 16, 0.62);
}

.hotel-examples-modal[hidden] {
	display: none;
}

body.hotel-examples-modal-open {
	overflow: hidden;
}

body.hotel-examples-modal-open .tour-sticky-cta,
body.hotel-examples-modal-open .tour-mobile-bar,
body.hotel-examples-modal-open .tour_fix_menu_mob,
body.hotel-examples-modal-open .tour_fix_menu {
	display: none !important;
}

.hotel-examples-modal__dialog {
	width: min(100%, 880px);
	max-height: calc(100vh - 80px);
	overflow: auto;
	overscroll-behavior: contain;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.hotel-examples-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.hotel-examples-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.15;
}

.hotel-examples-modal__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted);
}

.hotel-examples-modal__close {
	flex: 0 0 auto;
	border: 0;
	background: #eef3ef;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	color: var(--tour-forest);
	cursor: pointer;
}

.hotel-examples-modal__body {
	padding: 10px 24px 25px;
}

.hotel-examples-track {
	display: flex;
	gap: 14px;
	/* overflow-y: hidden — иначе тень карточки делает ленту вертикально
	   прокручиваемой на пару пикселей, и тачпад дёргает её при скролле */
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	margin: -6px -2px 0;
	padding: 6px 2px 16px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.hotel-examples-track::-webkit-scrollbar {
	height: 6px;
}

.hotel-examples-track::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #cfdcd3;
}

.hotel-example-card {
	display: flex;
	flex-direction: column;
	flex: 0 0 240px;
	width: 240px;
	overflow: hidden;
	border: 1px solid var(--tour-line, #dce4de);
	border-radius: 16px;
	background: #fff;
	color: var(--tour-ink, #152019);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-example-card:hover,
.hotel-example-card:focus-visible {
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 6px 14px rgba(20, 54, 34, 0.12);
	color: var(--tour-ink, #152019);
}

.hotel-example-card__media {
	display: block;
}

.hotel-example-card__media img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.hotel-example-card__body {
	display: block;
	padding: 12px 14px;
}

.hotel-example-card__body b {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.hotel-example-card__body small {
	display: block;
	margin-top: 4px;
	color: var(--tour-muted, #65716a);
	font-size: 12px;
	line-height: 1.4;
}

.hotel-examples-modal__note {
	margin: 14px 0 0;
	color: var(--tour-muted, #65716a);
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 680px) {
	.hotel-examples-modal {
		padding: 24px 12px 16px;
	}

	.hotel-examples-modal__head {
		padding: 18px 16px 12px;
	}

	.hotel-examples-modal__head h2 {
		font-size: 21px;
	}

	.hotel-examples-modal__body {
		padding: 8px 16px 20px;
	}

	.hotel-example-card {
		flex-basis: 200px;
		width: 200px;
	}

	.hotel-example-card__media img {
		height: 128px;
	}
}

.tour-hotels-redesign .hotel-network-note {
	display: flex;
	align-items: center;
	gap: 13px;
	width: max-content;
	max-width: 100%;
	margin-top: 16px;
	border-radius: 15px;
	padding: 14px 16px;
	background: #e8f2eb;
	color: var(--tour-ink);
}

.tour-hotels-redesign .hotel-network-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 11px;
	background: #fff;
	color: var(--tour-forest);
}

.tour-hotels-redesign .hotel-network-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tour-hotels-redesign .hotel-network-note b {
	font-size: 12px;
	line-height: 1.45;
}

.tour-price-redesign {
	padding: 70px 0 0 0;
}

.tour-price-redesign .section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-price-redesign .section-head p {
	margin-bottom: 0;
	max-width: 610px;
	color: var(--tour-muted);
	font-size: 15px;
	line-height: 1.5;
}

.tour-price-redesign .section-head .eyebrow {
	margin: 0 0 8px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tour-price-redesign .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.tour-price-redesign .price-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.tour-price-redesign .include-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 26px;
	border: 1px solid transparent;
	border-radius: 22px;
	box-shadow: 0 8px 25px rgba(20, 54, 34, 0.06);
	box-sizing: border-box;
}

.tour-price-redesign .include-card.positive {
	gap: 20px;
	background: #edf6ef;
	border-color: #d7eadb;
}

.tour-price-redesign .include-card.attention {
	gap: 20px;
	background: #fff8ef;
	border-color: #f0dfc7;
}

.tour-price-redesign .include-card h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.15;
}

.tour-price-redesign .check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
	font-size: 14px;
}

.tour-price-redesign .check-list li {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 9px;
}

.tour-price-redesign .checkmark {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #d7ebdc;
	color: var(--tour-forest);
	font-size: 12px;
	font-weight: 700;
}

.tour-price-redesign .attention .checkmark {
	background: #f7e5ca;
	color: #8b591d;
}

.tour-price-redesign .extras-sections {
	display: grid;
	gap: 18px;
	margin-top: 18px;
}

.tour-price-redesign .extras-sections.more-content {
	margin-top: 12px;
}

.tour-price-redesign .extras-section__title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #8b591d;
}

.tour-price-redesign .extras-section .check-list {
	margin-top: 0;
}

.tour-price-redesign .extras-empty {
	margin: 18px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tour-muted, #65716a);
}

.tour-price-redesign .show-more-btn {
	align-self: flex-start;
	margin-top: 14px;
	border: 1px solid rgba(6, 101, 46, 0.1);
	background: #fff;
	border-radius: 13px;
	min-height: 44px;
	padding: 0 18px;
	color: var(--tour-ink);
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 6px 20px rgba(20, 40, 30, 0.05);
}

/* Оба свёрнуты — кнопки на одной линии внизу равных карточек. */
.tour-price-redesign .price-grid:not(.has-expanded) .show-more-btn {
	margin-top: auto;
}

/* Есть раскрытый — у закрытой кнопка остаётся под превью. */
.tour-price-redesign .price-grid.has-expanded .include-card:not(.is-expanded) .show-more-btn {
	margin-top: 14px;
}

.tour-price-redesign .extras-price-link {
	display: inline-flex;
	margin-top: 18px;
	padding: 0;
	border: 0;
	border-bottom: 1px dashed rgba(105, 116, 109, 0.42);
	color: #929b95;
	background: transparent;
	font: inherit;
	font-size: 10px;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
}

.tour-price-redesign .extras-price-link:hover,
.tour-price-redesign .extras-price-link:focus-visible {
	color: #68736c;
	border-bottom-color: #68736c;
}

.tour-extras-price-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: start center;
	overflow-y: auto;
	padding: 56px 16px 24px;
	background: rgba(8, 26, 16, 0.62);
}

.tour-extras-price-modal[hidden] {
	display: none;
}

body.tour-extras-price-modal-open {
	overflow: hidden;
}

body.tour-extras-price-modal-open .tour-sticky-cta,
body.tour-extras-price-modal-open .tour-mobile-bar,
body.tour-extras-price-modal-open .tour_fix_menu_mob,
body.tour-extras-price-modal-open .tour_fix_menu {
	display: none !important;
}

.tour-extras-price-modal__dialog {
	width: min(100%, 720px);
	max-height: calc(100vh - 80px);
	overflow: auto;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.tour-extras-price-modal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 24px 15px;
}

.tour-extras-price-modal__head h2 {
	margin: 0 0 6px;
	font-size: 26px;
}

.tour-extras-price-modal__head p {
	margin: 0;
	font-size: 13px;
	color: var(--tour-muted);
}

.tour-extras-price-modal__close {
	border: 0;
	background: #eef3ef;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 22px;
	color: var(--tour-forest);
	cursor: pointer;
}

.tour-extras-price-modal__body {
	padding: 10px 24px 25px;
}

.tour-extras-price-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tour-extras-price-table {
	width: 100%;
	min-width: 0;
	border-collapse: collapse;
	table-layout: fixed;
	color: #3f4943;
	background: #fff;
	font-size: 12px;
	line-height: 1.4;
}

.tour-extras-price-table th,
.tour-extras-price-table td {
	padding: 9px 8px;
	border: 1px solid rgba(139, 148, 142, 0.22);
	text-align: left;
	vertical-align: top;
}

.tour-extras-price-table th {
	color: var(--tour-forest);
	background: #f0f6f1;
	font-weight: 700;
}

.tour-extras-price-table th:first-child,
.tour-extras-price-table td:first-child {
	position: sticky;
	left: 0;
	z-index: 2;
	width: 42%;
	background: #fff;
	box-shadow: 7px 0 12px -12px rgba(19, 48, 31, 0.72);
}

.tour-extras-price-table th:first-child {
	z-index: 3;
	background: #f0f6f1;
}

.tour-extras-price-note {
	margin: 12px 0 0;
	color: var(--tour-muted);
	font-size: 10px;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.tour-program .section-head {
		display: block;
		margin-bottom: 22px;
	}

	.tour-program .program-head-aside {
		flex: none;
		width: 100%;
		max-width: 100%;
		margin-top: 12px;
	}

	.tour-program .section-head p {
		margin-top: 12px;
		font-size: 14px;
	}

	.tour-program .section-head h2 {
		font-size: 30px;
	}

	.tour-hotels-redesign .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-hotels-redesign .section-head p {
		margin-top: 12px;
		font-size: 14px;
	}

	.tour-hotels-redesign .section-head h2 {
		font-size: 30px;
	}

	.tour-hotels-redesign .hotel-tabs {
		display: flex;
		overflow: auto;
		gap: 8px;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.tour-hotels-redesign .hotel-tabs::-webkit-scrollbar {
		display: none;
	}

	.tour-hotels-redesign .hotel-tab {
		flex: 0 0 150px;
		width: 150px;
		min-width: 150px;
		max-width: 150px;
		padding: 12px;
		box-sizing: border-box;
	}

	.tour-price-redesign .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-price-redesign .section-head p {
		margin-top: 12px;
		font-size: 14px;
	}

	.tour-price-redesign .section-head h2 {
		font-size: 30px;
	}
}

@media (max-width: 680px) {
	.tour-program {
		padding: 48px 0 12px;
	}

	.tour-program .section-head h2 {
		font-size: 30px;
	}

	.program-curator-desktop {
		width: 100%;
		max-width: none;
	}

	.program-curator-desktop .curator-photo {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
	}

	.tour-program .day-button {
		grid-template-columns: 70px 1fr auto;
		padding: 12px;
		gap: 12px;
	}

	.tour-program .day-image {
		width: 70px;
		height: 67px;
	}

	.tour-program .day-title {
		font-size: 15px;
	}

	.tour-hotels-redesign {
		padding: 18px 0 48px;
	}

	.tour-hotels-redesign .section-head h2 {
		font-size: 30px;
	}

	.tour-hotels-redesign .hotel-tabs {
		display: flex;
		overflow: auto;
		gap: 8px;
		margin-right: -12px;
		padding-right: 12px;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.tour-hotels-redesign .hotel-tabs::-webkit-scrollbar {
		display: none;
	}

	.tour-hotels-redesign .hotel-tab {
		flex: 0 0 150px;
		width: 150px;
		min-width: 150px;
		max-width: 150px;
		padding: 12px;
		box-sizing: border-box;
	}

	.tour-hotels-redesign .hotel-tab b {
		font-size: 13px;
	}

	.tour-hotels-redesign .hotel-tab small {
		font-size: 10px;
	}

	.tour-hotels-redesign .hotel-panel,
	.tour-hotels-redesign .hotel-panel.active {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.tour-hotels-redesign .hotel-panel__media img {
		height: 190px;
	}

	.tour-hotels-redesign .hotel-network-note {
		align-items: flex-start;
		padding: 13px;
	}

	.tour-hotels-redesign .hotel-network-note b {
		font-size: 11px;
	}

	.tour-price-redesign {
		padding: 0 0 48px;
	}

	.tour-price-redesign .section-head h2 {
		font-size: 30px;
	}

	.tour-price-redesign .price-grid {
		grid-template-columns: 1fr;
	}

	.tour-price-redesign .include-card {
		padding: 21px;
	}

	.tour-price-redesign .extras-price-link {
		align-items: center;
		min-height: 44px;
		padding: 8px 0;
		font-size: 11px;
	}

	.tour-extras-price-modal {
		padding: 24px 0 0;
		place-items: end stretch;
	}

	.tour-extras-price-modal__dialog {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: min(92vh, 760px);
		max-height: calc(100vh - 24px);
		overflow: hidden;
		border-radius: 22px 22px 0 0;
	}

	.tour-extras-price-modal__head {
		flex: 0 0 auto;
		align-items: center;
		padding: 17px 16px 14px;
		border-bottom: 1px solid var(--tour-line);
		background: #fff;
	}

	.tour-extras-price-modal__head h2 {
		font-size: 22px;
		line-height: 1.15;
	}

	.tour-extras-price-modal__head p {
		font-size: 12px;
	}

	.tour-extras-price-modal__close {
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
	}

	.tour-extras-price-modal__body {
		flex: 1;
		min-height: 0;
		overflow-y: auto;
		padding: 14px 14px max(24px, env(safe-area-inset-bottom));
	}

	.tour-extras-price-table-wrap {
		overflow: visible;
	}

	.tour-extras-price-table,
	.tour-extras-price-table tbody {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.tour-extras-price-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.tour-extras-price-table tbody tr {
		display: block;
		overflow: hidden;
		margin-bottom: 12px;
		border: 1px solid var(--tour-line);
		border-radius: 14px;
		background: #fff;
	}

	.tour-extras-price-table td {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
		width: 100%;
		padding: 10px 12px;
		border: 0;
		border-top: 1px solid var(--tour-line);
		font-size: 12px;
		white-space: normal;
	}

	.tour-extras-price-table td::before {
		content: attr(data-label);
		color: var(--tour-muted);
		font-size: 11px;
		line-height: 1.35;
	}

	.tour-extras-price-table td:first-child {
		position: static;
		display: block;
		width: auto;
		padding: 13px 12px;
		border-top: 0;
		background: #f0f6f1;
		box-shadow: none;
		color: var(--tour-forest);
		font-weight: 700;
		line-height: 1.4;
	}

	.tour-extras-price-table td:first-child::before {
		content: none;
	}

	.tour-extras-price-note {
		padding: 0 2px;
	}

	.tour-program .day-content {
		padding: 18px;
	}

	.tour-program .day-button {
		grid-template-columns: 64px minmax(0, 1fr) auto;
		gap: 12px;
		padding: 14px;
	}

	.tour-program .day-image {
		width: 64px;
		height: 64px;
	}

	.tour-program .day-title {
		min-width: 0;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.tour-program .time-row {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 8px;
	}

	.tour-program .time-row:not(:last-child)::before {
		left: 52px;
	}

	.tour-program .activity {
		padding-left: 16px;
	}
}

/* ===== Предварительный расчёт (калькулятор) ===== */
.tour-calculator-section {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 28px;
	margin-bottom: 48px;
	padding: 64px 0;
	background: linear-gradient(150deg, #eff7f1, #e2eee5);
	box-sizing: border-box;
}

.tour-calculator-section > .container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.tour-calculator-section .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-calculator-section .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-calculator-section .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	color: var(--tour-ink);
	font-weight: 700;
}

.tour-calculator-section .section-head > p {
	max-width: 420px;
	margin: 0;
	color: var(--tour-muted);
	font-size: 15px;
	line-height: 1.5;
}

.tour-calculator-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 18px;
	align-items: start;
}

.tour-main-calculator {
	padding: 28px;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 24px;
	box-shadow: 0 10px 28px rgba(18, 55, 35, 0.06);
}

.tour-calc-step {
	display: grid;
	grid-template-columns: 35px 1fr;
	gap: 14px;
	padding: 0 0 25px;
}

.tour-calc-step + .tour-calc-step {
	border-top: 1px solid var(--tour-line);
	padding-top: 25px;
}

.tour-calc-step__no {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e3f1e6;
	color: var(--tour-forest);
	font-size: 11px;
	font-weight: 800;
}

.tour-calc-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;
	width: 100%;
	margin-bottom: 15px;
}

.tour-calculator-section .calend_block,
.tour-calculator-section .tour-calc-date-pick,
.tour-calculator-section .tour-calc-step > div {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	position: relative;
}

.tour-calc-title > div:first-child {
	min-width: 0;
	flex: 1 1 auto;
}

.tour-calc-title .btn,
.tour-calc-title .tour-calc-date-pick__btn,
.tour-calc-title a.btn {
	flex: 0 0 auto;
	margin-left: auto;
	align-self: center;
}

.tour-calculator-section .tour-calc-title .tour-calc-date-pick__btn,
.tour-calculator-section .tour-calc-title .btn-ghost {
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--tour-line);
	border-radius: 12px;
	background: #fff;
	color: var(--tour-ink);
	font-size: 13px;
	font-weight: 600;
	box-shadow: none;
}

.tour-calc-title small {
	display: block;
	color: var(--tour-muted);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tour-calc-title h3 {
	margin: 3px 0 0;
	font-size: 20px;
	line-height: 1.25;
	color: var(--tour-ink);
}

.tour-calc-note {
	margin: 8px 0 0;
	color: var(--tour-muted);
	font-size: 12px;
	line-height: 1.45;
}

.tour-calc-promo {
	margin-top: 14px;
	max-width: 360px;
}

.tour-calc-promo__input {
	width: 100%;
	height: 48px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 14px;
	background: #fff;
	color: var(--tour-ink, #152019);
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

.tour-calc-promo__input:focus {
	border-color: var(--tour-forest, #06652e);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.1);
}

.tour-calc-promo__input::placeholder {
	color: #8a968d;
}

.tour-calculator-section .calc.calend_block,
.tour-calculator-section .tour-calc-date-pick {
	display: block;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.tour-calculator-section .calc.calend_block .tour-calc-title {
	width: 100%;
}

.tour-calculator-section .tour-calc-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;
	width: 100%;
	margin-bottom: 15px;
}

.tour-calculator-section .tour-calc-title .btn,
.tour-calculator-section .tour-calc-title .tour-calc-date-pick__btn,
.tour-calculator-section .tour-calc-title a.btn {
	margin-left: auto !important;
	flex: 0 0 auto;
}

.tour-calculator-section .calc__step,
.tour-calculator-section .tour-calc-hotels-head + .calc .calc__step,
.tour-calculator-section .tour-calc-hotels-head + .calc .calc__title {
	display: none;
}

.tour-calculator-section .calc_qty .calc__step,
.tour-calculator-section .calc_qty .calc__title {
	display: none;
}

.tour-calc-counter-group {
	display: flex;
	gap: 20px;
	margin-top: 15px;
}

.tour-calc-counter-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tour-calc-counter-item > span {
	font-size: 10px;
	font-weight: 700;
	color: var(--tour-muted);
	text-transform: uppercase;
}

.tour-calc-counter {
	display: flex;
	align-items: center;
	border: 1px solid var(--tour-line);
	border-radius: 11px;
	overflow: hidden;
	background: #fff;
}

.tour-calc-counter button {
	width: 40px;
	height: 40px;
	border: 0;
	background: #fff;
	color: var(--tour-forest);
	font-size: 20px;
	cursor: pointer;
}

.tour-calc-counter button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.tour-calc-counter b {
	min-width: 31px;
	text-align: center;
	font-size: 14px;
}

.tour-tourist-list {
	display: grid;
	gap: 8px;
	margin-top: 13px;
}

.tour-tourist-row {
	display: grid;
	grid-template-columns: 112px 92px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	border: 1px solid #e2e9e3;
	border-radius: 12px;
	padding: 9px 10px;
	background: #f8faf8;
}

.tour-tourist-row > span {
	font-size: 11px;
	font-weight: 700;
	color: var(--tour-ink);
}

.tour-tourist-row select,
.tour-tourist-row .tour-tourist-age {
	width: 100%;
	min-width: 0;
	height: 42px;
	border: 1px solid #cfd9d1;
	border-radius: 10px;
	padding: 0 36px 0 11px;
	background: #fff;
	color: var(--tour-ink);
	font-size: 11px;
	outline: none;
	box-sizing: border-box;
}

.tour-tourist-row .tour-tourist-age {
	padding-right: 11px;
	-moz-appearance: textfield;
}

.tour-tourist-row .tour-tourist-age::-webkit-outer-spin-button,
.tour-tourist-row .tour-tourist-age::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.tour-tourist-row select:focus,
.tour-tourist-row .tour-tourist-age:focus {
	border-color: var(--tour-forest);
	box-shadow: 0 0 0 3px rgba(6, 101, 46, 0.1);
}

.tour-calc-benefit-note {
	margin: 9px 0 0;
	color: var(--tour-muted);
	font-size: 11px;
	line-height: 1.5;
}

.tour-calc-hotels {
	display: flex;
	flex-wrap: nowrap;
	gap: 7px;
	margin-top: 15px;
}

.tour-calc-hotel {
	flex: 1 1 0;
	min-width: 0;
	border: 1px solid var(--tour-line);
	border-radius: 11px;
	padding: 10px;
	text-align: left;
	background: #fff;
	cursor: pointer;
	color: inherit;
}

.tour-calc-hotel.is-active {
	border: 2px solid var(--tour-forest);
	padding: 9px;
	background: #f0f8f2;
}

.tour-calc-hotel.is-unavailable {
	opacity: 0.42;
	filter: grayscale(1);
	cursor: not-allowed;
	pointer-events: none;
	background: #f3f5f3;
}

.tour-calc-hotel.is-unavailable.is-active {
	border-color: #c5cdc7;
	background: #f3f5f3;
}

.tour-calc-hotel.is-unavailable .tour-calc-hotel-price {
	color: #8a938c;
}

.tour-calc-hotel.is-request .tour-calc-hotel-price {
	color: #c47a00;
}

.tour-calc-hotel b,
.tour-calc-hotel span {
	display: block;
}

.tour-calc-hotel b {
	font-size: 12px;
	font-weight: 700;
	color: var(--tour-ink);
}

.tour-calc-hotel span {
	margin-top: 3px;
	color: var(--tour-forest);
	font-size: 10px;
	font-weight: 600;
}

.tour-calc-step > div {
	min-width: 0;
	position: relative;
}

.tour-calc-qty-engine,
.tour-calc-hotels-engine {
	position: absolute !important;
	left: -9999px !important;
	top: 0 !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	border: 0 !important;
}

.tour-calculator-section .calc-amount {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-calculator-section .calc-amount__item {
	border: 1px solid #e2e9e3;
	border-radius: 12px;
	padding: 12px;
	background: #f8faf8;
	margin-bottom: 8px;
}

.tour-calculator-section .calc__choose {
	display: inline-flex;
	margin-top: 12px;
}

.tour-calculator-section .tour-calc-summary-step {
	border-top: 1px solid var(--tour-line);
	padding-top: 22px;
	margin-top: 4px;
}

.tour-calc-total {
	border-radius: 18px;
	padding: 20px;
	background: #f3f7f4;
	margin-top: 8px;
}

.tour-calc-lines {
	display: grid;
	gap: 7px;
	margin-bottom: 0;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--tour-line);
}

.tour-calc-lines[hidden] {
	display: none;
}

.tour-calc-lines p {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	color: var(--tour-muted);
	font-size: 13px;
	line-height: 1.35;
}

.tour-calc-lines b {
	color: var(--tour-ink);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.tour-calc-lines:not([hidden]) + .tour-calc-grand {
	padding-top: 16px;
}

.tour-calc-grand {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 22px;
	padding-top: 0;
}

.tour-calc-grand small {
	display: block;
	color: var(--tour-muted);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tour-calc-grand .calc_sum_total,
.tour-calc-grand strong {
	display: block;
	margin-top: 0;
	font-size: 34px;
	line-height: 1.05;
	font-weight: 800;
	color: var(--tour-ink);
}

.tour-calc-grand .calc_sum_num_people,
.tour-calc-grand > div > span {
	display: inline;
	margin-top: 4px;
	color: var(--tour-muted);
	font-size: 12px;
	font-weight: 400;
}

.tour-calc-grand > div > span {
	display: block;
}

.tour-calc-grand .btn {
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	background: var(--tour-orange);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
	white-space: nowrap;
}

.tour-calc-promises {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 11px;
}

.tour-calc-promises span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border-radius: 999px;
	padding: 5px 9px;
	background: #fff;
	color: var(--tour-forest);
	font-size: 10px;
	font-weight: 700;
}

.tour-calc-promises--on-dark {
	margin: 14px 0 0;
}

.tour-calc-promises--on-dark span {
	background: rgba(255, 255, 255, 0.12);
	color: #e8f4eb;
}

.tour-calc-quick-card {
	position: sticky;
	top: 136px;
	border-radius: 22px;
	padding: 27px;
	background: var(--tour-forest);
	color: #fff;
	box-shadow: 0 18px 46px rgba(6, 101, 46, 0.2);
	z-index: 12;
}

.tour-calc-quick-card .eyebrow {
	margin: 0 0 8px;
	color: #cee8d5;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-calc-quick-card h3 {
	margin: 0;
	font-size: 27px;
	line-height: 1.15;
	color: #fff;
}

.tour-calc-quick-card > .tour-calc-quick-form-wrap > p:not(.eyebrow) {
	margin: 10px 0 0;
	color: #d4e9d9;
	font-size: 13px;
	line-height: 1.5;
}

.tour-calc-quick-form {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.tour-calc-quick-form label {
	display: grid;
	gap: 4px;
	color: #dceee0;
	font-size: 13px;
}

.tour-calc-quick-form input {
	width: 100%;
	height: 44px;
	border: 1px solid #cfd9d1;
	border-radius: 12px;
	padding: 0 13px;
	background: #fff;
	color: var(--tour-ink);
	outline: none;
	box-sizing: border-box;
}

.tour-calc-quick-form input:focus {
	border-color: var(--tour-lime);
	box-shadow: 0 0 0 3px rgba(201, 229, 77, 0.25);
}

.tour-calc-quick-form .btn {
	width: 100%;
	min-height: 48px;
	margin-top: 2px;
	border: 0;
	border-radius: 13px;
	background: var(--tour-orange);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(226, 68, 32, 0.22);
}

.tour-calc-quick-form > small {
	color: #b8d4bf;
	font-size: 11px;
	line-height: 1.45;
}

.tour-calc-quick-success {
	padding: 45px 0;
	text-align: center;
}

.tour-calc-quick-success[hidden] {
	display: none !important;
}

.tour-calc-quick-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 15px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 30px;
}

.tour-calc-quick-success h3 {
	margin: 0 0 10px;
}

.tour-calc-quick-success p {
	margin: 0;
	color: #d4e9d9;
	font-size: 14px;
	line-height: 1.5;
}

.tour-calculator-section .tour_prog_info,
.tour-calculator-section .tour-calc-summary-step,
.tour-calculator-section .tour-calc-total-sync,
.tour-calculator-section .total.tour-calc-total-sync {
	display: none !important;
}

.tour-calc-step-packages.is-ready .tour-calc-packages-hint {
	display: none;
}

/* Плашки тарифов 1-дневных: без отступов .calc (40/60 сверху, 50 снизу). */
.tour-calculator-section .calc.tour-calc-packages,
.tour-calculator-section .calc.calc_var.calc_step_two.tour-calc-packages {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.tour-calculator-section .calc_var_one_day {
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
}

.tour-calculator-section .calc_var_one_day .calc__radio {
	display: none !important;
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 7px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk > li {
	position: relative;
	display: flex;
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	max-width: none;
	margin: 0;
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk > li:only-child {
	flex: 0 1 auto;
	width: max-content;
	max-width: min(280px, 50%);
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk > li:only-child .select_variant {
	width: auto;
	min-width: 160px;
}

.tour-calculator-section .calc_var_one_day .select_variant_radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk .select_variant {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	margin: 0;
	border: 1px solid var(--tour-line);
	border-radius: 11px;
	padding: 10px;
	background: #fff;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	text-align: left;
	position: relative;
}

.tour-calculator-section .calc_var_one_day .calc__radio-desk .select_variant.active,
.tour-calculator-section .calc_var_one_day .select_variant_radio:checked + .select_variant {
	border: 2px solid var(--tour-forest);
	padding: 9px;
	background: #f0f8f2;
}

.tour-calculator-section .calc_var_one_day .package-desk,
.tour-calculator-section .calc_var_one_day .package-desk:before,
.tour-calculator-section .calc_var_one_day .package-desk:after,
.tour-calculator-section .calc_var_one_day .calc__radio-desk .select_variant.active .package-desk:after {
	box-shadow: none;
	opacity: 1;
}

.tour-calculator-section .calc_var_one_day .package-desk:before,
.tour-calculator-section .calc_var_one_day .package-desk:after {
	display: none !important;
	content: none !important;
}

.tour-calculator-section .calc_var_one_day .package-desk {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 3px;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 100%;
	padding-left: 0;
	position: relative;
}

.tour-calculator-section .calc_var_one_day .package-desk__name {
	min-width: 0;
}

.tour-calculator-section .calc_var_one_day .package-desk__name h4 {
	margin: 0;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--tour-ink);
	/* Длинные названия тарифов — плашка растёт; короткие остаются компактными */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	overflow: hidden;
	word-break: break-word;
}

.tour-calculator-section .calc_var_one_day .package-desk__name span,
.tour-calculator-section .calc_var_one_day .package-desk__name p,
.tour-calculator-section .calc_var_one_day .package-desk__price p {
	display: none !important;
}

.tour-calculator-section .calc_var_one_day .package-desk__price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: auto;
	padding-top: 3px;
}

.tour-calculator-section .calc_var_one_day .package-desk__price span {
	color: var(--tour-forest);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;
}

.tour-calculator-section .calc_var_one_day .package-desk__price s {
	display: none;
}

@media (max-width: 680px) {
	.tour-calculator-section .calc_var_one_day .calc__radio-desk {
		display: flex;
		flex-direction: row;
		overflow: auto;
		flex-wrap: nowrap;
	}

	.tour-calculator-section .calc_var_one_day .calc__radio-desk > li {
		flex: 0 0 auto;
		width: auto;
		min-width: 125px;
		max-width: 180px;
		margin: 0;
	}
}


.tour-calculator-section .calc__tabs-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.tour-calculator-section .calc__tabs-nav .nav-item {
	margin: 0;
}

.tour-calculator-section .calc__tabs-nav .nav-link {
	display: block;
	border: 1px solid var(--tour-line);
	border-radius: 11px;
	padding: 10px;
	background: #fff;
	text-decoration: none;
	color: inherit;
}

.tour-calculator-section .calc__tabs-nav .nav-link.active {
	border: 2px solid var(--tour-forest);
	padding: 9px;
	background: #f0f8f2;
}

.tour-calculator-section .calc__tab-name h4 {
	margin: 0;
	font-size: 13px;
}

.tour-calculator-section .calc__tab-price {
	display: block;
	margin-top: 4px;
	color: var(--tour-forest);
	font-size: 11px;
	font-weight: 700;
}

.tour-calculator-section .btn-ghost {
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--tour-line);
	border-radius: 12px;
	background: #fff;
	color: var(--tour-ink);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 980px) {
	.tour-calculator-layout {
		grid-template-columns: 1fr;
	}

	.tour-calc-quick-card {
		position: static;
	}

	.tour-calculator-section .section-head {
		display: block;
	}

	.tour-calculator-section .section-head > p {
		max-width: none;
		margin-top: 10px;
	}

	.tour-calculator-section .section-head h2 {
		font-size: 28px;
	}
}

@media (max-width: 680px) {
	.tour-calculator-section {
		padding: 48px 0;
		margin-bottom: 28px;
	}

	.tour-main-calculator {
		padding: 18px;
		border-radius: 18px;
	}

	.tour-calc-step {
		grid-template-columns: 28px 1fr;
		gap: 9px;
	}

	.tour-calc-step__no {
		width: 28px;
		height: 28px;
	}

	.tour-calc-title {
		align-items: start;
		flex-wrap: wrap;
	}

	.tour-calc-title h3 {
		font-size: 17px;
	}

	.tour-tourist-row {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 6px;
	}

	.tour-tourist-row > span {
		grid-column: 1 / -1;
	}

	.tour-calc-hotels {
		display: flex;
		overflow: auto;
	}

	.tour-calc-hotel {
		min-width: 125px;
		flex: 0 0 auto;
	}

	.tour-calc-grand {
		align-items: stretch;
		flex-direction: column;
	}

	.tour-calc-grand .btn {
		width: 100%;
	}

	.tour-calc-grand .calc_sum_total,
	.tour-calc-grand strong {
		font-size: 28px;
	}

	.tour-calculator-section .calc__tabs-nav {
		display: flex;
		overflow: auto;
		gap: 7px;
	}

	.tour-calculator-section .calc__tabs-nav .nav-item {
		min-width: 140px;
		flex: 0 0 auto;
	}
}

/* ===== Отзывы (редизайн по шаблону) ===== */
.tour-reviews {
	padding: 56px 0 28px;
	position: relative;
	z-index: 1;
}

.tour-reviews .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-reviews .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-reviews .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

.tour-reviews .section-head > p {
	margin: 0;
	max-width: 420px;
	color: var(--tour-muted, #65716a);
	font-size: 15px;
	line-height: 1.5;
}

.tour-reviews__wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.tour-review-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
	background: var(--tour-paper, #fff);
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
}

.tour-review-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 13px;
}

.tour-review-card__user {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.tour-review-card__avatar {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #dcecdf;
	color: var(--tour-forest, #06652e);
	display: grid;
	place-items: center;
	overflow: hidden;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tour-review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tour-review-card__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--tour-ink, #152019);
	line-height: 1.25;
}

.tour-review-card__meta {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	color: var(--tour-muted, #65716a);
	line-height: 1.35;
}

.tour-review-card__stars {
	flex: 0 0 auto;
	color: #f5a000;
	letter-spacing: 1px;
	font-size: 13px;
	line-height: 1;
}

.tour-review-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #46534b;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-review-card__text.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.tour-review-card__toggle {
	display: block;
	margin-top: 10px;
	border: 0;
	background: none;
	padding: 0;
	color: var(--tour-forest, #06652e);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
}

.tour-review-card__source {
	display: inline-block;
	margin-top: 10px;
	color: var(--tour-forest, #06652e);
	font-size: 12px;
	font-weight: 600;
	text-decoration: underline;
}

.tour-review-card__source:hover {
	text-decoration: none;
}

.tour-review-card__match {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--tour-line, #dce4de);
	color: var(--tour-forest, #06652e);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.tour-reviews__disclaimer {
	margin: 13px 0 0;
	color: var(--tour-muted, #65716a);
	font-size: 11px;
	line-height: 1.45;
}

.tour-reviews__more {
	margin: 10px 0 0;
	font-size: 13px;
}

.tour-reviews__more a {
	color: var(--tour-forest, #06652e);
	font-weight: 600;
	text-decoration: underline;
}

.tour-reviews__more a:hover {
	text-decoration: none;
}

@media (max-width: 980px) {
	.tour-reviews {
		padding: 40px 0 20px;
	}

	.tour-reviews .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-reviews .section-head h2 {
		font-size: 30px;
	}

	.tour-reviews .section-head > p {
		margin-top: 12px;
		max-width: none;
		font-size: 14px;
	}

	.tour-reviews__wrap {
		display: flex;
		overflow-x: auto;
		gap: 12px;
		margin-right: -12px;
		padding-right: 12px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.tour-review-card {
		min-width: 86vw;
		max-width: 86vw;
		flex: 0 0 auto;
	}
}

/* ===== Гиды (редизайн по шаблону) ===== */
.tour-guides {
	padding: 70px 0;
}

.tour-guides .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-guides .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-guides .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

.tour-guides .section-head > p {
	margin: 0;
	max-width: 420px;
	color: var(--tour-muted, #65716a);
	font-size: 15px;
	line-height: 1.5;
}

.tour-guides__wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	justify-content: start;
	align-items: stretch;
	gap: 18px;
}

.tour-guides__note {
	display: flex;
	align-items: center;
	gap: 13px;
	width: max-content;
	max-width: 100%;
	margin-top: 16px;
	border-radius: 15px;
	padding: 14px 16px;
	background: #e8f2eb;
	color: var(--tour-ink);
}

.tour-guides__note-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 11px;
	background: #fff;
	color: var(--tour-forest);
}

.tour-guides__note-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tour-guides__note b {
	font-size: 12px;
	line-height: 1.45;
}

.tour-guide-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	background: #f7f7f3;
	border: 1px solid rgba(6, 101, 46, 0.08);
	border-radius: 14px;
	box-shadow: none;
	text-align: left;
}

.tour-guide-card__avatar {
	width: 100%;
	height: 168px;
	flex: 0 0 auto;
	border-radius: 0;
	background: #2d7453;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 168px;
	overflow: hidden;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.tour-guide-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tour-guide-card:nth-child(4n + 2) .tour-guide-card__avatar:not(:has(img)) {
	background: #1f6044;
}

.tour-guide-card:nth-child(4n + 3) .tour-guide-card__avatar:not(:has(img)) {
	background: #3b805e;
}

.tour-guide-card:nth-child(4n) .tour-guide-card__avatar:not(:has(img)) {
	background: #0e3f2b;
}

.tour-guide-card__info {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	min-height: 188px;
	padding: 15px 15px 17px;
}

.tour-guide-card__stars {
	display: block;
	margin: 0 0 5px;
	color: #dda14c;
	font-size: 11px;
	letter-spacing: 0.07em;
	text-align: left;
}

.tour-guide-card__info h3 {
	margin: 0 0 4px;
	font-size: 15px;
	line-height: 1.2;
	text-align: left;
}

.tour-guide-card__info h3 a {
	color: inherit;
	text-decoration: none;
}

.tour-guide-card__info h3 a:hover {
	color: var(--tour-forest, #06652e);
}

.tour-guide-card__text {
	margin: 0;
	color: #737a75;
	font-size: 12px;
	line-height: 1.5;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-guide-card__text.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.tour-guide-card__toggle {
	display: block;
	margin-top: 8px;
	border: 0;
	background: none;
	padding: 0;
	color: var(--tour-forest, #06652e);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
}

@media (min-width: 981px) {
	.tour-guides__wrap {
		grid-template-columns: repeat(4, minmax(0, 190px));
	}
}

@media (max-width: 980px) {
	.tour-guides {
		padding: 70px 0;
	}

	.tour-guides .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-guides .section-head h2 {
		font-size: 30px;
	}

	.tour-guides .section-head > p {
		margin-top: 12px;
		max-width: none;
		font-size: 14px;
	}

	/* На iPhone как на макете: заголовок без мелкого eyebrow и описания */
	.tour-guides .section-head .eyebrow,
	.tour-guides .section-head > p {
		display: none;
	}

	.tour-guides__wrap {
		display: flex;
		justify-content: flex-start;
		overflow-x: auto;
		gap: 14px;
		margin-right: -12px;
		padding-right: 12px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.tour-guide-card {
		min-width: 182px;
		max-width: 182px;
		flex: 0 0 auto;
	}

	.tour-guides__note {
		align-items: flex-start;
		padding: 13px;
	}

	.tour-guides__note b {
		font-size: 11px;
	}
}

/* ===== Бронирование без неопределённости (как в шаблоне) ===== */
.tour-booking-steps {
	--steps-forest: #06652e;
	--steps-ink: #152019;
	--steps-muted: #65716a;
	padding: 56px 0 28px;
	position: relative;
	z-index: 1;
}

.tour-booking-steps .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.tour-booking-steps .section-head .eyebrow {
	margin: 0 0 10px;
	color: #414141;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tour-booking-steps .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
	color: var(--steps-ink);
}

.tour-booking-steps .section-head > p {
	margin: 0;
	max-width: 420px;
	color: var(--steps-muted);
	font-size: 15px;
	line-height: 1.5;
}

.tour-booking-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
}

.tour-booking-step {
	min-width: 0;
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
}

.tour-booking-step__num {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	margin: 0 0 14px;
	border-radius: 50%;
	background: var(--steps-forest);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.tour-booking-step h3 {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	font-weight: 700;
	color: var(--steps-ink);
}

.tour-booking-step p {
	margin: 0;
	color: #46534b;
	font-size: 14px;
	line-height: 1.65;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tour-booking-assurance {
	margin-top: 18px;
	padding: 18px 22px;
	border-radius: 18px;
	background: rgba(6, 101, 46, 0.06);
	color: #152019;
	font-size: 14px;
	line-height: 1.6;
}

.tour-booking-assurance b {
	font-weight: 800;
	color: var(--steps-forest);
}

@media (max-width: 980px) {
	.tour-booking-steps {
		padding: 40px 0 20px;
	}

	.tour-booking-steps .section-head {
		display: block;
		margin-bottom: 20px;
	}

	.tour-booking-steps .section-head h2 {
		font-size: 30px;
	}

	.tour-booking-steps .section-head > p {
		margin-top: 12px;
		max-width: none;
		font-size: 14px;
	}

	.tour-booking-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tour-booking-step {
		padding: 20px;
	}

	.tour-booking-step p {
		font-size: 10px;
	}
}

/* ===== FAQ (accordion, шаблон) ===== */
#faq {
	padding: 40px 15px;
}

#faq .section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

#faq .section-head .eyebrow {
	margin: 0 0 10px;
	color: rgb(65, 65, 65);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

#faq .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

#faq .faq {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#faq .faq-item {
	width: 100%;
	overflow: hidden;
	background: var(--tour-paper, #fff);
	border: 1px solid rgba(6, 101, 46, 0.1);
	border-radius: 14px;
}

#faq .faq-q {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
	font-weight: 700;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.35;
	color: var(--tour-ink, #152019);
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

#faq .faq-q span:first-child {
	color: var(--tour-ink, #152019);
}

#faq .faq-q span:last-child {
	font-size: 24px;
	color: var(--tour-forest, #06652e);
	transition: transform 0.2s;
	transform-origin: center;
}

#faq .faq-item.open .faq-q span:last-child {
	transform: rotate(45deg);
}

#faq .faq-a {
	display: none;
	padding: 0 22px 21px;
	color: var(--tour-muted, #65716a);
	font-size: 14px;
	line-height: 1.65;
}

#faq .faq-item.open .faq-a {
	display: block;
}

#faq .faq-a b {
	color: var(--tour-ink, #152019);
}

@media (max-width: 980px) {
	#faq {
		padding: 40px 15px;
	}

	#faq .section-head {
		display: block;
		margin-bottom: 20px;
	}

	#faq .section-head h2 {
		font-size: 30px;
	}

	/* На iPhone как на макете: убираем мелкий eyebrow */
	#faq .section-head .eyebrow {
		display: none;
	}
}

/* Приоритет над глобальными h2 из main.css */
body.single-tour .tour-hero__title {
	font-size: clamp(34px, 5vw, 66px);
}

body.single-tour .section-head h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--tour-ink, #152019);
}

@media (max-width: 980px) {
	/* Сначала заголовок на всю ширину, подзаголовок — строкой ниже */
	body.single-tour .section-head {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
	}

	body.single-tour .section-head > div {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	body.single-tour .section-head h2 {
		font-size: 30px;
	}

	body.single-tour .tour-calculator-section .section-head h2 {
		font-size: 28px;
	}

	body.single-tour .section-head > p,
	body.single-tour .section-head p:not(.eyebrow) {
		margin-top: 12px;
		max-width: none;
		width: 100%;
		font-size: 15px;
	}

	body.single-tour .section-head .program-head-aside {
		flex: none;
		margin-top: 12px;
		max-width: none;
		width: 100%;
	}
}

/* cache-bust: tour hero video on dev */
