/*
 * UV Tour content sections — "About this activity" (icon facts), reviews
 * slider, and the stacked label|content details (Highlights, Full description,
 * Includes, Meeting point, Important information). GetYourGuide-inspired.
 * Tokens (--uv-*) inherited from booking-modal.css :root.
 */

.uv-tour-section {
	margin: 0 0 2.5rem;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	color: var(--uv-fg, #15121f);
}

/* Tighter rhythm on mobile so sections (and the booking box that follows the
   content column) don't drift far apart. */
@media (max-width: 768px) {
	.uv-tour-section { margin-bottom: 1.25rem; }
}

.uv-tour-section__title {
	margin: 0 0 1.25rem;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: clamp(1.35rem, 2.2vw, 1.7rem);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--uv-fg, #15121f);
}

.uv-tour-section i.ph {
	font-style: normal;
	line-height: 1;
	display: inline-flex;
}

/* The page H1 (an Elementor heading) — switch the theme serif to the same
   legible sans as the section titles. Scoped to the uv-tour-title CSS class so
   it travels with the exported template and never touches other headings. */
.uv-tour-title .elementor-heading-title {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
	font-weight: 600 !important;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* ---------- About this activity ---------- */
.uv-about__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem 2rem;
}
.uv-about__item {
	display: flex;
	align-items: flex-start;
	gap: .8rem;
}
.uv-about__item > i.ph {
	flex: none;
	font-size: 1.5rem;
	color: var(--uv-fg, #15121f);
	margin-top: 1px;
}
.uv-about__text { display: flex; flex-direction: column; gap: .15rem; }
.uv-about__label { font-weight: 600; font-size: .98rem; }
.uv-about__sub { font-size: .86rem; color: var(--uv-muted, #6c6478); line-height: 1.45; }

@media (max-width: 600px) {
	.uv-about__list { grid-template-columns: 1fr; }
}

/* ---------- Reviews slider ---------- */
.uv-reviews { position: relative; }

.uv-reviews__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: .25rem;
}
.uv-reviews__track::-webkit-scrollbar { display: none; }

.uv-review {
	flex: 0 0 calc(50% - .5rem);
	scroll-snap-align: start;
	box-sizing: border-box;
	padding: 1.25rem;
	border: 1px solid var(--uv-border, #e6dfcd);
	border-radius: var(--uv-radius, 14px);
	background: var(--uv-bg, #fbf9f3);
}
.uv-review__stars { color: #1a1730; letter-spacing: .05em; font-size: .95rem; }
.uv-review__stars span { margin-left: .35em; font-weight: 600; }
.uv-review__head { display: flex; align-items: center; gap: .7rem; margin: .7rem 0; }
.uv-review__avatar {
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--uv-accent, #5965ed);
	color: #fff;
	font-weight: 700;
}
.uv-review__who { display: flex; flex-direction: column; line-height: 1.3; }
.uv-review__who strong { font-size: .9rem; }
.uv-review__meta { font-size: .78rem; color: var(--uv-muted, #6c6478); }
.uv-review__body { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--uv-fg, #15121f); }

.uv-reviews__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--uv-border, #e6dfcd);
	background: #fff;
	color: var(--uv-accent, #5965ed);
	font-size: 1.2rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--uv-shadow-soft, 0 1px 3px rgba(12, 10, 20, .14));
	transition: background 200ms ease;
	z-index: 2;
}
.uv-reviews__arrow:hover { background: var(--uv-bg-soft, #f3eede); }
.uv-reviews__arrow--prev { left: -12px; }
.uv-reviews__arrow--next { right: -12px; }
.uv-reviews__arrow[disabled] { opacity: 0; pointer-events: none; }

@media (max-width: 700px) {
	.uv-review { flex: 0 0 100%; }
	.uv-reviews__arrow { display: none; }
}

/* ---------- Stacked label | content sections ---------- */
.uv-details__row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1.5rem;
	padding: 1.75rem 0;
	border-top: 1px solid var(--uv-border, #e6dfcd);
}
.uv-details__row:first-child { border-top: 0; padding-top: 0; }

.uv-details__label {
	margin: 0;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.uv-details__content { font-size: .95rem; line-height: 1.6; color: var(--uv-fg, #15121f); }
.uv-details__content p { margin: 0 0 .75rem; }
.uv-details__content p:last-child { margin-bottom: 0; }

.uv-details__subhead { margin: 1.1rem 0 .5rem; font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: .95rem; font-weight: 600; }
.uv-details__subhead:first-child { margin-top: 0; }

.uv-bullets { margin: 0; padding-left: 1.2rem; }
.uv-bullets li { margin: .3rem 0; }

.uv-includes { list-style: none; margin: 0; padding: 0; }
.uv-includes li { display: flex; align-items: flex-start; gap: .55rem; margin: .45rem 0; }
.uv-includes li i.ph { flex: none; font-size: 1.1rem; margin-top: 2px; }
.uv-includes .is-in i.ph { color: var(--uv-success, #15803d); }
.uv-includes .is-out { color: var(--uv-muted, #6c6478); }
.uv-includes .is-out i.ph { color: var(--uv-danger, #b91c1c); }

.uv-details__maplink {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	margin-top: .5rem;
	font-weight: 600;
	font-size: .9rem;
	color: var(--uv-accent, #5965ed);
	text-decoration: none;
}
.uv-details__maplink:hover { text-decoration: underline; }
.uv-details__maplink i.ph { font-size: 1.05em; }

@media (max-width: 700px) {
	.uv-details__row { grid-template-columns: 1fr; gap: .6rem; }
	.uv-details__label { font-size: 1.25rem; }
}
