:root {
	--wpto-bg: #f5efe5;
	--wpto-surface: #fffaf2;
	--wpto-card: #fffdf8;
	--wpto-text: #1e2a2f;
	--wpto-muted: #5a6a70;
	--wpto-line: #dfd4c2;
	--wpto-primary: #0f766e;
	--wpto-primary-dark: #0a5d57;
	--wpto-accent: #d97706;
	--wpto-shadow: 0 18px 45px rgba(24, 40, 37, 0.1);
	--wpto-shadow-soft: 0 8px 24px rgba(24, 40, 37, 0.08);
}

.wpto-wrap {
	color: var(--wpto-text);
	font-family: Georgia, "Times New Roman", serif;
}

.wpto-company-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 28px;
	margin-bottom: 24px;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.26), rgba(217, 119, 6, 0.2)),
		linear-gradient(180deg, #1f5653, #c27a2e);
	border: 1px solid var(--wpto-line);
	border-radius: 30px;
	box-shadow: 0 22px 50px rgba(24, 40, 37, 0.14);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	text-align: center;
}

.wpto-company-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 20, 23, 0.18), rgba(8, 20, 23, 0.48));
}

.wpto-company-banner-inner {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 100%;
	padding: 10px;
}

.wpto-company-banner-inner h2,
.wpto-tour-summary-content h3,
.wpto-portal-card h2,
.wpto-portal-card h3,
.wpto-booking-card h4,
.wpto-single-section h2,
.wpto-day-card h3 {
	margin: 0;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.wpto-company-banner-inner h2 {
	max-width: 14ch;
	color: #fff;
	font-size: clamp(2.1rem, 4vw, 3.7rem);
	line-height: 1.05;
	text-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
}

.wpto-tour-filters {
	padding: 20px 22px;
	margin-bottom: 24px;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(255, 253, 248, 1)),
		var(--wpto-card);
	border: 1px solid var(--wpto-line);
	border-radius: 24px;
	box-shadow: var(--wpto-shadow-soft);
}

.wpto-tour-filter-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: 14px;
	align-items: end;
}

.wpto-tour-filter-field {
	display: grid;
	gap: 8px;
}

