/* Single tour */

.single-tour__hero { position: relative; margin-bottom: var(--zgb-space-8); }
.single-tour__hero-media { aspect-ratio: 16 / 7; overflow: hidden; }
.single-tour__hero-img { width: 100%; height: 100%; object-fit: cover; }
.single-tour__hero-inner { padding-block: var(--zgb-space-5); }
.single-tour__hero-media + .single-tour__hero-inner { margin-top: calc(-1 * var(--zgb-space-8)); position: relative; }
.single-tour__hero-media + .single-tour__hero-inner .single-tour__title,
.single-tour__hero-media + .single-tour__hero-inner .breadcrumbs { background: #fff; }
.single-tour__hero-media + .single-tour__hero-inner {
	background: #fff; border-radius: var(--zgb-radius); box-shadow: var(--zgb-shadow);
	padding: var(--zgb-space-6); max-width: var(--zgb-container);
}
.single-tour__title { margin-bottom: var(--zgb-space-2); }
.single-tour__rating { display: flex; align-items: center; gap: var(--zgb-space-3); }
.single-tour__rating-link { font-size: var(--zgb-fs-sm); }

.single-tour__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: var(--zgb-space-8);
	align-items: start;
}
.single-tour__main > * { margin-bottom: var(--zgb-space-8); }
.single-tour__content { font-size: 1.05rem; }

.single-tour__sidebar { position: sticky; top: calc(var(--zgb-header-h) + var(--zgb-space-4)); display: flex; flex-direction: column; gap: var(--zgb-space-6); }

/* Info box */
.tour-infobox { background: var(--zgb-cream); border-radius: var(--zgb-radius); padding: var(--zgb-space-6); box-shadow: var(--zgb-shadow-soft); }
.tour-infobox__title { color: var(--zgb-wine); }
.tour-infobox__title { font-size: var(--zgb-fs-h3); margin-bottom: var(--zgb-space-4); }
.tour-infobox__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--zgb-space-3); }
.tour-infobox__item { display: flex; justify-content: space-between; gap: var(--zgb-space-4); padding-bottom: var(--zgb-space-3); border-bottom: 1px solid var(--zgb-line); }
.tour-infobox__item:last-child { border-bottom: 0; padding-bottom: 0; }
.tour-infobox__label { color: var(--zgb-muted); font-weight: 600; font-family: var(--zgb-font-head); }
.tour-infobox__value { text-align: right; }

/* Highlights — checkmark badges instead of icon bullets */
.tour-highlights__content ul { list-style: none; padding: 0; display: grid; gap: var(--zgb-space-3); }
.tour-highlights__content li { padding-left: 2.25rem; position: relative; line-height: 1.5; }
.tour-highlights__content li::before {
	content: "✓";
	position: absolute; left: 0; top: 0.1em;
	width: 1.5rem; height: 1.5rem;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 0.85rem; font-weight: 700; line-height: 1; color: #fff;
	background: linear-gradient(135deg, var(--zgb-green), var(--zgb-blue));
	border-radius: 50%;
}

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: var(--zgb-line); }
.timeline__item { position: relative; padding-left: var(--zgb-space-10); margin-bottom: var(--zgb-space-6); }
.timeline__marker {
	position: absolute; left: 0; top: 0;
	width: 38px; height: 38px; border-radius: 50%;
	background: linear-gradient(135deg, var(--zgb-green), var(--zgb-blue)); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--zgb-font-head);
	box-shadow: var(--zgb-shadow-soft);
}
.timeline__time { font-size: var(--zgb-fs-sm); color: var(--zgb-blue-dark); font-weight: 600; }
.timeline__title { font-size: var(--zgb-fs-h3); margin: var(--zgb-space-1) 0 var(--zgb-space-2); }
.timeline__image { margin-top: var(--zgb-space-3); border-radius: var(--zgb-radius-sm); overflow: hidden; max-width: 360px; }

/* Map */
.tour-map { width: 100%; height: 360px; border-radius: var(--zgb-radius); overflow: hidden; margin-top: var(--zgb-space-4); background: var(--zgb-bg-alt); }
.tour-meeting__address { color: var(--zgb-ink-soft); }

/* Reviews */
.tour-reviews { padding-block: var(--zgb-space-8); }
.tour-reviews__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: var(--zgb-space-3); }
.tour-reviews__agg { display: flex; align-items: center; gap: var(--zgb-space-2); }
.tour-reviews__agg-text { font-size: var(--zgb-fs-sm); color: var(--zgb-muted); }
/* Up to two reviews sit side by side (never three). */
.tour-reviews__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--zgb-space-5); margin-top: var(--zgb-space-5); }
.tour-reviews__grid:has(.testimonial:only-child) { grid-template-columns: minmax(0, 1fr); max-width: 640px; }

/* More than two reviews → 2-up carousel. */
.tour-reviews__carousel { position: relative; margin-top: var(--zgb-space-5); }
.tour-reviews-swiper { padding-inline: var(--zgb-space-2); }
.tour-reviews__carousel .swiper-button-prev { left: -6px; }
.tour-reviews__carousel .swiper-button-next { right: -6px; }

@media (max-width: 640px) {
	.tour-reviews__grid { grid-template-columns: minmax(0, 1fr); }
	.tour-reviews__carousel .swiper-button-prev,
	.tour-reviews__carousel .swiper-button-next { display: none; }
}

.single-tour__guides .guide-card { text-align: left; }
.single-tour__guides .guide-card__media { width: 96px; margin: 0 0 var(--zgb-space-3); }

@media (max-width: 992px) {
	.single-tour__layout { grid-template-columns: 1fr; }
	.single-tour__sidebar { position: static; }
}
