:root {
	--cft-ink: #102d3d;
	--cft-muted: #63747e;
	--cft-line: #dce5e9;
	--cft-soft: #f3f7f8;
	--cft-accent: #ef6a3a;
	--cft-accent-dark: #d95326;
	--cft-sea: #08785d;
	--cft-white: #fff;
	--cft-radius: 14px;
	--cft-shadow: 0 12px 36px rgb(16 45 61 / 9%);
}

/* AJAX add-to-cart confirmation. */
.cft-cart-popup[hidden] {
	display: none !important;
}

.cft-cart-popup {
	align-items: center;
	display: flex;
	font-family: "Poppins", sans-serif;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 1000000;
}

.cft-cart-popup *,
.cft-cart-popup *::before,
.cft-cart-popup *::after {
	box-sizing: border-box;
}

.cft-cart-popup__backdrop {
	background: rgb(6 25 35 / 68%);
	backdrop-filter: blur(4px);
	inset: 0;
	position: absolute;
}

.cft-cart-popup__dialog {
	animation: cft-cart-popup-in .2s ease-out;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 28px 80px rgb(4 24 34 / 30%);
	max-height: calc(100vh - 40px);
	max-width: 580px;
	overflow-y: auto;
	padding: 30px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.cft-cart-popup__close {
	align-items: center;
	background: #edf2f4 !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: #294653 !important;
	cursor: pointer;
	display: flex;
	font-size: 22px !important;
	height: 38px;
	justify-content: center;
	line-height: 1 !important;
	padding: 0 !important;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 38px;
}

.cft-cart-popup__close:hover {
	background: #dfe8eb !important;
}

.cft-cart-popup__success {
	align-items: center;
	background: #e2f5ee;
	border-radius: 50%;
	color: #08785d;
	display: flex;
	flex: 0 0 46px;
	font-size: 21px;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.cft-cart-popup__header {
	align-items: center;
	display: flex;
	gap: 13px;
	margin: 0 48px 22px 0;
}

.cft-cart-popup__header h2 {
	color: #102d3d;
	font-size: 24px;
	line-height: 1.25;
	margin: 0;
}

.cft-cart-popup__product {
	align-items: start;
	background: #f5f8f9;
	border: 1px solid #e1e9ec;
	border-radius: 12px;
	display: grid;
	gap: 18px;
	grid-template-columns: 118px minmax(0, 1fr);
	padding: 14px;
}

.cft-cart-popup__product > img {
	aspect-ratio: 1;
	border-radius: 9px;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.cft-cart-popup__product h3 {
	color: #102d3d;
	font-size: 17px;
	line-height: 1.3;
	margin: 1px 0 10px;
}

.cft-cart-popup__product dl {
	display: grid;
	gap: 6px;
	margin: 0;
}

.cft-cart-popup__product dl > div {
	display: grid;
	font-size: 11px;
	gap: 10px;
	grid-template-columns: 72px minmax(0, 1fr);
	line-height: 1.4;
}

.cft-cart-popup__product dt {
	color: #71838b;
	font-weight: 700;
}

.cft-cart-popup__product dd {
	color: #294653;
	font-weight: 700;
	margin: 0;
}

.cft-cart-popup__total {
	align-items: center;
	border-bottom: 1px solid #e1e9ec;
	border-top: 1px solid #e1e9ec;
	display: flex;
	justify-content: space-between;
	margin: 18px 0;
	padding: 14px 2px;
}

.cft-cart-popup__total span {
	color: #647983;
	font-size: 12px;
	font-weight: 700;
}

.cft-cart-popup__total strong {
	color: #102d3d;
	font-size: 20px;
}

.cft-cart-popup__actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
}

.cft-cart-popup__actions .cft-cart-popup__view,
.cft-cart-popup__continue {
	align-items: center;
	border-radius: 9px !important;
	cursor: pointer;
	display: flex !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	justify-content: center;
	margin: 0 !important;
	min-height: 46px;
	padding: 12px 16px !important;
	text-align: center;
	text-decoration: none !important;
}

.cft-cart-popup__actions .cft-cart-popup__view {
	background: #ef6a3a !important;
	border: 1px solid #ef6a3a !important;
	color: #fff !important;
}

.cft-cart-popup__continue {
	background: #fff !important;
	border: 1px solid #ccd9de !important;
	color: #294653 !important;
}

.cft-cart-popup-open {
	overflow: hidden;
}

@keyframes cft-cart-popup-in {
	from { opacity: 0; transform: translateY(14px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
	.cft-cart-popup {
		align-items: flex-end;
		padding: 10px;
	}

	.cft-cart-popup__dialog {
		border-radius: 15px;
		max-height: calc(100vh - 20px);
		padding: 24px 18px 18px;
	}

	.cft-cart-popup__header {
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 18px;
		margin-right: 42px;
	}

	.cft-cart-popup__header h2 {
		font-size: 21px;
	}

	.cft-cart-popup__success {
		flex-basis: 38px;
		height: 38px;
		width: 38px;
	}

	.cft-cart-popup__product {
		gap: 12px;
		grid-template-columns: 86px minmax(0, 1fr);
		padding: 11px;
	}

	.cft-cart-popup__product dl > div {
		gap: 3px;
		grid-template-columns: 1fr;
	}

	.cft-cart-popup__actions {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cft-cart-popup__dialog {
		animation: none;
	}
}

.cft-tour-page {
	background: #f7f9fa;
}

.cft-shell,
.cft-shell * {
	box-sizing: border-box;
}

.cft-shell {
	color: var(--cft-ink);
	font-family: "Poppins", sans-serif;
	margin: 0 auto;
	max-width: 1240px;
	padding: 28px 24px 80px;
}

.cft-shell button,
.cft-shell input,
.cft-shell select,
.cft-shell textarea,
.cft-lightbox {
	font-family: "Poppins", sans-serif;
}

.cft-shell a {
	text-decoration: none;
}

.cft-breadcrumb {
	align-items: center;
	color: #829099;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 8px;
	margin: 0 0 20px;
}

.cft-breadcrumb a {
	color: #536b77;
}

.cft-breadcrumb a:hover {
	color: var(--cft-accent);
}

.cft-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: start;
}

.cft-content {
	min-width: 0;
}

.cft-hero {
	background: var(--cft-white);
	border-radius: var(--cft-radius);
	box-shadow: var(--cft-shadow);
	overflow: hidden;
}

.cft-hero__media {
	background: #223943;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.cft-main-image {
	cursor: zoom-in;
	height: 100% !important;
	left: 0;
	margin: 0 !important;
	max-width: none !important;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: opacity .2s ease;
	width: 100% !important;
}

.cft-hero__shade {
	background: linear-gradient(180deg, transparent 30%, rgb(4 24 34 / 86%) 100%);
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.cft-hero__copy {
	bottom: 0;
	color: #fff;
	left: 0;
	max-width: 680px;
	padding: 38px;
	position: absolute;
	z-index: 1;
}

.cft-eyebrow,
.cft-section-kicker {
	color: var(--cft-accent);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.cft-hero__copy h1 {
	color: #fff;
	font-size: clamp(32px, 4.2vw, 54px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.02;
	margin: 0 0 12px;
	padding: 0;
}

.cft-hero__copy p {
	color: rgb(255 255 255 / 84%);
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
}

.cft-gallery-count {
	background: rgb(255 255 255 / 94%);
	border: 0;
	border-radius: 8px;
	bottom: 28px;
	box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
	color: var(--cft-ink);
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 13px;
	position: absolute;
	right: 28px;
	z-index: 2;
}

.cft-gallery-count span {
	margin-right: 6px;
}

.cft-thumbnails {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	padding: 8px;
}

.cft-thumbnail {
	background: #e6edef;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	height: 76px;
	overflow: hidden;
	padding: 0;
}

.cft-thumbnail.is-active {
	border-color: var(--cft-accent);
}

.cft-thumbnail img {
	height: 100%;
	margin: 0;
	object-fit: cover;
	width: 100%;
}

.cft-facts {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 12px;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 18px;
	overflow: hidden;
}

.cft-fact {
	align-items: center;
	background: #fff;
	border-right: 1px solid var(--cft-line);
	display: flex;
	gap: 11px;
	min-height: 78px;
	padding: 14px;
}

.cft-fact:last-child {
	border-right: 0;
}

.cft-fact__icon {
	align-items: center;
	background: #edf6f3;
	border-radius: 50%;
	color: var(--cft-sea);
	display: inline-flex;
	font-size: 18px;
	height: 36px;
	justify-content: center;
	min-width: 36px;
}

.cft-fact div {
	min-width: 0;
}

.cft-fact small,
.cft-booking-card__top > div > small,
.cft-booking-card__top > div > span,
.cft-next-card small {
	color: var(--cft-muted);
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.cft-fact strong {
	display: block;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.cft-section {
	border-bottom: 1px solid var(--cft-line);
	padding: 46px 0;
}

.cft-ticket-booking {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 12px;
	box-shadow: 0 7px 24px rgb(16 45 61 / 6%);
	margin-top: 28px;
	overflow: hidden;
}

.cft-ticket-heading {
	padding: 24px 24px 17px;
}

.cft-ticket-heading h2 {
	color: var(--cft-ink);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
	margin: 0 0 5px;
}

.cft-ticket-heading p {
	color: var(--cft-muted);
	font-size: 13px;
	margin: 0;
}

.cft-availability-bar {
	align-items: end;
	background: #f8fafb;
	border-bottom: 1px solid var(--cft-line);
	border-top: 1px solid var(--cft-line);
	display: grid;
	gap: 10px;
	grid-template-columns: 210px auto minmax(160px, 1fr);
	padding: 16px 20px;
}

.cft-availability-bar label > span {
	color: #576b76;
	display: block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .07em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.cft-availability-bar input[type="date"] {
	background: #fff;
	border: 1px solid #c3d0d6;
	border-radius: 7px;
	color: var(--cft-ink);
	font: inherit;
	font-size: 13px;
	height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.cft-check-availability {
	background: var(--cft-ink);
	border: 0;
	border-radius: 7px;
	box-shadow: 0 5px 13px rgb(16 45 61 / 17%);
	color: #fff;
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	height: 42px;
	padding: 0 15px;
}

.cft-check-availability span {
	font-size: 17px;
	margin-right: 6px;
}

.cft-check-availability.is-loading {
	cursor: wait;
	opacity: .65;
}

.cft-availability-message {
	align-self: center;
	color: var(--cft-muted);
	font-size: 11px;
	line-height: 1.4;
}

.cft-availability-message.is-success {
	color: var(--cft-sea);
	font-weight: 700;
}

.cft-availability-message.is-error {
	color: #b64032;
	font-weight: 700;
}

.cft-ticket-list {
	padding: 0 20px;
}

.cft-ticket-list[hidden],
.cft-ticket-footer[hidden] {
	display: none !important;
}

.cft-ticket-list__head,
.cft-ticket-row {
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(190px, 1fr) 135px 105px;
}

.cft-ticket-list__head {
	color: #819099;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	padding: 13px 6px 8px;
	text-transform: uppercase;
}

.cft-ticket-list__head span:nth-child(2),
.cft-ticket-list__head span:nth-child(3) {
	text-align: right;
}

.cft-ticket-row {
	align-items: center;
	border-bottom: 1px solid var(--cft-line);
	grid-template-areas: "ticket-name ticket-price ticket-stepper";
	min-height: 76px;
	padding: 12px 6px;
	transition: background .15s ease, opacity .15s ease;
}

.cft-ticket-row > .cft-ticket-radio {
	display: none !important;
	position: absolute !important;
}

.cft-ticket-name { grid-area: ticket-name; }
.cft-ticket-price { grid-area: ticket-price; }
.cft-ticket-stepper { grid-area: ticket-stepper; }

.cft-ticket-row.is-selected {
	background: #f1f9f6;
}

.cft-ticket-row.is-unchecked {
	opacity: .66;
}

.cft-ticket-row.is-sold-out {
	opacity: .47;
}

.cft-ticket-radio {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	position: absolute;
	width: 1px;
}

.cft-ticket-name strong,
.cft-ticket-price strong {
	color: var(--cft-ink);
	display: block;
	font-size: 14px;
	line-height: 1.25;
}

.cft-ticket-name small,
.cft-ticket-price small {
	color: var(--cft-muted);
	display: block;
	font-size: 10px;
	line-height: 1.4;
	margin-top: 3px;
}

.cft-ticket-price {
	text-align: right;
}

.cft-ticket-price .cft-ticket-remaining {
	color: var(--cft-sea);
}

.is-sold-out .cft-ticket-remaining {
	color: #a34538;
}

.cft-ticket-stepper {
	align-items: center;
	border: 1px solid #c8d3d9;
	border-radius: 99px;
	display: grid;
	grid-template-columns: 30px 30px 30px;
	height: 32px;
	overflow: hidden;
}

.cft-ticket-stepper button {
	background: transparent;
	border: 0;
	color: var(--cft-ink);
	cursor: pointer;
	font-size: 17px;
	height: 30px;
	padding: 0;
}

.cft-ticket-stepper button:disabled {
	color: #b7c2c7;
	cursor: not-allowed;
}

.cft-ticket-stepper output {
	color: var(--cft-ink);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.cft-ticket-footer {
	align-items: center;
	background: #f3f6f7;
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
}

.cft-ticket-footer > div {
	align-items: center;
	display: flex;
	gap: 22px;
}

.cft-ticket-footer small,
.cft-ticket-footer span {
	color: var(--cft-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.cft-ticket-footer b,
.cft-ticket-footer strong {
	color: var(--cft-ink);
	font-size: 16px;
	margin-left: 4px;
}

.cft-hero__media,
.cft-lightbox figure {
	touch-action: pan-y;
}

.cft-ticket-footer .cft-book-button,
.cft-ticket-footer button.cft-book-button {
	margin: 0 !important;
	min-height: 42px;
	width: auto;
}

.cft-check-link {
	background: var(--cft-ink);
	border-radius: 8px;
	color: #fff !important;
	display: block;
	font-size: 12px;
	font-weight: 800;
	padding: 13px;
	text-align: center;
	text-transform: uppercase;
}

.cft-section:last-child {
	border-bottom: 0;
}

.cft-section h2 {
	color: var(--cft-ink);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
	margin: 0 0 22px;
	padding: 0;
}

.cft-prose,
.cft-prose p {
	color: #415966;
	font-size: 16px;
	line-height: 1.8;
}

.cft-prose > :first-child {
	margin-top: 0;
}

.cft-inclusion-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
}

.cft-inclusion-card {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 12px;
	padding: 23px;
}

.cft-inclusion-card h3 {
	color: var(--cft-ink);
	font-size: 16px;
	margin: 0 0 15px;
}

.cft-inclusion-card ul,
.cft-why-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cft-inclusion-card li,
.cft-why-list li {
	align-items: flex-start;
	color: #405662;
	display: flex;
	font-size: 14px;
	gap: 10px;
	line-height: 1.45;
	margin-bottom: 11px;
}

.cft-inclusion-card li:last-child,
.cft-why-list li:last-child {
	margin-bottom: 0;
}

.cft-inclusion-card--yes li span,
.cft-why-list li span {
	color: var(--cft-sea);
	font-weight: 800;
}

.cft-inclusion-card--no li span {
	color: #c05442;
	font-weight: 800;
}

.cft-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cft-chips span {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 999px;
	color: #294652;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 14px;
}

.cft-fish-chips span {
	background: #edf8f4;
	border-color: #c9e6dc;
	color: var(--cft-sea);
}

.cft-timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 8px;
}

.cft-timeline li {
	border-left: 2px solid #d6e5e1;
	min-height: 72px;
	padding: 0 0 25px 25px;
	position: relative;
}

.cft-timeline li:last-child {
	border-color: transparent;
	padding-bottom: 0;
}

.cft-timeline__dot {
	background: var(--cft-sea);
	border: 4px solid #ddefea;
	border-radius: 50%;
	height: 14px;
	left: -8px;
	position: absolute;
	top: 2px;
	width: 14px;
}

.cft-timeline strong {
	color: var(--cft-ink);
	font-size: 14px;
}

.cft-timeline p {
	color: var(--cft-muted);
	font-size: 14px;
	margin: 4px 0 0;
}

.cft-faq {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 9px;
	margin-bottom: 9px;
	overflow: hidden;
}

.cft-faq > button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--cft-ink);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	justify-content: space-between;
	padding: 16px 18px;
	text-align: left;
	width: 100%;
}

.cft-faq > button b {
	color: var(--cft-sea);
	font-size: 21px;
	font-weight: 500;
}

.cft-faq__answer {
	border-top: 1px solid var(--cft-line);
	color: #526872;
	padding: 0 18px;
}

.cft-faq__answer p {
	font-size: 14px;
	line-height: 1.65;
	margin: 15px 0;
}

.cft-sidebar {
	align-self: start;
	max-height: calc(100vh - 56px);
	overflow-y: auto;
	padding-right: 4px;
	position: sticky;
	scrollbar-width: thin;
	top: 28px;
}

.cft-booking-card {
	position: static;
}

.admin-bar .cft-sidebar {
	max-height: calc(100vh - 88px);
	top: 60px;
}

.cft-booking-card,
.cft-side-card {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: var(--cft-radius);
	box-shadow: 0 8px 24px rgb(16 45 61 / 7%);
	margin-bottom: 15px;
	padding: 20px;
}

.cft-booking-card {
	border-top: 4px solid var(--cft-accent);
}

.cft-booking-card__top {
	align-items: center;
	border-bottom: 1px solid var(--cft-line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-bottom: 17px;
}

.cft-booking-card__top strong {
	color: var(--cft-ink);
	display: block;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.1;
	margin: 2px 0 3px;
	white-space: nowrap;
}

.cft-booking-card__top strong .woocommerce-Price-amount,
.cft-booking-card__top strong .woocommerce-Price-currencySymbol,
.cft-booking-card__top strong bdi {
	display: inline;
}

.cft-package-count {
	background: #edf6f3;
	border-radius: 99px;
	color: var(--cft-sea) !important;
	padding: 7px 10px;
}

.cft-package-options {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.cft-package-options legend {
	color: var(--cft-ink);
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 10px;
	padding: 0;
}

.cft-package-option {
	align-items: center;
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 9px;
	cursor: pointer;
	display: grid;
	gap: 9px;
	grid-template-columns: 17px 1fr auto;
	margin-bottom: 8px;
	padding: 12px;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.cft-package-option:hover,
.cft-package-option.is-selected {
	background: #fbfdfc;
	border-color: var(--cft-sea);
	box-shadow: 0 0 0 1px var(--cft-sea);
}

.cft-package-option input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.cft-radio-mark {
	border: 2px solid #a9b8bf;
	border-radius: 50%;
	display: block;
	height: 17px;
	position: relative;
	width: 17px;
}

.cft-package-option.is-selected .cft-radio-mark {
	border-color: var(--cft-sea);
}

.cft-package-option.is-selected .cft-radio-mark::after {
	background: var(--cft-sea);
	border-radius: 50%;
	content: "";
	inset: 3px;
	position: absolute;
}

.cft-package-option__name strong,
.cft-package-option__price strong {
	color: var(--cft-ink);
	display: block;
	font-size: 13px;
	line-height: 1.25;
}

.cft-package-option__name small,
.cft-package-option__price small {
	color: var(--cft-muted);
	display: block;
	font-size: 10px;
	line-height: 1.3;
	margin-top: 2px;
}

.cft-package-option__price {
	text-align: right;
}

.cft-date-field {
	display: block;
	margin-top: 15px;
}

.cft-date-field > span {
	color: var(--cft-ink);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 7px;
}

.cft-date-field input {
	background: #fff;
	border: 1px solid #bdcbd1;
	border-radius: 8px;
	color: var(--cft-ink);
	font: inherit;
	font-size: 14px;
	min-height: 44px;
	padding: 9px 11px;
	width: 100%;
}

.cft-booking-total {
	align-items: center;
	border-top: 1px solid var(--cft-line);
	display: flex;
	justify-content: space-between;
	margin-top: 17px;
	padding-top: 16px;
}

.cft-booking-total span {
	color: var(--cft-muted);
	font-size: 13px;
}

.cft-booking-total strong {
	color: var(--cft-ink);
	font-size: 20px;
}

.cft-booking-form .cft-book-button,
.cft-booking-form button.cft-book-button {
	background: var(--cft-accent) !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: 0 7px 18px rgb(239 106 58 / 24%);
	color: #fff !important;
	cursor: pointer;
	display: block;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: .02em;
	line-height: 1.2 !important;
	margin: 14px 0 0 !important;
	min-height: 49px;
	padding: 14px !important;
	text-align: center;
	text-transform: uppercase;
	transition: background .15s ease, transform .15s ease;
	width: 100%;
}

.cft-booking-form .cft-book-button:hover {
	background: var(--cft-accent-dark) !important;
	transform: translateY(-1px);
}

.cft-booking-form .cft-book-button:disabled {
	cursor: not-allowed;
	opacity: .68;
	transform: none;
}

.cft-booking-form .cft-book-button.is-loading {
	cursor: wait;
}

.cft-side-card h3 {
	color: var(--cft-ink);
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 12px;
}

.cft-side-card > p {
	color: var(--cft-muted);
	font-size: 12px;
	line-height: 1.55;
	margin: 0 0 13px;
}

.cft-next-card {
	align-items: center;
	display: flex;
	gap: 12px;
}

.cft-next-card > span {
	align-items: center;
	background: #edf6f3;
	border-radius: 50%;
	color: var(--cft-sea);
	display: flex;
	font-size: 20px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.cft-next-card strong {
	color: var(--cft-ink);
	display: block;
	font-size: 13px;
	margin-top: 3px;
}

.cft-contact-row {
	align-items: center;
	border-top: 1px solid var(--cft-line);
	color: #2f4a57;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 9px;
	overflow-wrap: anywhere;
	padding: 12px 0 0;
	margin-top: 12px;
}

.cft-contact-row span {
	color: var(--cft-sea);
}

.cft-lightbox[hidden] {
	display: none;
}

.cft-lightbox {
	background: rgb(6 20 27 / 94%);
	inset: 0;
	overflow-y: auto;
	padding: 70px 28px 40px;
	position: fixed;
	z-index: 999999;
}

.cft-lightbox__close {
	background: #fff;
	border: 0;
	border-radius: 50%;
	color: var(--cft-ink);
	cursor: pointer;
	font-size: 27px;
	height: 42px;
	line-height: 1;
	position: fixed;
	right: 24px;
	top: 18px;
	width: 42px;
}

.cft-lightbox figure {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 1180px;
	min-height: calc(100vh - 120px);
}

.cft-lightbox figure img {
	border-radius: 10px;
	box-shadow: 0 15px 50px rgb(0 0 0 / 35%);
	max-height: calc(100vh - 155px);
	max-width: 100%;
	object-fit: contain;
}

.cft-lightbox figcaption {
	color: #fff;
	font-size: 12px;
	margin-top: 10px;
}

.cft-lightbox__arrow {
	background: rgb(255 255 255 / 94%);
	border: 0;
	border-radius: 50%;
	color: var(--cft-ink);
	cursor: pointer;
	font-size: 32px;
	height: 46px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	z-index: 2;
}

.cft-lightbox__arrow--prev { left: 20px; }
.cft-lightbox__arrow--next { right: 20px; }

body.cft-lightbox-open {
	overflow: hidden;
}

.cft-tour-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(var(--cft-columns, 3), minmax(0, 1fr));
}

.cft-tour-card {
	background: #fff;
	border: 1px solid var(--cft-line);
	border-radius: 12px;
	box-shadow: 0 7px 22px rgb(16 45 61 / 6%);
	overflow: hidden;
}

.cft-tour-card__image {
	background: #dce6e9;
	display: block;
	height: 220px;
}

.cft-tour-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
	width: 100%;
}

.cft-tour-card:hover .cft-tour-card__image img {
	transform: scale(1.025);
}

.cft-tour-card__body {
	padding: 18px;
}

.cft-tour-card__meta {
	color: var(--cft-sea);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	min-height: 16px;
	text-transform: uppercase;
}

.cft-tour-card h3 {
	font-size: 20px;
	line-height: 1.25;
	margin: 7px 0 20px;
}

.cft-tour-card h3 a {
	color: var(--cft-ink);
}

.cft-tour-card__footer {
	align-items: center;
	border-top: 1px solid var(--cft-line);
	display: flex;
	justify-content: space-between;
	padding-top: 14px;
}

.cft-tour-card__footer span {
	color: var(--cft-muted);
	font-size: 11px;
}

.cft-tour-card__footer strong {
	color: var(--cft-ink);
	display: block;
	font-size: 17px;
}

.cft-link-button {
	background: var(--cft-ink);
	border-radius: 6px;
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	padding: 9px 12px;
}

/* Filterable Tours / Daily Tours catalog. */
.cft-tour-catalog {
	color: var(--cft-ink);
	font-family: "Poppins", sans-serif;
	margin: 0 auto;
	max-width: 1320px;
	width: 100%;
}

.cft-catalog-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 28px;
}

.cft-catalog-filters button {
	align-items: center;
	background: #fff;
	border: 1px solid #d9e1e7;
	border-radius: 999px;
	box-shadow: none;
	color: #53616e;
	cursor: pointer;
	display: inline-flex;
	font: 600 14px/1 "Poppins", sans-serif;
	gap: 9px;
	justify-content: center;
	min-height: 44px;
	padding: 8px 16px;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.cft-catalog-filters button:hover {
	border-color: var(--cft-ink);
	transform: translateY(-1px);
}

.cft-catalog-filters button.is-active {
	background: var(--cft-ink);
	border-color: var(--cft-ink);
	color: #fff;
}

.cft-catalog-filters button span {
	align-items: center;
	background: #edf2f5;
	border-radius: 99px;
	color: #52616e;
	display: inline-flex;
	font-size: 11px;
	height: 23px;
	justify-content: center;
	min-width: 23px;
	padding: 0 6px;
}

.cft-catalog-filters button.is-active span {
	background: rgba(255, 255, 255, .16);
	color: #fff;
}

.cft-catalog-grid {
	display: grid;
	gap: 28px 24px;
	grid-template-columns: repeat(var(--cft-columns, 3), minmax(0, 1fr));
}

.cft-catalog-card {
	background: #fff;
	border: 1px solid #e2e8ed;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(20, 42, 56, .08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow .25s ease, transform .25s ease;
}

.cft-catalog-card[hidden] {
	display: none;
}

.cft-catalog-card:hover {
	box-shadow: 0 16px 35px rgba(20, 42, 56, .14);
	transform: translateY(-4px);
}

.cft-catalog-card__image {
	aspect-ratio: 16 / 10;
	background: #e7ecef;
	display: block;
	overflow: hidden;
	position: relative;
}

.cft-catalog-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
	width: 100%;
}

.cft-catalog-card:hover .cft-catalog-card__image img {
	transform: scale(1.035);
}

.cft-catalog-card__badge {
	background: rgba(17, 40, 54, .92);
	border-radius: 999px;
	bottom: 14px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	left: 14px;
	letter-spacing: .05em;
	padding: 7px 11px;
	position: absolute;
	text-transform: uppercase;
}

.cft-catalog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.cft-catalog-card h3 {
	font-size: 19px;
	line-height: 1.35;
	margin: 0 0 9px;
}

.cft-catalog-card h3 a {
	color: var(--cft-ink);
	text-decoration: none;
}

.cft-catalog-card__location {
	align-items: center;
	color: #667582;
	display: flex;
	font-size: 13px;
	gap: 7px;
	margin: 0 0 17px;
}

.cft-catalog-card__location span {
	color: var(--cft-accent);
	font-size: 19px;
	line-height: 1;
}

.cft-catalog-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: auto 0 18px;
}

.cft-catalog-card__facts > span {
	align-items: center;
	background: #f3f6f8;
	border: 1px solid #e3e9ed;
	border-radius: 8px;
	color: #657480;
	display: inline-flex;
	font-size: 13px;
	gap: 5px;
	min-height: 34px;
	padding: 6px 9px;
}

.cft-catalog-card__facts b {
	color: #344653;
	font-weight: 600;
}

.cft-catalog-card__footer {
	align-items: center;
	border-top: 1px solid #e5eaee;
	display: flex;
	gap: 15px;
	justify-content: space-between;
	padding-top: 17px;
}

.cft-catalog-card__footer div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.cft-catalog-card__footer small {
	color: #71808c;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.cft-catalog-card__footer strong {
	color: var(--cft-accent);
	font-size: 18px;
	line-height: 1.35;
	white-space: nowrap;
}

.cft-catalog-card__footer > a {
	background: var(--cft-ink);
	border-radius: 9px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 11px 15px;
	text-decoration: none;
	transition: background-color .2s ease, transform .2s ease;
}

.cft-catalog-card__footer > a:hover {
	background: var(--cft-accent);
	color: #fff;
	transform: translateY(-1px);
}

.cft-catalog-empty {
	background: #f5f7f8;
	border: 1px dashed #ccd6dc;
	border-radius: 12px;
	color: #667582;
	margin: 20px 0 0;
	padding: 24px;
	text-align: center;
}

.cft-mobile-carousel-controls {
	display: none;
}

.cft-fixed-quantity {
	font-weight: 700;
}

/* Keep tour metadata readable in classic and block-based cart/checkout layouts. */
.woocommerce-cart .cart_item dl.variation,
.woocommerce-checkout .cart_item dl.variation,
.woocommerce-checkout-review-order-table .cart_item dl.variation {
	align-items: baseline;
	display: grid !important;
	gap: 5px 10px;
	grid-template-columns: max-content minmax(0, 1fr);
	margin: 8px 0 0 !important;
}

.woocommerce-cart .cart_item dl.variation dt,
.woocommerce-cart .cart_item dl.variation dd,
.woocommerce-checkout .cart_item dl.variation dt,
.woocommerce-checkout .cart_item dl.variation dd,
.woocommerce-checkout-review-order-table .cart_item dl.variation dt,
.woocommerce-checkout-review-order-table .cart_item dl.variation dd {
	clear: none !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
}

.woocommerce-cart .cart_item dl.variation dt,
.woocommerce-checkout .cart_item dl.variation dt,
.woocommerce-checkout-review-order-table .cart_item dl.variation dt,
.wc-block-components-product-details__name {
	font-weight: 700;
}

.woocommerce-cart .cart_item dl.variation dd p,
.woocommerce-checkout .cart_item dl.variation dd p,
.woocommerce-checkout-review-order-table .cart_item dl.variation dd p {
	display: inline;
	margin: 0 !important;
}

.wc-block-components-product-details {
	display: grid !important;
	gap: 5px;
	margin-top: 8px !important;
}

.wc-block-components-product-details li,
.wc-block-components-product-details__item {
	align-items: baseline;
	display: grid !important;
	gap: 10px;
	grid-template-columns: max-content minmax(0, 1fr);
	margin: 0 !important;
}

.wc-block-components-product-details__value {
	margin: 0 !important;
}

/* Reference-style gallery: one cinematic image and three vertical previews. */
.cft-hero {
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.cft-gallery-stage {
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) 178px;
}

.cft-gallery-stage--single {
	grid-template-columns: 1fr;
}

.cft-hero__media {
	border-radius: 14px;
	box-shadow: var(--cft-shadow);
}

.cft-hero__copy {
	bottom: 0;
	padding: 30px 28px;
}

.cft-hero__copy h1 {
	font-size: clamp(30px, 3.3vw, 43px);
	text-shadow: 0 3px 8px rgb(0 0 0 / 28%);
}

.cft-thumbnails {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(var(--cft-thumb-count, 3), minmax(0, 1fr));
	height: 500px;
	overflow: hidden;
	padding: 0;
}

.cft-thumbnail-wrap {
	border-radius: 11px;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.cft-thumbnail {
	border: 0;
	border-radius: 11px;
	height: 100%;
	min-width: 0;
	position: relative;
	width: 100%;
}

.cft-thumbnail::after {
	border: 3px solid transparent;
	border-radius: 11px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.cft-thumbnail.is-active::after {
	border-color: var(--cft-accent);
}

.cft-view-all {
	align-items: center;
	background: rgb(11 31 41 / 78%);
	border: 0;
	border-radius: 8px;
	bottom: 9px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 10px;
	font-weight: 700;
	gap: 5px;
	left: 9px;
	padding: 8px 10px;
	position: absolute;
	z-index: 3;
}

.cft-gallery-arrow {
	align-items: center;
	background: rgb(255 255 255 / 94%);
	border: 0;
	border-radius: 50%;
	color: var(--cft-ink);
	cursor: pointer;
	display: flex;
	font-size: 26px;
	height: 30px;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	z-index: 4;
}

.cft-gallery-arrow--prev { left: 18px; }
.cft-gallery-arrow--next { right: 18px; }

/* Custom modern date picker. */
.cft-ticket-booking {
	overflow: visible;
}

.cft-availability-bar {
	align-items: end;
	grid-template-columns: 340px auto minmax(150px, 1fr);
}

.cft-modern-date {
	position: relative;
}

.cft-modern-date__label {
	color: #65747f;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.cft-date-trigger {
	align-items: center;
	background: #fff;
	border: 1px solid #d4dde2;
	border-radius: 13px;
	color: var(--cft-ink);
	cursor: pointer;
	display: grid;
	gap: 11px;
	grid-template-columns: 36px 1fr 20px;
	height: 52px;
	padding: 6px 12px;
	text-align: left;
	width: 100%;
}

.cft-date-trigger[aria-expanded="true"] {
	border-color: #8f9ba2;
	box-shadow: 0 0 0 3px rgb(16 45 61 / 10%);
}

.cft-date-icon {
	align-items: center;
	background: #e9edef;
	border-radius: 9px;
	display: flex;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.cft-date-trigger strong {
	font-size: 13px;
	font-weight: 600;
}

.cft-date-chevron {
	color: #647681;
	font-size: 20px;
}

.cft-date-popover {
	background: #fff;
	border: 1px solid #e0e6e9;
	border-radius: 14px;
	box-shadow: 0 18px 42px rgb(16 45 61 / 18%);
	left: 0;
	min-width: 330px;
	padding: 14px;
	position: absolute;
	top: calc(100% + 8px);
	z-index: 60;
}

.cft-date-popover[hidden] { display: none; }

.cft-calendar-header {
	align-items: center;
	display: grid;
	gap: 7px;
	grid-template-columns: 30px 1fr 30px;
	margin-bottom: 13px;
}

.cft-calendar-header > div {
	display: grid;
	gap: 7px;
	grid-template-columns: 1fr 86px;
}

.cft-calendar-header select {
	background: #fff;
	border: 1px solid #d6dfe4;
	border-radius: 8px;
	color: var(--cft-ink);
	font-size: 12px;
	height: 36px;
	padding: 5px 7px;
	text-transform: capitalize;
}

.cft-calendar-header > button {
	background: transparent;
	border: 0;
	border-radius: 7px;
	color: var(--cft-ink);
	cursor: pointer;
	font-size: 22px;
	height: 32px;
}

.cft-calendar-header > button:hover { background: #edf2f4; }

.cft-calendar-weekdays,
.cft-calendar-days {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(7, 1fr);
}

.cft-calendar-weekdays span {
	color: #8a989f;
	font-size: 10px;
	font-weight: 700;
	padding: 5px 0;
	text-align: center;
}

.cft-calendar-days > span,
.cft-calendar-days > button {
	aspect-ratio: 1;
}

.cft-calendar-days > button {
	background: #e9edef;
	border: 0;
	border-radius: 50%;
	color: #253f4d;
	cursor: pointer;
	font-size: 11px;
	font-weight: 500;
}

.cft-calendar-days > button:hover:not(:disabled) {
	background: #cfd9de;
}

.cft-calendar-days > button:disabled {
	background: transparent;
	color: #d5dce0;
	cursor: not-allowed;
}

.cft-calendar-days > button.is-selected {
	background: var(--cft-ink);
	box-shadow: 0 5px 12px rgb(16 45 61 / 23%);
	color: #fff;
}

@media (max-width: 1050px) {
	.cft-catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cft-layout {
		grid-template-columns: minmax(0, 1fr) 330px;
	}

	.cft-hero__media {
		height: 440px;
	}

	.cft-gallery-stage {
		grid-template-columns: minmax(0, 1fr) 145px;
	}

	.cft-thumbnails {
		height: 440px;
	}

	.cft-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cft-fact:nth-child(2) {
		border-right: 0;
	}

	.cft-fact:nth-child(-n+2) {
		border-bottom: 1px solid var(--cft-line);
	}

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

@media (max-width: 820px) {
	.cft-shell {
		padding: 20px 16px 60px;
	}

	.cft-layout {
		display: flex;
		flex-direction: column;
	}

	.cft-content,
	.cft-sidebar {
		width: 100%;
	}

	.cft-sidebar {
		max-height: none;
		overflow: visible;
		padding-right: 0;
		position: static;
	}

	.cft-booking-card {
		margin-top: 4px;
		position: static;
	}

	.cft-availability-bar {
		grid-template-columns: 1fr auto;
	}

	.cft-availability-message {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.cft-tour-catalog--mobile-carousel {
		overflow: hidden;
	}

	.cft-tour-catalog--mobile-carousel .cft-catalog-grid {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 4px 8vw 18px 1px;
		scroll-behavior: smooth;
		scroll-padding-left: 1px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.cft-tour-catalog--mobile-carousel .cft-catalog-grid::-webkit-scrollbar {
		display: none;
	}

	.cft-tour-catalog--mobile-carousel .cft-catalog-card {
		flex: 0 0 min(84vw, 370px);
		scroll-snap-align: start;
	}

	.cft-tour-catalog--mobile-carousel .cft-mobile-carousel-controls {
		align-items: center;
		display: flex;
		gap: 12px;
		justify-content: flex-end;
		margin-top: 4px;
	}

	.cft-mobile-carousel-controls button {
		align-items: center;
		background: #fff;
		border: 1px solid #d9e1e7;
		border-radius: 50%;
		color: var(--cft-ink);
		cursor: pointer;
		display: inline-flex;
		font: 700 18px/1 sans-serif;
		height: 42px;
		justify-content: center;
		padding: 0;
		width: 42px;
	}

	.cft-mobile-carousel-controls button:disabled {
		cursor: default;
		opacity: .38;
	}

	.cft-mobile-carousel-controls span {
		color: #667582;
		font-size: 12px;
		font-weight: 700;
		min-width: 44px;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.cft-catalog-grid {
		grid-template-columns: 1fr;
	}

	.cft-catalog-filters {
		gap: 7px;
		margin-bottom: 20px;
	}

	.cft-catalog-filters button {
		flex: 1 1 auto;
		font-size: 12px;
		min-height: 40px;
		padding: 7px 10px;
	}

	.cft-catalog-card__body {
		padding: 17px;
	}

	.cft-catalog-card__footer strong {
		font-size: 16px;
	}

	.woocommerce-cart-form .shop_table .cart_item > .product-price,
	.woocommerce-cart-form .shop_table .cart_item > .product-quantity,
	.woocommerce-cart-form .shop_table .cart_item > .product-subtotal,
	.woocommerce-cart-form .shop_table .cart_item > .product-total,
	.woocommerce-cart-form .shop_table .cart_item > .product-remove,
	.woocommerce-cart-form .shop_table .cart_item > [data-title="Price"],
	.woocommerce-cart-form .shop_table .cart_item > [data-title="Quantity"],
	.woocommerce-cart-form .shop_table .cart_item > [data-title="Subtotal"],
	.woocommerce-cart-form .shop_table .cart_item > [data-title="Total"] {
		display: none !important;
	}

	.woocommerce-cart .cart_item dl.variation,
	.woocommerce-checkout .cart_item dl.variation,
	.woocommerce-checkout-review-order-table .cart_item dl.variation {
		display: block !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.woocommerce-cart .cart_item dl.variation dt,
	.woocommerce-cart .cart_item dl.variation dd,
	.woocommerce-checkout .cart_item dl.variation dt,
	.woocommerce-checkout .cart_item dl.variation dd,
	.woocommerce-checkout-review-order-table .cart_item dl.variation dt,
	.woocommerce-checkout-review-order-table .cart_item dl.variation dd {
		display: inline !important;
		font-size: 12px;
		line-height: 1.55;
		word-break: normal !important;
	}

	.woocommerce-cart .cart_item dl.variation dd,
	.woocommerce-checkout .cart_item dl.variation dd,
	.woocommerce-checkout-review-order-table .cart_item dl.variation dd {
		white-space: nowrap;
	}

	.woocommerce-cart .cart_item dl.variation dd::after,
	.woocommerce-checkout .cart_item dl.variation dd::after,
	.woocommerce-checkout-review-order-table .cart_item dl.variation dd::after {
		content: "";
		display: block;
		margin-bottom: 5px;
	}

	.wc-block-components-product-details li,
	.wc-block-components-product-details__item {
		display: block !important;
		font-size: 12px;
		line-height: 1.55;
	}

	.wc-block-components-product-details__name,
	.wc-block-components-product-details__value {
		display: inline !important;
		word-break: normal !important;
	}

	.wc-block-components-product-details__value {
		white-space: nowrap;
	}

	.cft-shell {
		padding-left: 12px;
		padding-right: 12px;
	}

	.cft-hero__media {
		height: 390px;
	}

	.cft-gallery-stage {
		grid-template-columns: 1fr;
	}

	.cft-hero__copy {
		bottom: 0;
		padding: 24px 20px;
	}

	.cft-hero__copy h1 {
		font-size: 34px;
	}

	.cft-hero__copy p {
		font-size: 14px;
	}

	.cft-gallery-count {
		bottom: auto;
		right: 12px;
		top: 12px;
	}

	.cft-thumbnails {
		display: flex;
		height: 92px;
		overflow-x: auto;
	}

	.cft-thumbnail-wrap {
		flex: 0 0 112px;
	}

	.cft-thumbnail {
		min-width: 0;
	}

	.cft-date-popover {
		min-width: 0;
		width: calc(100vw - 48px);
	}

	.cft-facts {
		grid-template-columns: 1fr;
	}

	.cft-fact,
	.cft-fact:nth-child(2) {
		border-bottom: 1px solid var(--cft-line);
		border-right: 0;
	}

	.cft-fact:last-child {
		border-bottom: 0;
	}

	.cft-section {
		padding: 36px 0;
	}

	.cft-section h2 {
		font-size: 24px;
	}

	.cft-inclusion-grid,
	.cft-lightbox__grid,
	.cft-tour-grid {
		grid-template-columns: 1fr;
	}

	.cft-lightbox {
		padding: 68px 12px 24px;
	}

	.cft-ticket-heading {
		padding: 20px 16px 15px;
	}

	.cft-availability-bar {
		align-items: stretch;
		grid-template-columns: 1fr;
		padding: 14px 16px;
	}

	.cft-availability-message {
		grid-column: auto;
	}

	.cft-ticket-list {
		padding: 0 12px;
	}

	.cft-ticket-list__head {
		display: none;
	}

	.cft-ticket-row {
		gap: 9px;
		grid-template-areas: "ticket-name ticket-price" "ticket-stepper ticket-stepper";
		grid-template-columns: 1fr auto;
		padding: 14px 4px;
	}

	.cft-ticket-price {
		text-align: right;
	}

	.cft-ticket-stepper {
		grid-column: 1 / -1;
		justify-self: end;
	}

	.cft-ticket-footer {
		align-items: stretch;
		flex-direction: column;
		gap: 13px;
	}

	.cft-ticket-footer .cft-book-button,
	.cft-ticket-footer button.cft-book-button {
		width: 100%;
	}
}