.wpto-tour-filter-field label {
	color: #44555b;
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wpto-tour-filter-field select {
	width: 100%;
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid #ddd4c7;
	border-radius: 16px;
	background: #fff;
	color: #1f2d33;
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 0.98rem;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.wpto-tour-filter-field select:focus {
	outline: none;
	border-color: rgba(15, 118, 110, 0.45);
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.wpto-tour-filter-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.wpto-tour-filter-actions .wpto-button,
.wpto-tour-filter-actions .wpto-button-secondary {
	min-width: 120px;
	justify-content: center;
}

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

.wpto-tour-card,
.wpto-portal-card,
.wpto-booking-card,
.wpto-single-summary,
.wpto-single-section,
.wpto-single-gallery {
	background: var(--wpto-card);
	border: 1px solid var(--wpto-line);
	border-radius: 22px;
	box-shadow: var(--wpto-shadow);
	overflow: hidden;
}

.wpto-tour-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.wpto-tour-link:hover .wpto-tour-thumb img,
.wpto-tour-link:focus .wpto-tour-thumb img {
	transform: scale(1.03);
}

.wpto-tour-thumb {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #d9f0ec, #f7d7b4);
	overflow: hidden;
}

.wpto-tour-thumb img,
.wpto-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.wpto-tour-thumb-placeholder,
.wpto-single-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 220px;
	color: var(--wpto-muted);
	font-style: italic;
	background: linear-gradient(135deg, #d9f0ec, #f7d7b4);
}

.wpto-tour-summary-content {
	padding: 18px 18px 20px;
}

.wpto-tour-summary-content h3 {
	font-size: 1.18rem;
}

.wpto-tour-price {
	margin: 10px 0 0;
	color: var(--wpto-primary);
	font-weight: 700;
	font-size: 1rem;
}

.wpto-tour-card-showcase {
	padding: 12px;
	background: #fbfbfb;
	border-color: #ebe7df;
	border-radius: 28px;
	box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.wpto-tour-card-media {
	position: relative;
}

.wpto-tour-thumb-showcase {
	display: block;
	overflow: hidden;
	border-radius: 22px;
}

.wpto-tour-thumb-showcase img {
	transform: scale(1);
	transition: transform 0.45s ease;
}

.wpto-tour-thumb-showcase:hover img,
.wpto-tour-thumb-showcase:focus img,
.wpto-tour-thumb-showcase:focus-visible img {
	transform: scale(1.06);
}

.wpto-tour-summary-showcase {
	padding: 18px 12px 8px;
}

.wpto-tour-summary-showcase h3 {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 1.12rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.4;
}

.wpto-tour-duration-inline {
	font-weight: 700;
}

.wpto-tour-title-divider {
	color: #6f6f6f;
}

.wpto-tour-highlight-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
	margin-bottom: 14px;
}

.wpto-tour-highlight-block span,
.wpto-tour-section-label {
	display: block;
	margin-bottom: 5px;
	color: #7f7f7f;
	font-size: 0.84rem;
}

.wpto-tour-highlight-block strong {
	font-size: 1.06rem;
}

.wpto-tour-highlight-price {
	text-align: right;
}

.wpto-tour-highlight-price strong {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #2e2e2e;
}

.wpto-tour-primary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 18px;
	margin-bottom: 16px;
	background: linear-gradient(180deg, #ff812f, #ff6e17);
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.wpto-tour-primary-cta:hover,
.wpto-tour-primary-cta:focus {
	color: #fff;
	filter: brightness(0.98);
}

.wpto-tour-departures {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid #ece8e0;
}

.wpto-tour-departure-list {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpto-tour-departure-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6f6f6f;
	font-size: 0.92rem;
}

.wpto-tour-departure-list em {
	color: #8c8c8c;
	font-style: italic;
}

.wpto-tour-departure-check {
	color: #44b26d;
	font-weight: 700;
}

.wpto-tour-availability {
	padding-bottom: 6px;
}

.wpto-tour-months {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.wpto-tour-month {
	color: #b1b1b1;
	font-size: 0.82rem;
}

.wpto-tour-month.is-active {
	color: #2f2f2f;
	font-weight: 600;
}

.wpto-form-grid,
.wpto-auth-grid,
.wpto-booking-list {
	display: grid;
	gap: 16px;
}

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

.wpto-form-field {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
}

.wpto-form-field label {
	font-size: 0.9rem;
	font-weight: 600;
}

.wpto-form-field input,
.wpto-form-field textarea,
.wpto-form-field select {
	width: 100%;
	padding: 11px 13px;
	background: #fff;
	border: 1px solid #d6cab8;
	border-radius: 12px;
	color: var(--wpto-text);
	font-size: 0.95rem;
}

.wpto-extra-options {
	display: grid;
	gap: 10px;
	margin: 16px 0;
}

.wpto-extra-options h3 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.wpto-booking-service-group {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.wpto-booking-service-head h4 {
	margin: 0 0 6px;
	font-size: 1rem;
}

.wpto-booking-service-head p {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.88rem;
	line-height: 1.65;
}

.wpto-service-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 12px;
}

.wpto-service-option {
	position: relative;
	display: block;
	cursor: pointer;
}

.wpto-service-option input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.wpto-service-option-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: #fffbf4;
	border: 1px solid #eadfcf;
	border-radius: 18px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wpto-service-option:hover .wpto-service-option-card {
	transform: translateY(-1px);
	box-shadow: var(--wpto-shadow-soft);
}

.wpto-service-option input:checked + .wpto-service-option-card {
	border-color: rgba(15, 118, 110, 0.45);
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
	background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), #fffbf4);
}

.wpto-service-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(135deg, #d9f0ec, #f7d7b4);
}

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

.wpto-service-thumb-placeholder {
	color: var(--wpto-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.wpto-service-copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.wpto-service-copy strong {
	font-size: 0.95rem;
	line-height: 1.4;
}

.wpto-service-meta {
	color: var(--wpto-muted);
	font-size: 0.83rem;
	line-height: 1.55;
}

.wpto-service-price {
	color: var(--wpto-primary-dark);
	font-size: 0.9rem;
	font-weight: 700;
}

.wpto-extra-option {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: center;
	padding: 12px 14px;
	background: #fffbf4;
	border: 1px solid #eadfcf;
	border-radius: 14px;
}

.wpto-extra-copy {
	flex: 1 1 auto;
}

.wpto-extra-option strong {
	font-size: 0.95rem;
}

.wpto-extra-option small {
	display: block;
	margin-top: 4px;
	color: var(--wpto-muted);
	font-size: 0.83rem;
	line-height: 1.5;
}

.wpto-extra-stepper {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px;
	background: #fff;
	border: 1px solid #e5d8c4;
	border-radius: 999px;
}

.wpto-stepper-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.1);
	color: var(--wpto-primary-dark);
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
}

.wpto-extra-qty-input {
	width: 42px;
	min-width: 42px;
	padding: 0;
	text-align: center;
	border: 0;
	background: transparent;
	color: var(--wpto-text);
	font-weight: 700;
	font-size: 0.95rem;
}

.wpto-booking-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 12px 0 18px;
	padding: 14px 16px;
	background: rgba(15, 118, 110, 0.08);
	border: 1px solid rgba(15, 118, 110, 0.14);
	border-radius: 14px;
}

.wpto-booking-total strong {
	font-size: 0.92rem;
}

.wpto-booking-total-value {
	color: var(--wpto-primary-dark);
	font-size: 1.12rem;
	font-weight: 700;
}

.wpto-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	background: var(--wpto-primary);
	color: #fff;
	text-decoration: none;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1;
}

.wpto-button:hover,
.wpto-button:focus {
	background: var(--wpto-primary-dark);
	color: #fff;
}

.wpto-button-disabled,
.wpto-button-disabled:hover,
.wpto-button-disabled:focus {
	background: #b7b7b7;
	color: #fff;
	cursor: not-allowed;
}

.wpto-button[disabled] {
	pointer-events: none;
}

.wpto-button-secondary {
	background: var(--wpto-accent);
}

.wpto-notice {
	padding: 14px 18px;
	margin-bottom: 20px;
	border-radius: 14px;
	font-size: 0.94rem;
}

.wpto-notice-success {
	background: #ddf6e7;
	color: #0d5a37;
}

.wpto-notice-error {
	background: #ffe5de;
	color: #8f2b12;
}

.wpto-review-list {
	display: grid;
	gap: 12px;
}

.wpto-review-item {
	padding: 16px 18px;
	background: #fff8ef;
	border-radius: 14px;
	border: 1px solid #f0dfc4;
}

.wpto-review-item strong {
	font-size: 0.96rem;
}

.wpto-review-item p,
.wpto-comment-rating {
	margin: 8px 0 0;
	font-size: 0.94rem;
	line-height: 1.65;
}

.wpto-review-rating {
	display: inline-block;
	margin-left: 10px;
	color: var(--wpto-accent);
	font-weight: 700;
	font-size: 0.88rem;
}

.wpto-booking-card,
.wpto-portal-card {
	padding: 22px;
}

.wpto-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.wpto-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	background: var(--wpto-card);
	border: 1px solid var(--wpto-line);
	border-radius: 999px;
	text-decoration: none;
	color: var(--wpto-text);
	font-size: 0.92rem;
}

.wpto-pagination .current {
	background: var(--wpto-primary);
	color: #fff;
	border-color: var(--wpto-primary);
}

.wpto-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 8px 0 28px;
	color: var(--wpto-muted);
	font-size: 0.92rem;
	text-align: center;
}

