/**
 * Custom Tours — frontend.
 *
 * Deliberately light: layout and spacing only, no strong visual identity, since
 * the real design will come from the site's own HTML/Elementor. It reuses the
 * theme's --crystal-* tokens where they exist and falls back to neutral values
 * where they do not, so this file is safe on any theme.
 */

.ct-tour__inner {
	max-width: var(--crystal-container, 1320px);
	margin: 0 auto;
	padding: 40px 20px;
}

/* ---------------------------------------------------------------- Header */

.ct-tour__hero {
	margin: 0 0 28px;
	border-radius: 14px;
	overflow: hidden;
}

.ct-tour__hero img {
	display: block;
	width: 100%;
	height: auto;
}

.ct-tour__title {
	margin: 0 0 14px;
	font-size: 32px;
	line-height: 42px;
	color: var(--crystal-charcoal, #222);
}

.ct-tour__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	margin: 0 0 18px;
	font-size: 14px;
	color: #5b5f66;
}

.ct-tour__meta a {
	color: var(--crystal-blue, #1689CF);
	text-decoration: none;
}

.ct-tour__duration {
	font-weight: 600;
	color: var(--crystal-charcoal, #222);
}

.ct-tour__status {
	padding: 3px 10px;
	border-radius: 20px;
	background: #f0f0f1;
	font-size: 12px;
	font-weight: 600;
}

.ct-tour__status--sold_out {
	background: #fcf0f1;
	color: #b32d2e;
}

.ct-tour__status--coming_soon {
	background: #fcf3e4;
	color: #8a6116;
}

.ct-tour__intro {
	max-width: 78ch;
	font-size: 17px;
	line-height: 1.7;
	color: #444;
}

/* ---------------------------------------------------------------- Booking */

.ct-tour__booking {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 36px;
	padding: 22px 24px;
	border: 1px solid #EAEEF2;
	border-radius: 14px;
	background: #fff;
}

.ct-price__row {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.ct-price__label {
	font-size: 13px;
	color: #6b7280;
}

.ct-price__value {
	font-size: 22px;
	font-weight: 700;
	color: var(--crystal-charcoal, #222);
}

.ct-price__value del {
	margin-right: 6px;
	font-size: 16px;
	font-weight: 500;
	color: #9aa1ab;
}

.ct-price__type,
.ct-price__on-request {
	margin: 6px 0 0;
	font-size: 13px;
	color: #6b7280;
}

.ct-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ct-cta__btn {
	display: inline-block;
	padding: 12px 22px;
	border: 1px solid var(--crystal-blue, #1689CF);
	border-radius: 8px;
	background: var(--crystal-blue, #1689CF);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.ct-cta__btn--customize,
.ct-cta__btn--enquire {
	background: transparent;
	color: var(--crystal-blue, #1689CF);
}

/* ---------------------------------------------------------------- Sections */

.ct-section {
	margin: 0 0 36px;
}

.ct-section__title {
	margin: 0 0 16px;
	font-size: 26px;
	line-height: 36px;
	color: var(--crystal-charcoal, #222);
}

.ct-section h3 {
	font-size: 21px;
	line-height: 30px;
}

.ct-section h4 {
	font-size: 16px;
	line-height: 24px;
}

/* Highlights */

.ct-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ct-highlight {
	display: flex;
	gap: 12px;
	padding: 16px;
	border: 1px solid #EAEEF2;
	border-radius: 12px;
}

.ct-highlight__icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 8px;
}

.ct-highlight__title {
	margin: 0 0 4px;
	font-size: 16px;
	line-height: 22px;
}

.ct-highlight__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #5b5f66;
}

/* Itinerary */

.ct-itinerary {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ct-day {
	margin: 0 0 18px;
	padding: 20px 22px;
	border: 1px solid #EAEEF2;
	border-left: 3px solid var(--crystal-blue, #1689CF);
	border-radius: 12px;
}

.ct-day__title {
	margin: 0 0 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
}

.ct-day__number {
	padding: 2px 10px;
	border-radius: 20px;
	background: var(--crystal-blue, #1689CF);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.ct-day__places ul,
.ct-day__facts {
	margin: 8px 0 0;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.7;
	color: #5b5f66;
}

.ct-day__facts {
	list-style: none;
	padding-left: 0;
}

/* Accommodation */

.ct-hotels {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ct-hotel {
	border: 1px solid #EAEEF2;
	border-radius: 12px;
	overflow: hidden;
}

.ct-hotel__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.ct-hotel__text {
	padding: 16px;
}

.ct-hotel__name {
	margin: 0 0 6px;
	font-size: 17px;
	line-height: 24px;
}

.ct-hotel__facts {
	margin: 0 0 8px;
	font-size: 13px;
	color: #6b7280;
}

.ct-hotel__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #5b5f66;
}

/* Transportation, meals, guide */

.ct-transport,
.ct-guide__facts {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.7;
}

.ct-transport__item {
	padding: 10px 0;
	border-bottom: 1px solid #F2F5F8;
}

.ct-transport__item strong {
	margin-right: 8px;
}

/* Inclusions / exclusions */

.ct-inex {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.ct-list {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.8;
}

.ct-list li {
	padding-left: 24px;
	position: relative;
}

.ct-list--in li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: #007017;
	font-weight: 700;
}

.ct-list--ex li::before {
	content: "\00D7";
	position: absolute;
	left: 0;
	color: #b32d2e;
	font-weight: 700;
}

/* Important info + cancellation */

.ct-important__block {
	margin: 0 0 18px;
}

.ct-important__block h3 {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 26px;
}

.ct-important__block p,
.ct-cancellation p {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

/* FAQ */

.ct-faq__item {
	border-bottom: 1px solid #EAEEF2;
}

.ct-faq__q {
	padding: 14px 0;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	color: var(--crystal-charcoal, #222);
}

.ct-faq__a {
	padding: 0 0 14px;
	font-size: 15px;
	line-height: 1.7;
	color: #5b5f66;
}

/* Gallery */

.ct-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ct-gallery-grid img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
}

/* ---------------------------------------------------------------- Responsive */

@media (max-width: 782px) {

	.ct-tour__inner {
		padding: 24px 16px;
	}

	.ct-tour__title {
		font-size: 26px;
		line-height: 36px;
	}

	.ct-section__title {
		font-size: 22px;
		line-height: 31px;
	}

	.ct-tour__booking {
		padding: 18px;
	}

	.ct-cta__btn {
		flex: 1 1 auto;
		text-align: center;
	}
}