.wpto-breadcrumb a {
	color: var(--wpto-primary);
	text-decoration: none;
}

.wpto-breadcrumb-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.12));
	border: 1px solid rgba(15, 118, 110, 0.2);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(24, 40, 37, 0.08);
	color: var(--wpto-primary-dark);
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wpto-breadcrumb-home:hover,
.wpto-breadcrumb-home:focus {
	transform: translateY(-1px);
	border-color: rgba(15, 118, 110, 0.34);
	box-shadow: 0 14px 28px rgba(24, 40, 37, 0.12);
	color: var(--wpto-primary-dark);
}

.wpto-breadcrumb-separator {
	color: #8b7b68;
	font-size: 1rem;
	font-weight: 700;
}

.wpto-breadcrumb-current {
	color: #4f5b60;
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.wpto-single-site-main {
	padding: 34px 20px 60px;
	background:
		radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
		radial-gradient(circle at top right, rgba(217, 119, 6, 0.08), transparent 30%),
		linear-gradient(180deg, #f7f0e5, #efe5d6);
}

.wpto-single-tour-page {
	max-width: 1380px;
	margin: 0 auto;
	font-size: 15px;
}

.wpto-single-shell {
	padding: 28px;
	background: rgba(255, 253, 248, 0.92);
	border: 1px solid rgba(223, 212, 194, 0.92);
	border-radius: 34px;
	box-shadow: 0 28px 70px rgba(24, 40, 37, 0.12);
}

.wpto-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.72fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 28px;
}

.wpto-single-gallery {
	position: relative;
	padding: 0;
	min-height: 540px;
	background: #102726;
}

.wpto-slideshow {
	position: relative;
	height: 100%;
	background: #f3ead9;
}

.wpto-slideshow-stage {
	position: relative;
	min-height: 540px;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}

.wpto-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease;
}

.wpto-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.wpto-slide-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: rgba(17, 29, 33, 0.7);
	color: #fff;
	cursor: pointer;
	z-index: 3;
}

.wpto-slide-prev {
	left: 18px;
}

.wpto-slide-next {
	right: 18px;
}

.wpto-slide-dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 3;
}

.wpto-slide-dot {
	width: 11px;
	height: 11px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
}

.wpto-slide-dot.is-active {
	background: #fff;
}

.wpto-hero-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 34px 30px 30px;
	background: linear-gradient(180deg, rgba(10, 20, 23, 0), rgba(10, 20, 23, 0.88) 54%, rgba(10, 20, 23, 0.96));
	color: #fff;
}

.wpto-hero-kicker {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wpto-hero-title {
	margin: 14px 0 14px;
	color: #fff;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.02;
	max-width: 12ch;
}

.wpto-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wpto-hero-meta span,
.wpto-tour-meta span {
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.84rem;
}

.wpto-hero-meta span {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
}

.wpto-single-summary {
	display: grid;
	gap: 18px;
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(15, 118, 110, 0.05), rgba(255, 253, 248, 1)),
		var(--wpto-card);
}

.wpto-price-box {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	padding: 18px;
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(217, 119, 6, 0.1));
	border: 1px solid rgba(15, 118, 110, 0.12);
	border-radius: 18px;
	box-shadow: var(--wpto-shadow-soft);
}

.wpto-price-box-copy {
	display: grid;
	gap: 4px;
}

.wpto-price-label {
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wpto-muted);
}

.wpto-single-price {
	margin: 0;
	color: var(--wpto-primary-dark);
	font-weight: 700;
	font-size: clamp(1.9rem, 2.5vw, 2.5rem);
	line-height: 1;
}

.wpto-price-subtitle {
	font-size: 0.86rem;
	color: var(--wpto-muted);
}

.wpto-summary-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 12px;
}

.wpto-summary-fact {
	padding: 14px 15px;
	background: #fff;
	border: 1px solid #ebe2d3;
	border-radius: 16px;
}

.wpto-summary-fact strong {
	display: block;
	font-size: 0.96rem;
}

.wpto-summary-label {
	display: block;
	margin-bottom: 6px;
	color: var(--wpto-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wpto-single-intro {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.96rem;
	line-height: 1.7;
}

.wpto-single-intro p:first-child {
	margin-top: 0;
}

.wpto-single-intro p:last-child {
	margin-bottom: 0;
}

.wpto-summary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wpto-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.wpto-single-main {
	display: grid;
	gap: 24px;
}

.wpto-single-section {
	padding: 24px;
}

.wpto-single-section h2 {
	margin-bottom: 14px;
	font-size: 1.38rem;
}

.wpto-tour-tabs {
	padding-top: 18px;
}

.wpto-tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.wpto-tab-button {
	padding: 10px 16px;
	border: 1px solid #e2d6c4;
	border-radius: 999px;
	background: #fffaf2;
	color: var(--wpto-muted);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
}

.wpto-tab-button.is-active {
	background: var(--wpto-primary);
	border-color: var(--wpto-primary);
	color: #fff;
}

.wpto-tab-panel {
	padding-top: 4px;
}

.wpto-feature-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpto-feature-list li {
	position: relative;
	padding: 14px 16px 14px 42px;
	background: #fff8ef;
	border: 1px solid #efdfc8;
	border-radius: 16px;
	color: var(--wpto-text);
	font-size: 0.95rem;
	line-height: 1.6;
}

.wpto-feature-list li::before {
	content: "+";
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.12);
	color: var(--wpto-primary-dark);
	font-size: 0.85rem;
	font-weight: 700;
}

.wpto-feature-list-muted li::before {
	content: "-";
	background: rgba(217, 119, 6, 0.12);
	color: #a65a00;
}

.wpto-tour-description {
	color: var(--wpto-muted);
	font-size: 0.96rem;
	line-height: 1.75;
}

.wpto-tour-description p:first-child {
	margin-top: 0;
}

.wpto-day-list {
	display: grid;
	gap: 12px;
}

.wpto-day-card {
	padding: 18px 18px 18px 22px;
	background: linear-gradient(180deg, #fffaf3, #fff6ea);
	border: 1px solid #f0dfc4;
	border-left: 4px solid var(--wpto-accent);
	border-radius: 18px;
}

.wpto-day-card h3 {
	font-size: 1rem;
}

.wpto-day-card p {
	margin: 10px 0 0;
	color: var(--wpto-muted);
	font-size: 0.94rem;
	line-height: 1.65;
}

.wpto-reviews .wpto-review-form {
	margin-top: 18px;
}

.wpto-single-sidebar {
	position: sticky;
	top: 22px;
}

.wpto-single-sidebar .wpto-booking-card {
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 1) 22%),
		var(--wpto-card);
}

.wpto-booking-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e7dccb;
}

.wpto-booking-header h2 {
	margin: 0 0 6px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.36rem;
}

.wpto-booking-note {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.93rem;
	line-height: 1.6;
}

.wpto-booking-disabled-note {
	margin: 0;
	color: #8f2b12;
	font-size: 0.9rem;
	line-height: 1.6;
}

.wpto-booking-price-pill {
	min-width: 120px;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid #e8dece;
	border-radius: 16px;
	text-align: right;
	box-shadow: var(--wpto-shadow-soft);
}

.wpto-booking-price-pill span {
	display: block;
	margin-bottom: 4px;
	color: var(--wpto-muted);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wpto-booking-price-pill strong {
	display: block;
	color: var(--wpto-primary-dark);
	font-size: 1.06rem;
}

.wpto-booking-highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.wpto-booking-highlight {
	padding: 12px 14px;
	background: rgba(15, 118, 110, 0.06);
	border: 1px solid rgba(15, 118, 110, 0.12);
	border-radius: 14px;
}

.wpto-booking-highlight span {
	display: block;
	margin-bottom: 5px;
	color: var(--wpto-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wpto-booking-highlight strong {
	font-size: 0.94rem;
}

.wpto-booking-panel .wpto-form-grid {
	gap: 12px;
}

.wpto-booking-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.wpto-booking-rate {
	padding: 12px 14px;
	background: #fffaf2;
	border: 1px solid #e8dece;
	border-radius: 14px;
}

.wpto-booking-rate span {
	display: block;
	margin-bottom: 5px;
	color: var(--wpto-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wpto-booking-rate strong {
	font-size: 0.96rem;
}

.wpto-passenger-grid {
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
}

.wpto-passenger-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px;
	background: #fffbf4;
	border: 1px solid #eadfcf;
	border-radius: 16px;
}

.wpto-passenger-copy {
	display: grid;
	gap: 4px;
}

.wpto-passenger-copy strong {
	font-size: 0.95rem;
}

.wpto-passenger-copy small {
	color: var(--wpto-muted);
	font-size: 0.84rem;
}

.wpto-booking-travelers {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	margin-bottom: 14px;
	background: rgba(15, 118, 110, 0.06);
	border: 1px solid rgba(15, 118, 110, 0.12);
	border-radius: 14px;
}

.wpto-booking-travelers span {
	color: var(--wpto-muted);
	font-size: 0.88rem;
}

.wpto-booking-travelers strong {
	font-size: 1rem;
}

.wpto-booking-preview-list {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
}

.wpto-booking-preview-item {
	padding: 14px;
	background: #fffaf2;
	border: 1px solid #eadfcf;
	border-radius: 16px;
}

.wpto-booking-preview-item strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.94rem;
}

.wpto-booking-preview-item span {
	display: block;
	color: var(--wpto-muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.wpto-button-block {
	width: 100%;
}

.wpto-form-grid-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wpto-form-field-full {
	grid-column: 1 / -1;
}

.wpto-review-note {
	margin-top: 18px;
	padding: 16px 18px;
	background: #fff8ef;
	border: 1px solid #f0dfc4;
	border-radius: 16px;
	color: var(--wpto-muted);
	font-size: 0.93rem;
	line-height: 1.7;
}

body.wpto-modal-open {
	overflow: hidden;
}

.wpto-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.wpto-booking-modal[hidden]:target,
.wpto-booking-modal:target {
	display: block;
}

.wpto-booking-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(11, 18, 21, 0.64);
	backdrop-filter: blur(6px);
}

.wpto-booking-dialog {
	position: relative;
	z-index: 2;
	width: min(1120px, calc(100vw - 32px));
	max-height: calc(100vh - 40px);
	margin: 20px auto;
	overflow: auto;
	background: #fffdf8;
	border: 1px solid #dfd4c2;
	border-radius: 28px;
	box-shadow: 0 32px 80px rgba(15, 23, 42, 0.2);
}

.wpto-booking-dialog-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.wpto-booking-dialog-main {
	padding: 30px;
}

.wpto-booking-dialog-sidebar {
	padding: 30px 30px 30px 0;
}

.wpto-booking-sidebar-card {
	position: sticky;
	top: 30px;
	display: grid;
	gap: 16px;
	padding: 22px;
	background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 250, 242, 1));
	border: 1px solid #e4d7c5;
	border-radius: 22px;
}

.wpto-booking-sidebar-card h3 {
	margin: 0;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.34rem;
}

.wpto-booking-sidebar-card p {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.92rem;
	line-height: 1.7;
}

.wpto-booking-sidebar-kicker,
.wpto-booking-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	background: rgba(15, 118, 110, 0.1);
	border: 1px solid rgba(15, 118, 110, 0.12);
	border-radius: 999px;
	color: var(--wpto-primary-dark);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wpto-booking-wizard-head {
	display: grid;
	gap: 18px;
	margin-bottom: 22px;
}

.wpto-booking-wizard-head h2 {
	margin: 10px 0 8px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 2rem;
}

.wpto-booking-wizard-head p {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.94rem;
	line-height: 1.7;
}

.wpto-booking-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wpto-booking-step-pill {
	display: inline-flex;
	align-items: center;
	padding: 9px 14px;
	background: #fff8ef;
	border: 1px solid #eadfcf;
	border-radius: 999px;
	color: var(--wpto-muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.wpto-booking-step-pill.is-active {
	background: var(--wpto-primary);
	border-color: var(--wpto-primary);
	color: #fff;
}

.wpto-booking-step-panel {
	display: none;
}

.wpto-booking-step-panel.is-active {
	display: block;
}

.wpto-booking-step-copy {
	margin-bottom: 18px;
}

.wpto-booking-step-copy h3 {
	margin: 0 0 8px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.4rem;
}

.wpto-booking-step-copy p {
	margin: 0;
	color: var(--wpto-muted);
	font-size: 0.93rem;
	line-height: 1.7;
}

.wpto-booking-actions-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.wpto-booking-capacity-note {
	color: var(--wpto-muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.wpto-booking-empty-state {
	padding: 16px 18px;
	background: #fff8ef;
	border: 1px solid #eadfcf;
	border-radius: 16px;
	color: var(--wpto-muted);
}

.wpto-booking-final-summary,
.wpto-booking-sidebar-meta {
	display: grid;
	gap: 10px;
}

.wpto-booking-summary-row,
.wpto-booking-sidebar-meta-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	background: #fffaf2;
	border: 1px solid #eadfcf;
	border-radius: 16px;
}

.wpto-booking-summary-row span,
.wpto-booking-sidebar-meta-item span {
	color: var(--wpto-muted);
	font-size: 0.87rem;
}

.wpto-booking-summary-row strong,
.wpto-booking-sidebar-meta-item strong {
	text-align: right;
	font-size: 0.92rem;
	line-height: 1.5;
}

.wpto-booking-total-sidebar {
	margin: 0;
}

.wpto-booking-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.1);
	color: var(--wpto-primary-dark);
	cursor: pointer;
	font-size: 1.7rem;
	line-height: 1;
}

.wpto-portal-card p,
.wpto-booking-card p {
	font-size: 0.94rem;
	line-height: 1.6;
}

@media (max-width: 1100px) {
	.wpto-single-site-main {
		padding: 24px 16px 44px;
	}

	.wpto-single-shell {
		padding: 22px;
		border-radius: 28px;
	}

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

	.wpto-tour-filter-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}

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

	.wpto-single-hero,
	.wpto-single-layout {
		grid-template-columns: 1fr;
	}

	.wpto-booking-dialog-grid {
		grid-template-columns: 1fr;
	}

	.wpto-booking-dialog-sidebar {
		padding: 0 30px 30px;
	}

	.wpto-booking-sidebar-card {
		position: static;
	}

	.wpto-single-gallery,
	.wpto-slideshow-stage {
		min-height: 460px;
	}

	.wpto-single-sidebar {
		position: static;
	}
}

@media (max-width: 782px) {
	.wpto-single-site-main {
		padding: 0;
		background: transparent;
	}

	.wpto-single-shell {
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.wpto-company-header,
	.wpto-auth-grid {
		grid-template-columns: 1fr;
		display: grid;
	}

	.wpto-tour-filters {
		padding: 18px;
	}

	.wpto-company-header {
		min-height: 190px;
		padding: 22px 18px;
		border-radius: 22px;
	}

	.wpto-company-banner-inner h2 {
		max-width: none;
		font-size: 1.95rem;
	}

	.wpto-tour-filter-row {
		grid-template-columns: 1fr;
	}

	.wpto-tour-filter-actions {
		justify-content: stretch;
	}

	.wpto-tour-filter-actions .wpto-button,
	.wpto-tour-filter-actions .wpto-button-secondary {
		width: 100%;
	}

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

	.wpto-single-gallery,
	.wpto-slideshow-stage,
	.wpto-single-placeholder {
		min-height: 360px;
	}

	.wpto-hero-overlay {
		padding: 22px 20px 20px;
	}

	.wpto-hero-title {
		max-width: none;
		font-size: 1.85rem;
	}

	.wpto-single-summary,
	.wpto-single-section,
	.wpto-single-sidebar .wpto-booking-card {
		padding: 20px;
	}

	.wpto-price-box,
	.wpto-booking-header,
	.wpto-extra-option,
	.wpto-service-option-card {
		flex-direction: column;
		align-items: stretch;
	}

	.wpto-tour-highlight-row {
		grid-template-columns: 1fr;
	}

	.wpto-tour-highlight-price {
		text-align: left;
	}

	.wpto-summary-facts,
	.wpto-booking-highlights,
	.wpto-booking-pricing-grid,
	.wpto-auth-grid,
	.wpto-form-grid-two {
		grid-template-columns: 1fr;
	}

	.wpto-extra-stepper {
		align-self: flex-start;
	}

	.wpto-service-options {
		grid-template-columns: 1fr;
	}

	.wpto-service-option-card {
		display: flex;
	}

	.wpto-passenger-card {
		flex-direction: column;
		align-items: stretch;
	}

	.wpto-booking-dialog {
		width: calc(100vw - 20px);
		margin: 10px auto;
		max-height: calc(100vh - 20px);
	}

	.wpto-booking-dialog-main,
	.wpto-booking-dialog-sidebar {
		padding: 20px;
	}

	.wpto-booking-actions-row,
	.wpto-booking-summary-row,
	.wpto-booking-sidebar-meta-item {
		flex-direction: column;
		align-items: stretch;
	}

	.wpto-booking-summary-row strong,
	.wpto-booking-sidebar-meta-item strong {
		text-align: left;
	}

	.wpto-slide-button {
		width: 42px;
		height: 42px;
	}
}


.wpto-booking-fixed-date {
	margin-bottom: 18px;
}

.wpto-booking-fixed-date input[readonly] {
	background: #f8f4ec;
	cursor: default;
}


.wpto-card-countdown,
.wpto-countdown-banner {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(217, 119, 6, 0.12);
	border: 1px solid rgba(217, 119, 6, 0.25);
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 0.9rem;
}

.wpto-countdown-banner {
	margin-bottom: 10px;
	background: linear-gradient(135deg, #b45309 0%, #f97316 55%, #fb923c 100%);
	border-color: rgba(249, 115, 22, 0.35);
	color: #fff;
	box-shadow: 0 12px 26px rgba(249, 115, 22, 0.20);
}

.wpto-booking-deadline-note,
.wpto-fixed-date-meta {
	margin-top: 10px;
	font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	font-size: 0.92rem;
	color: var(--wpto-muted);
}

.wpto-home-showcase {
	position: relative;
	padding: 1.5rem 0 0.5rem;
	isolation: isolate;
}

.wpto-home-showcase::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 50%;
	width: min(680px, 82vw);
	height: 240px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(65, 120, 255, 0.18) 0%, rgba(65, 120, 255, 0) 72%);
	filter: blur(8px);
	pointer-events: none;
	z-index: -1;
}

.wpto-home-showcase-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	text-align: center;
}

.wpto-home-showcase-title {
	margin: 0 0 0.35rem;
	font-size: clamp(2rem, 3vw, 2.9rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #081225;
}

.wpto-home-showcase-intro {
	margin: 0;
	max-width: 680px;
	color: #5b6475;
}

.wpto-home-tour-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.9rem;
}

.wpto-home-tour-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1rem;
	border-radius: 34px;
	background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
	box-shadow: 0 24px 64px rgba(13, 31, 67, 0.12);
	border: 1px solid rgba(25, 74, 145, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease;
	overflow: visible;
}

.wpto-home-tour-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(47,104,255,0.16));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.wpto-home-tour-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 32px 78px rgba(13, 31, 67, 0.18);
}

.wpto-home-tour-card.is-popular:hover {
	box-shadow: 0 36px 86px rgba(255, 148, 56, 0.24);
}

.wpto-home-tour-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 12;
	overflow: hidden;
	border-radius: 30px;
	background: #e7edf8;
}

.wpto-home-tour-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.wpto-home-tour-card:hover .wpto-home-tour-media img {
	transform: scale(1.08);
}

.wpto-home-tour-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 20, 40, 0.08) 0%, rgba(10, 20, 40, 0.12) 36%, rgba(10, 20, 40, 0.55) 100%);
	pointer-events: none;
}

.wpto-home-tour-placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	font-weight: 700;
	color: #5a6780;
}

.wpto-home-tour-image-badges {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.65rem;
	z-index: 2;
}

.wpto-home-tour-image-badge-stack {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
	max-width: 62%;
}

.wpto-home-tour-image-pill,
.wpto-home-tour-pill,
.wpto-home-tour-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 0.98rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
}

.wpto-home-tour-image-pill {
	background: rgba(255, 255, 255, 0.94);
	color: #14213d;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 18px rgba(16, 24, 40, 0.13);
}

.wpto-home-tour-image-pill.is-dark {
	background: rgba(9, 22, 46, 0.88);
	color: #ffffff;
}

.wpto-home-tour-image-pill.is-popular {
	background: linear-gradient(135deg, #ffb54d 0%, #ff6f4d 100%);
	color: #ffffff;
}

.wpto-home-tour-image-pill.is-best-seller {
	background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
	color: #ffffff;
}

.wpto-home-tour-image-pill.is-limited-seats {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
	color: #ffffff;
}

.wpto-home-tour-image-pill.is-new {
	background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
	color: #ffffff;
}

.wpto-home-tour-body {
	position: relative;
	margin: -2.65rem 1rem 0.1rem;
	padding: 1.35rem 1.15rem 1.2rem;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 42px rgba(12, 25, 52, 0.15);
	z-index: 3;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.wpto-home-tour-topline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 0.95rem;
}

.wpto-home-tour-pill {
	background: #eef2ff;
	color: #3652a3;
	padding: 0.72rem 1.12rem;
}

.wpto-home-tour-title {
	margin: 0;
	font-size: clamp(1.9rem, 2vw, 2.2rem);
	line-height: 1.08;
	text-align: center;
}

.wpto-home-tour-title a {
	color: #0d1830;
	text-decoration: none;
}

.wpto-home-tour-title a:hover {
	color: #1f5eff;
}

.wpto-home-tour-rating-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.95rem;
	margin-bottom: 0.25rem;
	color: #5d6880;
	font-size: 0.98rem;
	min-height: 1.6rem;
}

.wpto-home-tour-rating-row strong {
	color: #10203f;
}

.wpto-home-tour-stars {
	color: #f59e0b;
	letter-spacing: 0.12em;
}

.wpto-home-tour-rating-row.is-new {
	color: #1f5eff;
	font-weight: 700;
}

.wpto-home-tour-countdown {
	position: relative;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: linear-gradient(135deg, #b45309 0%, #f97316 52%, #fb923c 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(249, 115, 22, 0.30);
	overflow: hidden;
	animation: wptoCountdownPulse 3.6s ease-in-out infinite;
}

.wpto-home-tour-countdown::after {
	content: "";
	position: absolute;
	inset: -120% auto auto -20%;
	width: 42%;
	height: 260%;
	transform: rotate(22deg);
	background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.22), rgba(255,255,255,0));
	animation: wptoCardShine 4.8s linear infinite;
}

.wpto-home-tour-countdown .wpto-countdown-label {
	display: block;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.82;
	margin-bottom: 0.32rem;
}

.wpto-home-tour-countdown .wpto-countdown-value {
	font-size: 1.06rem;
	font-weight: 800;
}

.wpto-home-tour-meta-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 0.15rem;
	margin-bottom: 1rem;
}

.wpto-home-tour-meta-item {
	padding: 1rem 0.9rem;
	border-radius: 18px;
	background: linear-gradient(180deg, #f4f7fb 0%, #edf1f6 100%);
	border: 1px solid rgba(18, 55, 120, 0.08);
	min-height: 124px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wpto-home-tour-meta-grid span {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #73809a;
}

.wpto-home-tour-meta-grid strong {
	color: #13213f;
	font-size: 0.98rem;
	line-height: 1.55;
}

.wpto-home-tour-footer {
	display: flex;
	align-items: center;
	justify-content: stretch;
	gap: 0.75rem;
	padding-top: 0.15rem;
	margin-top: auto;
}

.wpto-home-tour-badge.is-open {
	background: #e9f9ef;
	color: #12733c;
}

.wpto-home-tour-badge.is-sold-out,
.wpto-home-tour-badge.is-closed {
	background: #fff1f1;
	color: #b42318;
}

.wpto-home-tour-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem 1.1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	font-size: 1rem;
	white-space: nowrap;
	box-shadow: 0 16px 28px rgba(249, 115, 22, 0.26);
	transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.wpto-home-tour-link:hover {
	color: #ffffff;
	filter: brightness(1.05);
	transform: translateY(-2px);
	box-shadow: 0 20px 34px rgba(249, 115, 22, 0.34);
}

@keyframes wptoCountdownPulse {
	0%, 100% { transform: translateY(0); box-shadow: 0 16px 34px rgba(249, 115, 22, 0.30); }
	50% { transform: translateY(-1px); box-shadow: 0 20px 38px rgba(29, 78, 216, 0.34); }
}

@keyframes wptoCardShine {
	0% { left: -28%; }
	100% { left: 120%; }
}

@media (max-width: 1024px) {
	.wpto-home-tour-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wpto-home-tour-meta-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wpto-home-tour-grid {
		grid-template-columns: 1fr;
	}

	.wpto-home-tour-meta-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wpto-home-tour-card {
		padding: 0.8rem;
		border-radius: 28px;
	}

	.wpto-home-tour-body {
		margin: -2rem 0.5rem 0.1rem;
		padding: 1.15rem 1rem 1rem;
	}

	.wpto-home-tour-title {
		font-size: 1.65rem;
	}

	.wpto-home-tour-image-badges,
	.wpto-home-showcase-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.wpto-home-tour-image-badge-stack {
		justify-content: flex-start;
	}

	.wpto-home-showcase-header {
		align-items: center;
	}
}



.wpto-booking-payment-panel {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid #f2d2b5;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff4ea 100%);
}

.wpto-payment-options {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.wpto-payment-option {
    display: block;
}

.wpto-payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wpto-payment-option-card {
    display: block;
    padding: 18px 18px;
    border-radius: 20px;
    border: 1px solid #ead7c8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 31, 53, 0.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.wpto-payment-option-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #16203a;
}

.wpto-payment-option-card small {
    display: block;
    color: #6b7280;
    line-height: 1.5;
}

.wpto-payment-option input:checked + .wpto-payment-option-card {
    border-color: #f08a24;
    box-shadow: 0 16px 32px rgba(240, 138, 36, 0.16);
    background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.wpto-payment-option:hover .wpto-payment-option-card {
    transform: translateY(-2px);
}

.wpto-payment-link-note {
    margin: 12px 0 0;
    color: #9a5a13;
    font-size: 14px;
}
