/* ================================================================
   Hiking Estonia - Main Stylesheet
   ================================================================ */

/* --- Design Tokens --- */
:root {
	--color-primary: #57B957;
	--color-primary-hover: #48AD48;
	--color-body: #424541;
	--color-secondary: #898F9F;
	--color-dark: #1D1D1D;
	--color-white: #FFFFFF;
	--color-light-bg: #F8F9FE;
	--color-mint-bg: #F1F9F1;
	--color-border: #DDDEE4;
	--color-light-gray: #F4F4F6;

	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Raleway', sans-serif;

	--container: 1425px; /* +25% per feedback #133 (was 1140) — header & all content share this */
	--radius: 12px;
	--radius-sm: 4px;
	--shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
	--transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-body);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-dark);
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 20px; }
h6 { font-size: 18px; font-weight: 500; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
}
.section-padding { padding-top: 80px; padding-bottom: 80px; }
.section-padding-sm { padding-top: 48px; padding-bottom: 48px; }

@media (max-width: 900px) {
	.container { padding: 0 30px; }
	.section-padding { padding-top: 60px; padding-bottom: 60px; }
}
@media (max-width: 600px) {
	.container { padding: 0 24px; }
	.section-padding { padding-top: 48px; padding-bottom: 48px; }
	.section-padding-sm { padding-top: 32px; padding-bottom: 32px; }
}

/* --- Buttons --- */
.btn,
.btn-primary,
.btn-outline,
.btn-outline-green {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	padding: 16px 40px;
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition), transform 0.2s ease, border-color var(--transition);
	text-align: center;
	line-height: 1;
	cursor: pointer;
}
.btn-primary {
	color: var(--color-white);
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
}
.btn-primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	transform: translateY(-1px);
}
.btn-outline {
	color: var(--color-white);
	background: transparent;
	border: 2px solid var(--color-white);
}
.btn-outline:hover {
	background: var(--color-white);
	color: var(--color-body);
	transform: translateY(-1px);
}
.btn-outline-green {
	color: var(--color-primary);
	background: transparent;
	border: 2px solid var(--color-primary);
}
.btn-outline-green:hover {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-1px);
}
@media (max-width: 600px) {
	.btn,
	.btn-primary,
	.btn-outline,
	.btn-outline-green { padding: 14px 32px; font-size: 15px; }
}

/* --- Section Divider --- */
.section-divider {
	width: 60px;
	height: 3px;
	background: var(--color-primary);
	border: none;
	margin-bottom: 20px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* --- Section Header --- */
.section-header {
	text-align: center;
	margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 8px; }
.section-header p {
	font-size: 17px;
	color: var(--color-secondary);
	line-height: 1.7;
	max-width: 560px;
	margin: 16px auto 0;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow var(--transition);
}
.site-header.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	height: 80px;
}

/* Logo */
.site-logo a {
	display: inline-flex;
	align-items: center;
}
.site-logo img {
	display: block;
	height: 56px;
	width: auto;
	transition: transform var(--transition);
}
.site-logo a:hover img {
	transform: scale(1.04);
}

/* Main nav */
.header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-nav ul {
	display: flex;
	align-items: center;
	gap: 2px;
}
.header-nav li {
	position: relative;
}
.header-nav a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--color-body);
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	transition: color var(--transition), background var(--transition);
}
/* Dropdown indicator (caret) for items with children */
.header-nav .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	opacity: 0.55;
	transition: transform var(--transition);
}
.header-nav .menu-item-has-children:hover > a::after,
.header-nav .menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}
.header-nav a:hover,
.header-nav .current-menu-item > a,
.header-nav .current_page_item > a,
.header-nav .current-menu-parent > a {
	color: var(--color-primary);
	background: var(--color-mint-bg);
}

/* Desktop dropdown menus */
.header-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card-hover);
	padding: 8px 0;
	min-width: 240px;
	z-index: 100;
	animation: submenu-slide 0.18s ease;
}
@keyframes submenu-slide {
	from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
	to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Invisible bridge so pointer can travel into submenu without closing */
.header-nav .sub-menu::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;
	right: 0;
	height: 8px;
}
.header-nav li:hover > .sub-menu,
.header-nav li:focus-within > .sub-menu {
	display: block;
}
.header-nav .sub-menu li {
	width: 100%;
}
.header-nav .sub-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	border-radius: 0;
	white-space: nowrap;
}
.header-nav .sub-menu a:hover {
	background: var(--color-mint-bg);
	color: var(--color-primary);
}

/* --- Right column: phone + language switcher --- */
.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Phone button */
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
	background: var(--color-mint-bg);
	border-radius: 999px;
	transition: background var(--transition), color var(--transition), transform 0.15s ease;
	white-space: nowrap;
}
.header-phone:hover,
.header-phone:focus-visible {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-1px);
}
.header-phone-icon {
	flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 4px;
	background: var(--color-light-bg);
	border-radius: 999px;
}
.lang-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 999px;
	transition: background var(--transition), color var(--transition);
	color: var(--color-secondary);
}
.lang-item--current {
	background: var(--color-white);
	color: var(--color-dark);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.lang-item--other:hover,
.lang-item--other:focus-visible {
	color: var(--color-primary);
	background: var(--color-white);
}
.lang-flag {
	display: block;
	border-radius: 2px;
	flex-shrink: 0;
}
.lang-code {
	line-height: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	gap: 5px;
	cursor: pointer;
}
.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-body);
	transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1100px) {
	.header-inner { gap: 20px; }
	.header-nav a { padding: 10px 12px; font-size: 14px; }
	.header-phone-text { display: none; } /* icon only on tight desktop */
	.header-phone { padding: 10px 12px; }
}

@media (max-width: 900px) {
	.header-inner {
		grid-template-columns: auto 1fr auto;
		height: 72px;
		gap: 12px;
	}
	.site-logo img { height: 48px; }
	.menu-toggle { display: flex; }
	.header-nav {
		display: none;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color-white);
		flex-direction: column;
		padding: 24px;
		overflow-y: auto;
		justify-content: flex-start;
	}
	.header-nav.open { display: flex; }
	.header-nav ul {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}
	.header-nav a {
		display: block;
		padding: 14px 16px;
		font-size: 17px;
		border-radius: 0;
		border-bottom: 1px solid var(--color-light-gray);
	}
	.header-nav .menu-item-has-children > a::after {
		float: right;
		margin-top: 10px;
	}
	.header-nav .sub-menu {
		position: static;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		padding: 0;
		display: block;
		background: var(--color-light-bg);
		animation: none;
	}
	.header-nav .sub-menu::before { display: none; }
	.header-nav .sub-menu a {
		padding-left: 32px;
		font-size: 15px;
	}
	.header-actions {
		gap: 8px;
	}
}

@media (max-width: 600px) {
	.header-inner { gap: 8px; }
	.site-logo img { height: 40px; }
	.header-phone {
		padding: 8px 10px;
	}
	.lang-switcher {
		padding: 3px;
	}
	.lang-item {
		padding: 4px 6px;
		gap: 4px;
	}
	.lang-code {
		display: none; /* on smallest screens, flag only */
	}
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(29, 29, 29, 0.45);
	z-index: 1;
}
/* Background video — sits between the bg image and the dark overlay */
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}
/* Pause video for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hero-video { display: none; }
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 40px 24px;
}
.hero-label {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 16px;
}
.hero h1 {
	color: var(--color-white);
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero p {
	font-size: clamp(16px, 2vw, 18px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 32px;
}
.scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}
.scroll-indicator svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: rgba(255, 255, 255, 0.7);
	stroke-width: 2;
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-8px); }
	60% { transform: translateX(-50%) translateY(-4px); }
}
@media (max-width: 900px) {
	.hero { min-height: 70vh; }
}
@media (max-width: 600px) {
	.hero { min-height: 60vh; }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 360px;
	overflow: hidden;
	margin-bottom: 0;
	background: var(--color-dark);
}
.page-hero--compact { min-height: 260px; }
.page-hero--post    { min-height: 440px; align-items: center; }

.page-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.06);
	animation: page-hero-zoom 10s ease-out forwards;
	z-index: 0;
}
@keyframes page-hero-zoom {
	from { transform: scale(1.1); }
	to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.page-hero-bg { animation: none; transform: none; }
}

/* Overlay variants */
.page-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.page-hero--overlay-gradient .page-hero-overlay {
	background: linear-gradient(
		to bottom,
		rgba(29, 29, 29, 0.15) 0%,
		rgba(29, 29, 29, 0.25) 30%,
		rgba(29, 29, 29, 0.75) 100%
	);
}
.page-hero--overlay-dark .page-hero-overlay {
	background: rgba(29, 29, 29, 0.58);
}
.page-hero--overlay-light .page-hero-overlay {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.05) 0%,
		rgba(0, 0, 0, 0.35) 100%
	);
}

/* Low-res treatment: blur + darker overlay disguises pixelation.
   The photo becomes atmospheric wallpaper rather than a sharp billboard. */
.page-hero--lowres .page-hero-bg {
	filter: blur(4px) brightness(0.85) saturate(1.05);
	transform: scale(1.1); /* hide blur feathering at edges */
	animation: page-hero-zoom-lowres 12s ease-out forwards;
}
.page-hero--lowres .page-hero-overlay {
	background: linear-gradient(
		to bottom,
		rgba(29, 29, 29, 0.35) 0%,
		rgba(29, 29, 29, 0.55) 40%,
		rgba(29, 29, 29, 0.82) 100%
	);
}
@keyframes page-hero-zoom-lowres {
	from { transform: scale(1.18); }
	to   { transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
	.page-hero--lowres .page-hero-bg { animation: none; }
}

.page-hero .container {
	position: relative;
	z-index: 2;
	width: 100%;
}
.page-hero-content {
	padding: 48px 0 40px;
	color: var(--color-white);
	max-width: 820px;
}
.page-hero--post .page-hero-content {
	padding: 60px 0;
}

/* Breadcrumbs tuned for dark background */
.page-hero-breadcrumbs {
	margin-bottom: 16px;
}
.page-hero-breadcrumbs .breadcrumbs {
	padding: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
}
.page-hero-breadcrumbs .breadcrumbs a {
	color: rgba(255, 255, 255, 0.8);
	transition: color var(--transition);
}
.page-hero-breadcrumbs .breadcrumbs a:hover {
	color: var(--color-white);
}
.page-hero-breadcrumbs .breadcrumbs [aria-current="page"] {
	color: var(--color-white);
	font-weight: 500;
}
.page-hero-breadcrumbs .breadcrumb-sep {
	opacity: 0.5;
}

.page-hero-title {
	color: var(--color-white);
	font-size: clamp(28px, 4.5vw, 52px);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 12px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.page-hero-subtitle {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 20px;
	max-width: 640px;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Meta chips row */
.page-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
.page-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}
.page-hero-chip svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.85);
}
.page-hero-chip--accent {
	background: var(--color-primary);
	border-color: var(--color-primary);
	font-weight: 600;
}

/* Compact variant — centered, smaller, for 404 / search */
.page-hero--compact { text-align: center; }
.page-hero--compact .page-hero-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 40px 0;
}
.page-hero--compact .page-hero-subtitle {
	margin-left: auto;
	margin-right: auto;
}
.page-hero--compact .page-hero-meta {
	justify-content: center;
}
.page-hero--compact .page-hero-breadcrumbs .breadcrumbs ol {
	justify-content: center;
}

/* Mobile */
@media (max-width: 900px) {
	.page-hero                  { min-height: 280px; }
	.page-hero--compact         { min-height: 220px; }
	.page-hero--post            { min-height: 340px; }
	.page-hero-content          { padding: 36px 0 28px; }
	.page-hero-title            { margin-bottom: 8px; }
}
@media (max-width: 600px) {
	.page-hero                  { min-height: 240px; }
	.page-hero--compact         { min-height: 200px; }
	.page-hero--post            { min-height: 280px; }
	.page-hero-content          { padding: 28px 0 24px; }
	.page-hero-breadcrumbs      { margin-bottom: 10px; }
	.page-hero-chip             { font-size: 12px; padding: 5px 10px; }
}

/* ================================================================
   ABOUT + STATS
   ================================================================ */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}
.about-image img {
	border-radius: var(--radius);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}
.about-content h2 { margin-bottom: 8px; }
.about-content p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-secondary);
}
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}
.stat-item {
	padding: 20px 0 20px 16px;
	border-left: 3px solid var(--color-primary);
}
.stat-number {
	font-family: var(--font-heading);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.2;
}
.stat-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-body);
	margin-top: 2px;
}
@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-content { text-align: center; }
	.about-content .section-divider { margin-left: auto; margin-right: auto; }
	.stats { justify-items: center; }
	.stat-item { text-align: center; border-left: none; border-top: 3px solid var(--color-primary); padding: 16px 0 0; }
}
@media (max-width: 480px) {
	.stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ================================================================
   CARDS
   ================================================================ */

/* --- Hike Card --- */
.hike-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition), transform var(--transition);
}
.hike-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
.hike-card-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.hike-card-body {
	padding: 20px 24px 24px;
}
.hike-card-body h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
}
.hike-card-body p {
	font-size: 15px;
	color: var(--color-secondary);
	line-height: 1.6;
}

/* --- Post Card --- */
.post-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
.post-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.post-card-body {
	padding: 20px 24px 24px;
}
.post-card-meta {
	font-size: 13px;
	color: var(--color-secondary);
	margin-bottom: 8px;
}
.post-card-body h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}
.post-card-body p {
	font-size: 15px;
	color: var(--color-secondary);
	line-height: 1.6;
}
.post-card-link {
	display: block;
	color: inherit;
}
.post-card-date {
	display: block;
	font-size: 13px;
	color: var(--color-secondary);
	margin-bottom: 8px;
}
.read-more {
	display: inline-block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
}
.post-card:hover .read-more { color: var(--color-primary-hover); }

/* --- Rental Card --- */
.rental-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition), transform var(--transition);
}
.rental-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
.rental-card-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.rental-card-body {
	padding: 20px 24px 24px;
}
.rental-card-body h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}
.rental-card-price {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 8px;
}
.rental-card-body p {
	font-size: 15px;
	color: var(--color-secondary);
	line-height: 1.6;
}
.rental-card-price .price-label {
	font-size: 13px;
	color: var(--color-secondary);
	margin-right: 4px;
}
.rental-card-price .price-value {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-primary);
}
.btn-sm {
	display: inline-block;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 12px;
}

/* --- Grids --- */
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.hikes-row-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 24px;
}
.posts-grid,
.hikes-grid,
.rental-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.hikes-grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 24px;
}
@media (max-width: 900px) {
	.posts-grid,
	.hikes-grid,
	.rental-grid { grid-template-columns: repeat(2, 1fr); }
	.hikes-grid-2col { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.hikes-row-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.posts-grid,
	.hikes-grid,
	.rental-grid,
	.hikes-grid-2col,
	.grid-3,
	.hikes-row-2 { grid-template-columns: 1fr; }
}

/* ================================================================
   JOURNEY STRIP (how it works)
   ================================================================ */
.journey-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 32px;
}
.journey-card {
	position: relative;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 40px 28px 32px;
	text-align: center;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.journey-card:hover {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}
.journey-number {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 56px;
	background: var(--color-primary);
	color: var(--color-white);
	border: 4px solid var(--color-white);
	border-radius: 50%;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(87, 185, 87, 0.3);
}
.journey-icon {
	width: 72px;
	height: 72px;
	margin: 8px auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	background: var(--color-mint-bg);
	border-radius: 50%;
}
.journey-card h3 {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 600;
}
.journey-card p {
	color: var(--color-secondary);
	font-size: 15px;
	line-height: 1.7;
}
@media (max-width: 900px) {
	.journey-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   WHY HIKE WITH US
   ================================================================ */
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.why-card {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}
.why-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	background: var(--color-mint-bg);
	border-radius: 50%;
}
.why-card h3 {
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 600;
}
.why-card p {
	color: var(--color-secondary);
	font-size: 14px;
	line-height: 1.6;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ================================================================
   CUSTOMER REVIEWS GRID
   ================================================================ */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.review-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-card);
	transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card-hover);
}
.review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 16px;
	color: #E3E6EB;
}
.review-stars svg.is-filled { color: #FFB900; }
.review-text {
	flex: 1;
	margin: 0 0 20px;
	padding: 0;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.7;
	font-style: normal;
	color: var(--color-body);
}
.review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--color-light-gray);
}
.review-avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}
.review-avatar svg { display: block; width: 100%; height: 100%; }
.review-author-info { min-width: 0; }
.review-name {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.3;
}
.review-source {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
	font-size: 12px;
	color: var(--color-secondary);
	font-weight: 500;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ================================================================
   FEATURED RENTAL GEAR
   ================================================================ */
.gear-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.gear-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	color: inherit;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.gear-card:hover {
	transform: translateY(-4px);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-card-hover);
}
.gear-thumb {
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var(--color-light-bg);
	transition: transform var(--transition);
}
.gear-card:hover .gear-thumb { transform: scale(1.03); }
.gear-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 24px 24px;
}
.gear-body h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
}
.gear-price {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 4px 0 2px;
}
.gear-price-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--color-secondary);
}
.gear-price-value {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
}
.gear-cta {
	margin-top: auto;
	padding-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
	transition: color var(--transition);
}
.gear-card:hover .gear-cta { color: var(--color-primary-hover); }
.gear-footer {
	margin-top: 32px;
	text-align: center;
}
@media (max-width: 900px) { .gear-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gear-grid { grid-template-columns: 1fr; } }

/* ================================================================
   INSTAGRAM GRID
   ================================================================ */
.ig-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 6px;
	margin-top: 32px;
}
.ig-tile {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-color: var(--color-light-bg);
	overflow: hidden;
	transition: transform var(--transition);
}
.ig-tile:hover { transform: scale(1.02); }
.ig-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(29, 29, 29, 0);
	color: var(--color-white);
	transition: background var(--transition);
}
.ig-tile:hover .ig-overlay { background: rgba(29, 29, 29, 0.35); }
.ig-overlay svg { opacity: 0; transform: scale(0.8); transition: opacity var(--transition), transform var(--transition); }
.ig-tile:hover .ig-overlay svg { opacity: 1; transform: scale(1); }
.ig-footer {
	margin-top: 32px;
	text-align: center;
}
.ig-follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(45deg, #FEDA75, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	border-radius: 999px;
	transition: transform 0.15s ease, box-shadow var(--transition);
}
.ig-follow-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(214, 41, 118, 0.3);
	color: var(--color-white);
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter-inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}
.newsletter-title {
	font-size: clamp(22px, 2.8vw, 32px);
	margin-bottom: 12px;
}
.newsletter-subtitle {
	color: var(--color-secondary);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 28px;
}
.newsletter-form-wrap {
	max-width: 540px;
	margin: 0 auto;
}
.newsletter-form-wrap .wpcf7 .cf7-newsletter-row {
	display: flex;
	gap: 8px;
}
.newsletter-form-wrap .wpcf7 input.cf7-newsletter-input {
	flex: 1;
	width: 100%;
	padding: 14px 20px;
	border-radius: var(--radius-sm) !important; /* #112: not round, matches site buttons */
	border: 1px solid var(--color-border);
	background: var(--color-white);
	font-size: 15px;
}
.newsletter-form-wrap .wpcf7 input.cf7-newsletter-input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(87, 185, 87, 0.15);
}
.newsletter-form-wrap .wpcf7 input.cf7-newsletter-submit {
	padding: 14px 28px !important;
	border-radius: var(--radius-sm) !important; /* #112: not round */
	background: var(--color-primary) !important;
	color: var(--color-white) !important;
	border: 2px solid var(--color-primary) !important;
	font-weight: 600 !important;
	white-space: nowrap;
	cursor: pointer;
}
.newsletter-form-wrap .wpcf7 input.cf7-newsletter-submit:hover {
	background: var(--color-primary-hover) !important;
	border-color: var(--color-primary-hover) !important;
}
/* Hide CF7's default paragraph wrappers inside the newsletter so layout stays flat */
.newsletter-form-wrap .wpcf7 p { margin: 0; }
.newsletter-form-wrap .wpcf7 .wpcf7-response-output {
	margin-top: 16px;
	font-size: 14px;
}
.newsletter-privacy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 12px;
	color: var(--color-secondary);
}
.newsletter-privacy svg { color: var(--color-primary); flex-shrink: 0; }
@media (max-width: 600px) {
	.newsletter-form-wrap .wpcf7 .cf7-newsletter-row { flex-direction: column; }
	.newsletter-form-wrap .wpcf7 input.cf7-newsletter-submit { width: 100%; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
	max-width: 720px;
	margin: 0 auto;
	background: var(--color-mint-bg);
	border-radius: var(--radius);
	padding: 48px;
	text-align: center;
}
.testimonial-card .quote-icon {
	display: inline-block;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	color: var(--color-primary);
}
.testimonial-card blockquote {
	font-family: var(--font-body);
	font-size: clamp(17px, 2vw, 20px);
	font-style: italic;
	line-height: 1.7;
	color: var(--color-body);
}
@media (max-width: 600px) {
	.testimonial-card { padding: 32px 24px; }
}

/* ================================================================
   CTA
   ================================================================ */
.cta {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(29, 29, 29, 0.5);
	z-index: 1;
}
.cta-content {
	position: relative;
	z-index: 2;
	padding: 60px 24px;
	max-width: 600px;
}
.cta h2 {
	color: var(--color-white);
	margin-bottom: 12px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cta p {
	font-size: clamp(16px, 2vw, 18px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 28px;
}
.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
@media (max-width: 600px) {
	.cta { min-height: 300px; }
	.cta-content { padding: 48px 24px; }
}

/* ================================================================
   SOCIAL SIDEBAR
   ================================================================ */
.social-sidebar {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.social-sidebar a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--color-primary);
	border-radius: var(--radius-sm);
	transition: background var(--transition), transform 0.2s ease;
}
.social-sidebar a:hover {
	background: var(--color-body);
	transform: scale(1.1);
}
.social-sidebar svg { width: 20px; height: 20px; fill: var(--color-white); }
@media (max-width: 900px) {
	.social-sidebar { display: none; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.7);
}
.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 60px 0;
}
.footer-col h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 20px;
}
.footer-col p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 12px;
}
.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
	font-size: 15px;
	display: inline-block;
	padding: 2px 0;
}
.footer-social {
	display: flex;
	gap: 12px;
}
.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social svg { width: 18px; height: 18px; fill: var(--color-white); }
.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 15px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--color-primary); flex-shrink: 0; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
}
@media (max-width: 900px) {
	.footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
}

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.breadcrumbs {
	padding: 16px 0;
	font-size: 14px;
	color: var(--color-secondary);
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.breadcrumbs a { color: var(--color-secondary); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumb-sep { margin: 0 4px; }

/* ================================================================
   TOUR PAGE — individual hike detail (split hero: content + photo)
   ================================================================ */
.tour-page { padding-bottom: 0; }

.tour-hero {
	background: var(--color-mint-bg);
	padding: 56px 0 64px;
	overflow: hidden;
}
.tour-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: center;
}
.tour-hero-content {
	min-width: 0;
}
.tour-hero-title {
	color: var(--color-dark);
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	margin: 0 0 16px;
}
.tour-hero-lede {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.55;
	color: var(--color-secondary);
	margin: 0 0 24px;
}
.tour-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}
.tour-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
}
.tour-hero-chip svg { color: var(--color-primary); flex-shrink: 0; }
.tour-hero-chip--accent {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 3px 10px rgba(87, 185, 87, 0.32);
}
.tour-hero-chip--accent svg { color: var(--color-white); }

.tour-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	padding: 14px 26px;
}

/* Photo frame */
.tour-hero-figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(29, 29, 29, 0.18);
	background: var(--color-light-bg);
	aspect-ratio: 4 / 3;
}
.tour-hero-figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Breadcrumbs now live in .tour-body, not in the hero */
.tour-body .breadcrumbs {
	margin-bottom: 20px;
	padding: 0;
}

@media (max-width: 900px) {
	.tour-hero { padding: 36px 0 40px; }
	.tour-hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	/* Photo first on mobile (visual hook), content below */
	.tour-hero-figure { order: -1; aspect-ratio: 16 / 10; }
	.tour-hero-title { margin-top: 4px; }
}
@media (max-width: 600px) {
	.tour-hero { padding: 24px 0 32px; }
	.tour-hero-figure { aspect-ratio: 16 / 11; border-radius: var(--radius); }
	.tour-hero-lede { font-size: 15px; }
	.tour-hero-cta { width: 100%; justify-content: center; }
}

/* Body + sidebar */
.tour-body {
	padding: 88px 0 72px; /* #139: more top padding */
	background: var(--color-white);
}
.tour-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 48px;
	align-items: start;
}
.tour-description {
	font-size: 17px;
	line-height: 1.8;
}
.tour-description p { margin-bottom: 16px; }
.tour-description h2,
.tour-description h3,
.tour-description h4 { margin: 32px 0 16px; }
.tour-description img { border-radius: 8px; margin: 24px 0; }

/* Includes / Bring cards */
.tour-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 48px 0;
}
.tour-info-card {
	background: var(--color-light-bg);
	border-radius: var(--radius);
	padding: 28px;
	position: relative;
}
.tour-info-card--includes { background: var(--color-mint-bg); }
.tour-info-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	color: var(--color-primary);
	border-radius: 50%;
	margin-bottom: 16px;
}
.tour-info-card h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
}
.tour-info-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tour-info-card li {
	position: relative;
	padding: 6px 0 6px 26px;
	font-size: 15px;
	line-height: 1.5;
}
.tour-info-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 16px;
	height: 16px;
	background: var(--color-primary);
	border-radius: 50%;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 14px;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 14px;
}
.tour-info-card--bring li::before {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='4' fill='white'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='4' fill='white'/></svg>");
}

/* Route highlights */
.tour-route {
	margin: 48px 0;
	padding: 28px;
	background: var(--color-light-bg);
	border-radius: var(--radius);
}
.tour-route h3 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 600;
}
.tour-route-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tour-route-list li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-body);
}
.tour-route-list svg { color: var(--color-primary); }

/* #161: photo gallery on tour pages */
.tour-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.tour-gallery-item {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-sm, 8px);
	aspect-ratio: 4 / 3;
	background: var(--color-border, #eee);
}
.tour-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.tour-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
	.tour-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.tour-gallery-item, .tour-hero-figure a { cursor: zoom-in; }

/* #172: lightbox overlay */
body.he-lb-lock { overflow: hidden; }
.he-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(10, 14, 18, 0.92);
	padding: 4vh 2vw;
}
.he-lightbox.is-open { display: flex; }
.he-lb-stage { margin: 0; max-width: 92vw; max-height: 90vh; display: flex; }
.he-lb-stage img {
	max-width: 92vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-sm, 8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.he-lb-btn {
	position: absolute;
	background: rgba(255,255,255,0.12);
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
	line-height: 1;
}
.he-lb-btn:hover { background: rgba(255,255,255,0.28); }
.he-lb-close { top: 18px; right: 22px; width: 46px; height: 46px; font-size: 30px; }
.he-lb-prev, .he-lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 40px; }
.he-lb-prev { left: 2vw; }
.he-lb-next { right: 2vw; }
.he-lb-count { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 14px; letter-spacing: .04em; }
@media (max-width: 600px) {
	.he-lb-prev, .he-lb-next { width: 44px; height: 44px; font-size: 30px; }
	.he-lb-close { width: 40px; height: 40px; font-size: 26px; top: 10px; right: 12px; }
}

/* Gallery */
.tour-gallery { margin: 48px 0 0; }
.tour-gallery h3 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 600;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.gallery-item {
	display: block;
	border-radius: 8px;
	overflow: hidden;
}
.gallery-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform var(--transition), opacity var(--transition);
}
.gallery-item:hover img { opacity: 0.92; transform: scale(1.04); }

/* Sidebar */
.tour-sidebar { position: sticky; top: 96px; }
.tour-booking-card {
	padding: 28px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}
.tour-sidebar-header {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-border);
}
.tour-sidebar-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}
.tour-sidebar-price-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--color-secondary);
}
.tour-sidebar-price-value {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1;
}
.tour-sidebar-price-unit {
	font-size: 13px;
	color: var(--color-secondary);
}
.tour-sidebar-schedule {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--color-body);
	font-weight: 500;
}
.tour-sidebar-schedule svg { color: var(--color-primary); }
.tour-booking-title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 600;
}
.tour-trust-badges {
	margin: 20px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--color-border);
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tour-trust-badges li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--color-secondary);
}
.tour-trust-badges svg { color: var(--color-primary); flex-shrink: 0; }

/* Related hikes */
.tour-related { margin-top: 48px; }

/* --- Book & Pay form (sidebar) --- */
.hike-buy-form {
	margin: 8px 0 0;
	padding: 0 0 20px;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 20px;
}
.hike-qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.hike-qty-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-body);
}
.hike-qty-controls {
	display: inline-flex;
	align-items: center;
	background: var(--color-light-bg);
	border-radius: 999px;
	padding: 2px;
}
.hike-qty-btn {
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	color: var(--color-body);
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 50%;
	transition: background var(--transition), color var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hike-qty-btn:hover:not(:disabled) {
	background: var(--color-primary);
	color: var(--color-white);
}
.hike-qty-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.hike-qty-input {
	width: 44px;
	height: 32px;
	border: none;
	background: transparent;
	text-align: center;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-dark);
	-moz-appearance: textfield;
}
.hike-qty-input::-webkit-outer-spin-button,
.hike-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.hike-qty-input:focus { outline: none; }

.hike-total-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 12px 0;
	margin-bottom: 12px;
	border-top: 1px solid var(--color-light-gray);
}
.hike-total-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.hike-total-value {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--color-primary);
}

.hike-buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	font-size: 15px;
	padding: 14px 20px;
}

.hike-or-divider {
	margin: 16px 0 12px;
	font-size: 12px;
	color: var(--color-secondary);
	text-align: center;
	letter-spacing: 0.3px;
}

/* ================================================================
   WOOCOMMERCE — theme overrides for cart/checkout/account
   ================================================================ */
body.woocommerce-cart .container,
body.woocommerce-checkout .container,
body.woocommerce-account .container {
	max-width: var(--container);
	padding: 0 40px;
}
.woocommerce {
	font-family: var(--font-body);
}
/* Buttons */
.woocommerce a.button,
.woocommerce-page a.button,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce input.button,
.woocommerce-page input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #place_order {
	background: var(--color-primary) !important;
	color: var(--color-white) !important;
	border-radius: var(--radius-sm) !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	padding: 12px 24px !important;
	border: none !important;
	transition: background var(--transition) !important;
	text-shadow: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce #place_order:hover {
	background: var(--color-primary-hover) !important;
}

/* Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius-sm) !important;
	padding: 12px 16px !important;
	font-family: var(--font-body) !important;
	font-size: 15px !important;
	transition: border-color var(--transition);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 3px rgba(87, 185, 87, 0.15);
	outline: none;
}

/* Tables (cart / order summary) */
.woocommerce-cart-form table.shop_table,
.woocommerce table.shop_table {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius);
	border-collapse: separate !important;
	border-spacing: 0;
	overflow: hidden;
}
.woocommerce table.shop_table th {
	background: var(--color-light-bg);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--color-secondary);
	padding: 14px 16px;
}
.woocommerce table.shop_table td {
	padding: 16px;
}
.woocommerce table.shop_table .product-thumbnail img {
	max-width: 64px;
	border-radius: 8px;
}

/* Cart totals box */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-cart .cart-collaterals .cart_totals {
	background: var(--color-light-bg);
	padding: 24px;
	border-radius: var(--radius);
}

/* Checkout layout */
.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	width: 100% !important;
	float: none !important;
}
#order_review {
	background: var(--color-light-bg);
	padding: 24px;
	border-radius: var(--radius);
	margin-top: 16px;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: var(--radius-sm) !important;
	padding: 14px 20px 14px 50px !important;
	border-top: none !important;
}
.woocommerce-message {
	background: var(--color-mint-bg) !important;
	color: var(--color-primary) !important;
}
.woocommerce-message::before {
	color: var(--color-primary) !important;
}

@media (max-width: 600px) {
	body.woocommerce-cart .container,
	body.woocommerce-checkout .container,
	body.woocommerce-account .container { padding: 0 20px; }
}

@media (max-width: 900px) {
	.tour-grid { grid-template-columns: 1fr; gap: 32px; }
	.tour-sidebar { position: static; }
	.tour-info-grid { grid-template-columns: 1fr; }
	.tour-body { padding: 48px 0 56px; }
}
@media (max-width: 600px) {
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-item img { height: 140px; }
	.tour-route-list { gap: 6px; }
	.tour-route-list li { padding: 6px 10px; font-size: 13px; }
}

/* ================================================================
   HIKES INDEX — the parent "Matkad / Hikes" page
   ================================================================ */
.hikes-index {
	padding: 56px 0 72px;
}

/* Filter chips */
.hikes-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 48px;
	padding: 6px;
	background: var(--color-light-bg);
	border-radius: 999px;
	justify-content: center;
}
.hikes-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-body);
	background: transparent;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}
.hikes-filter-chip:hover {
	color: var(--color-primary);
}
.hikes-filter-chip.is-active {
	background: var(--color-white);
	color: var(--color-dark);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.hikes-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--color-mint-bg);
	color: var(--color-primary);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}
.hikes-filter-chip.is-active .hikes-filter-count {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Section grouping */
.hikes-section {
	margin-bottom: 56px;
	transition: opacity 0.25s ease;
}
.hikes-section.is-hidden {
	display: none;
}
.hikes-section-title {
	margin: 0 0 24px;
	font-size: 22px;
	font-weight: 600;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-mint-bg);
	position: relative;
}
.hikes-section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--color-primary);
}
.hikes-section-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Rich hike card — used on the index */
.hike-card--rich {
	display: flex;
	flex-direction: column;
}
.hike-card--rich .hike-card-img {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: var(--color-light-bg);
	transition: transform var(--transition);
}
.hike-card--rich:hover .hike-card-img { transform: scale(1.04); }
.hike-card--rich .hike-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.hike-card--rich h3 { font-size: 18px; }
.hike-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
}
.hike-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 999px;
}
.hike-badge--duration {
	background: var(--color-light-bg);
	color: var(--color-body);
}
.hike-badge--difficulty {
	background: var(--color-mint-bg);
	color: var(--color-primary);
}
.hike-badge--difficulty.hike-badge--easy    { background: #E8F5E9; color: #2E7D32; }
.hike-badge--difficulty.hike-badge--medium  { background: #FFF3E0; color: #E65100; }
.hike-badge--difficulty.hike-badge--hard    { background: #FFEBEE; color: #C62828; }

.hikes-index-content {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

@media (max-width: 900px) {
	.hikes-section-grid { grid-template-columns: repeat(2, 1fr); }
	.hikes-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
	.hikes-filter-chip { white-space: nowrap; flex-shrink: 0; }
}
@media (max-width: 600px) {
	.hikes-section-grid { grid-template-columns: 1fr; }
	.hikes-section-title { font-size: 18px; }
}

/* CTA solid variant (no bg image) for hikes-index */
.cta.cta--solid {
	min-height: auto;
	background: var(--color-mint-bg);
	padding: 64px 0;
}
.cta.cta--solid::before { display: none; }
.cta.cta--solid h2 { color: var(--color-dark); text-shadow: none; }
.cta.cta--solid p { color: var(--color-secondary); }

/* ================================================================
   MEGA-MENU (main nav submenu with 3 columns)
   ================================================================ */
.header-nav .sub-menu.mega-menu {
	display: none;
	position: absolute;
	top: 100%; /* touch header bottom so the hover path to the mega isn't broken */
	left: 50%;
	transform: translateX(-50%);
	width: min(900px, 92vw);
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card-hover);
	padding: 24px;
	z-index: 100;
}
/* transparent bridge so moving from the item into the mega keeps it open */
.header-nav .sub-menu.mega-menu::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: -26px; height: 26px;
}
/* anchor the wide mega-menu to the full-width header, not the left-positioned item */
.header-nav li.mega-parent { position: static; }
.header-nav li:hover > .sub-menu.mega-menu,
.header-nav li:focus-within > .sub-menu.mega-menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 28px;
	align-items: start;
}
.header-nav .mega-list a { white-space: normal; line-height: 1.35; }
.header-nav .mega-column { display: block; }
.header-nav .mega-title {
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-mint-bg);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--color-primary);
}
.header-nav .mega-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-nav .mega-list a {
	display: block;
	padding: 8px 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-body);
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition);
}
.header-nav .mega-list a:hover {
	background: var(--color-mint-bg);
	color: var(--color-primary);
}
.header-nav .mega-footer {
	grid-column: 1 / -1;
	padding-top: 16px;
	margin-top: 4px;
	border-top: 1px solid var(--color-border);
	text-align: right;
}
.header-nav .mega-footer a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-primary);
	border-radius: 999px;
}
.header-nav .mega-footer a:hover {
	background: var(--color-mint-bg);
}
@media (max-width: 900px) {
	.header-nav .sub-menu.mega-menu {
		position: static;
		transform: none;
		width: 100%;
		box-shadow: none;
		background: var(--color-light-bg);
		padding: 0;
		grid-template-columns: 1fr !important;
		gap: 0;
		display: block;
	}
	.header-nav .mega-column { padding: 8px 16px; }
	.header-nav .mega-title { border-bottom: none; padding: 0; }
	.header-nav .mega-footer { display: none; }
}

/* ================================================================
   SINGLE POST
   ================================================================ */
.single-post-page { padding-bottom: 60px; }
.single-post-hero {
	margin-bottom: 32px;
}
.single-post-hero img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: var(--radius);
}
.single-post-header {
	text-align: center;
	margin-bottom: 32px;
}
.single-post-header h1 { margin-bottom: 12px; }
.post-meta {
	font-size: 14px;
	color: var(--color-secondary);
}
.entry-content {
	/* full header width (#124) — no readability cap */
	font-size: 17px;
	line-height: 1.8;
}
.entry-content p { margin-bottom: 16px; }
.entry-content img {
	border-radius: 8px;
	margin: 24px 0;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
	margin: 32px 0 16px;
}
.entry-content ul, .entry-content ol {
	margin: 16px 0;
	padding-left: 24px;
	list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
	border-left: 4px solid var(--color-primary);
	padding: 16px 24px;
	margin: 24px 0;
	background: var(--color-light-bg);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}
.related-posts {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--color-border);
}
.related-posts h2 { margin-bottom: 8px; }

/* --- Decorative "visual breath" image for text-only posts --- */
.post-interlude {
	margin: 48px -60px; /* bleed slightly past the text column */
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.post-interlude img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	display: block;
}
@media (max-width: 900px) {
	.post-interlude { margin: 40px 0; }
}

/* --- Text-post editorial typography --- */
body.is-text-post .entry-content {
	font-size: 18px;
	line-height: 1.85;
	font-family: var(--font-body);
}
body.is-text-post .entry-content p {
	margin-bottom: 24px;
}
body.is-text-post .entry-content p:first-of-type::first-letter {
	float: left;
	font-family: var(--font-heading);
	font-size: 72px;
	line-height: 0.9;
	font-weight: 600;
	color: var(--color-primary);
	margin: 6px 12px 0 0;
	padding-top: 4px;
}
body.is-text-post .entry-content blockquote {
	border-left: none;
	background: transparent;
	padding: 16px 0;
	margin: 40px auto;
	max-width: 100%;
	font-family: var(--font-heading);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 500;
	line-height: 1.5;
	font-style: normal;
	color: var(--color-dark);
	text-align: center;
	position: relative;
}
body.is-text-post .entry-content blockquote::before,
body.is-text-post .entry-content blockquote::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	margin: 0 auto 20px;
	background: var(--color-primary);
	border-radius: 2px;
}
body.is-text-post .entry-content blockquote::after {
	margin: 20px auto 0;
}

/* ================================================================
   RENTAL SINGLE
   ================================================================ */
.rental-single-page { padding-bottom: 60px; }
.rental-single-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-top: 24px;
}
.rental-single-image img {
	width: 100%;
	border-radius: var(--radius);
}
.rental-single-details h1 { margin-bottom: 8px; }
.rental-price-tag {
	margin: 16px 0 24px;
}
.rental-price-tag .price-label {
	font-size: 14px;
	color: var(--color-secondary);
}
.rental-price-tag .price-value {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--color-primary);
}
.rental-specs {
	margin: 24px 0;
	padding: 20px;
	background: var(--color-light-bg);
	border-radius: var(--radius);
	font-size: 15px;
}
.rental-inquiry-form {
	margin-top: 32px;
	padding: 32px;
	background: var(--color-light-bg);
	border-radius: var(--radius);
}
.rental-inquiry-form h3 { margin-bottom: 16px; }
@media (max-width: 900px) {
	.rental-single-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================================
   PAGINATION
   ================================================================ */
.hiking-pagination {
	margin: 64px 0 0;
	text-align: center;
}
.hp-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hp-list li {
	display: flex;
}

/* Number pills */
.hp-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-body);
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}
.hp-num:hover,
.hp-num:focus-visible {
	color: var(--color-primary);
	background: var(--color-mint-bg);
	border-color: var(--color-mint-bg);
	transform: translateY(-1px);
	outline: none;
}
.hp-num.is-current {
	color: var(--color-white);
	background: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: 0 3px 10px rgba(87, 185, 87, 0.35);
	cursor: default;
}

/* Prev / Next buttons */
.hp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 42px;
	padding: 0 16px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-body);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}
.hp-btn:hover,
.hp-btn:focus-visible {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: var(--color-white);
	transform: translateY(-1px);
	outline: none;
}
.hp-btn.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}
.hp-btn svg {
	display: block;
	flex-shrink: 0;
}
.hp-btn--prev { margin-right: 4px; }
.hp-btn--next { margin-left: 4px; }

/* Gap (…) */
.hp-gap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 42px;
	color: var(--color-secondary);
	font-weight: 500;
	user-select: none;
}

/* Info line */
.hp-info {
	margin: 14px 0 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-secondary);
	letter-spacing: 0.2px;
}
.hp-dot {
	margin: 0 6px;
	opacity: 0.5;
}

@media (max-width: 600px) {
	.hp-btn-label { display: none; }
	.hp-btn {
		width: 42px;
		padding: 0;
	}
	/* Hide intermediate numbers on mobile, keep only current + edges */
	.hp-num:not(.is-current) {
		display: none;
	}
	.hp-gap { display: none; }
	.hp-list { gap: 8px; }
	.hp-btn--prev { margin-right: 0; }
	.hp-btn--next { margin-left: 0; }
}

/* Backward-compat: WP's default pagination markup styling (fallback) */
.nav-links {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 48px;
}
.nav-links a, .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	transition: all var(--transition);
}
.nav-links a { color: var(--color-body); }
.nav-links a:hover { color: var(--color-primary); background: var(--color-mint-bg); border-color: var(--color-mint-bg); }
.nav-links .current { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ================================================================
   PAGE CONTENT
   ================================================================ */
/* Standard content wrappers that follow a page-hero.
   Each gets its own generous top padding so the rhythm doesn't depend on
   which sibling (e.g. .reading-progress) sits between hero and body. */
.page-content,
.archive-page,
.contact-page,
.single-post-page,
.rental-single-page,
.page-404 {
	padding: 72px 0 80px;
}
.page-content .entry-title { margin-bottom: 8px; }

@media (max-width: 900px) {
	.page-content,
	.archive-page,
	.contact-page,
	.single-post-page,
	.rental-single-page,
	.page-404 {
		padding: 56px 0 64px;
	}
}
@media (max-width: 600px) {
	.page-content,
	.archive-page,
	.contact-page,
	.single-post-page,
	.rental-single-page,
	.page-404 {
		padding: 40px 0 56px;
	}
}

/* 404 layout: the hero carries the big 404 — body just has CTA */
.page-404 .error-404-content {
	padding: 0 24px;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}
.page-404 .error-404-content p {
	font-size: 17px;
	color: var(--color-secondary);
	margin-bottom: 28px;
}
.no-results {
	text-align: center;
	padding: 60px 0;
	color: var(--color-secondary);
}

/* ================================================================
   LATEST POSTS SECTION (front page)
   ================================================================ */
.latest-posts {
	padding: 80px 0;
	background: var(--color-light-bg);
}

/* ================================================================
   ABOUT SECTION (front page)
   ================================================================ */
.about {
	padding: 80px 0;
}
.hikes {
	padding: 80px 0;
	background: var(--color-light-bg);
}
.testimonial {
	padding: 80px 0;
}

/* ================================================================
   404
   ================================================================ */
.page-404 { padding: 32px 0; }
.error-404-content {
	text-align: center;
	padding: 80px 24px;
}
.error-404-content h1 {
	margin-bottom: 16px;
}
.error-404-content p {
	font-size: 18px;
	color: var(--color-secondary);
	margin-bottom: 32px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page { padding: 32px 0 60px; }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 48px;
	margin-top: 32px;
	align-items: start;
}
.contact-info-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	font-size: 16px;
}
.contact-info-item svg { flex-shrink: 0; }
.contact-info-item strong {
	display: block;
	font-weight: 600;
	margin-bottom: 2px;
}
.contact-info-item a { color: var(--color-primary); }
.contact-info-item a:hover { color: var(--color-primary-hover); }
@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================================
   SEARCH FORM
   ================================================================ */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 480px;
	margin: 0 auto;
}
.search-field {
	flex: 1;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 16px;
	transition: border-color var(--transition);
}
.search-field:focus {
	border-color: var(--color-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(87, 185, 87, 0.15);
}
.search-submit {
	white-space: nowrap;
	color: var(--color-white);
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
	padding: 12px 24px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
}
.search-submit:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
}

/* ================================================================
   FORMS (Contact Form 7 overrides)
   ================================================================ */
.wpcf7 form {
	margin: 0;
}
.wpcf7 .cf7-field {
	margin: 0 0 16px;
}
.wpcf7 .cf7-field label {
	display: block;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--color-body);
	width: 100%;
}
.wpcf7 .cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
	display: block;
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 16px;
	background: var(--color-white);
	color: var(--color-body);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: var(--color-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(87, 185, 87, 0.15);
}
.wpcf7 textarea {
	min-height: 140px;
	resize: vertical;
}
.wpcf7 .cf7-submit {
	margin-top: 8px;
	margin-bottom: 0;
}
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-white);
	border: 2px solid var(--color-primary);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	padding: 14px 32px;
	line-height: 1;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), transform 0.2s ease;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	transform: translateY(-1px);
}
.wpcf7 input[type="submit"]:disabled,
.wpcf7 button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
/* CF7 validation and response messages */
.wpcf7 .wpcf7-not-valid-tip {
	color: #d93025;
	font-size: 13px;
	margin-top: 6px;
	display: block;
}
.wpcf7 .wpcf7-not-valid {
	border-color: #d93025 !important;
}
.wpcf7 .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px 18px;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 15px;
	line-height: 1.5;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #d93025;
	background: #fdecea;
	color: #8b1a13;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--color-primary);
	background: var(--color-mint-bg);
	color: var(--color-primary-hover);
}
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #b58100;
	background: #fff8e1;
	color: #8a6100;
}
.wpcf7 .wpcf7-spinner {
	background-color: var(--color-primary);
}
@media (max-width: 600px) {
	.wpcf7 .cf7-row { grid-template-columns: 1fr; }
}

/* ================================================================
   UTILITY
   ================================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-light { background: var(--color-light-bg); }
.bg-mint { background: var(--color-mint-bg); }
.bg-white { background: var(--color-white); }
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* WordPress core alignment */
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--color-secondary); margin-top: 8px; }

/* --- Fade-in Animation --- */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================================================================
   SINGLE-POST FOOTER: tags · share · prev/next
   ================================================================ */
.single-post-footer {
	max-width: 760px;
	margin: 56px auto 0;
	padding: 0;
}

/* --- Zone 1: Tags --- */
.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}
.post-tags-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--color-secondary);
	flex-shrink: 0;
}
.post-tags-label svg { color: var(--color-primary); }
.post-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.post-tag {
	display: inline-block;
	padding: 6px 14px;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-body);
	background: var(--color-light-bg);
	border: 1px solid transparent;
	border-radius: 999px;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.post-tag:hover,
.post-tag:focus-visible {
	color: var(--color-primary);
	background: var(--color-mint-bg);
	border-color: var(--color-primary);
	outline: none;
}

/* --- Zone 2: Share dock --- */
.post-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 0;
	border-bottom: 1px solid var(--color-border);
}
.post-share-label {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark);
}
.post-share-buttons {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}
.post-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--color-body);
	background: var(--color-light-bg);
	border: 1px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}
.post-share-btn:hover,
.post-share-btn:focus-visible {
	background: var(--brand-color, var(--color-primary));
	color: var(--color-white);
	border-color: var(--brand-color, var(--color-primary));
	transform: translateY(-2px);
	outline: none;
}
.post-share-btn svg { display: block; }

/* Native-share button: pill-shaped, green, only visible on mobile via JS */
.post-share-btn--native {
	width: auto;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
}
.post-share-btn--native:hover,
.post-share-btn--native:focus-visible {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: var(--color-white);
}

/* Copy-link button: shows check icon + "Copied!" label when activated */
.post-share-btn--copy {
	position: relative;
}
.post-share-btn--copy .icon-check { display: none; }
.post-share-btn--copy.is-copied {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	width: auto;
	padding: 0 16px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
}
.post-share-btn--copy.is-copied .icon-copy { display: none; }
.post-share-btn--copy.is-copied .icon-check { display: block; }
.post-share-btn--copy.is-copied::after {
	content: attr(data-copied-text);
}

/* --- Zone 3: Prev / Next post cards --- */
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
}
.post-nav-card {
	display: flex;
	align-items: stretch;
	gap: 16px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
	color: inherit;
}
.post-nav-card:hover,
.post-nav-card:focus-visible {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-3px);
	outline: none;
}
.post-nav-thumb {
	flex-shrink: 0;
	width: 120px;
	background-size: cover;
	background-position: center;
	background-color: var(--color-light-bg);
}
.post-nav-body {
	flex: 1;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}
.post-nav-card--next { text-align: right; }
.post-nav-card--next .post-nav-body { align-items: flex-end; }
.post-nav-label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--color-primary);
}
.post-nav-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-dark);
	/* Clamp to 2 lines */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-nav-card:hover .post-nav-title {
	color: var(--color-primary);
}
.post-nav-date {
	font-size: 12px;
	color: var(--color-secondary);
}
.post-nav-spacer {
	/* empty slot when there's no prev or no next post */
	visibility: hidden;
}

@media (max-width: 900px) {
	.post-nav {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.post-nav-spacer { display: none; }
}
@media (max-width: 600px) {
	.post-nav-thumb { width: 96px; }
	.post-nav-body  { padding: 14px 16px; }
	.post-nav-title { font-size: 15px; }

	.post-share {
		flex-direction: column;
		align-items: flex-start;
	}
	.post-tags { padding: 20px 0; }
}

/* ================================================================
   READING PROGRESS BAR
   ================================================================ */
.reading-progress {
	position: fixed;
	top: 80px; /* below sticky header */
	left: 0;
	right: 0;
	height: 3px;
	z-index: 999;
	background: transparent;
	pointer-events: none;
}
.reading-progress-bar {
	height: 100%;
	width: 0%;
	background: var(--color-primary);
	transition: width 0.08s linear;
	box-shadow: 0 1px 4px rgba(87, 185, 87, 0.4);
}
@media (max-width: 900px) {
	.reading-progress { top: 72px; }
}
@media (prefers-reduced-motion: reduce) {
	.reading-progress-bar { transition: none; }
}

/* ================================================================
   BACK-TO-TOP BUTTON
   ================================================================ */
.back-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 998;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(87, 185, 87, 0.08);
	cursor: pointer;
	opacity: 0;
	transform: translateY(12px) scale(0.9);
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease, background var(--transition), box-shadow var(--transition);
}
.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.back-to-top:hover,
.back-to-top:focus-visible {
	background: var(--color-primary-hover);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(87, 185, 87, 0.12);
	outline: none;
}
@media (max-width: 600px) {
	.back-to-top {
		bottom: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
	}
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
/* Images in post content become clickable targets */
.entry-content img.lb-trigger,
.tour-gallery img.lb-trigger {
	cursor: zoom-in;
	transition: opacity var(--transition), transform var(--transition);
}
.entry-content img.lb-trigger:hover,
.tour-gallery img.lb-trigger:hover {
	opacity: 0.92;
}

.hiking-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.94);
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.22s ease;
}
.hiking-lightbox.open {
	display: flex;
	opacity: 1;
	animation: lb-fade-in 0.22s ease;
}
@keyframes lb-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.lb-stage {
	position: relative;
	max-width: 95vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lb-image {
	max-width: 95vw;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.lb-image.loaded {
	opacity: 1;
}

.lb-spinner {
	position: absolute;
	width: 48px;
	height: 48px;
	border: 3px solid rgba(255, 255, 255, 0.15);
	border-top-color: var(--color-primary);
	border-radius: 50%;
	animation: lb-spin 0.8s linear infinite;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.lb-stage.loading .lb-spinner {
	opacity: 1;
}
@keyframes lb-spin {
	to { transform: rotate(360deg); }
}

.lb-close,
.lb-prev,
.lb-next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border: none;
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	padding: 0;
	transition: background var(--transition), transform 0.15s ease;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover,
.lb-close:focus-visible,
.lb-prev:focus-visible,
.lb-next:focus-visible {
	background: rgba(87, 185, 87, 0.85);
	outline: none;
	transform: scale(1.08);
}
.lb-close {
	top: 20px;
	right: 20px;
}
.lb-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-prev:hover,
.lb-prev:focus-visible {
	transform: translateY(-50%) scale(1.08);
}
.lb-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.lb-next:hover,
.lb-next:focus-visible {
	transform: translateY(-50%) scale(1.08);
}

.lb-caption {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	max-width: min(600px, 85vw);
	text-align: center;
	padding: 0 16px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	pointer-events: none;
}
.lb-counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	pointer-events: none;
}

@media (max-width: 600px) {
	.lb-close,
	.lb-prev,
	.lb-next {
		width: 40px;
		height: 40px;
	}
	.lb-close { top: 12px; right: 12px; }
	.lb-prev  { left: 8px; }
	.lb-next  { right: 8px; }
	.lb-image {
		max-width: 96vw;
		max-height: 78vh;
	}
	.lb-caption { bottom: 56px; font-size: 13px; }
	.lb-counter { bottom: 24px; font-size: 11px; }
}

/* Reduced motion — skip animations but keep functionality */
@media (prefers-reduced-motion: reduce) {
	.hiking-lightbox { animation: none; transition: none; }
	.lb-image { transition: none; }
	.lb-spinner { animation: none; }
	.lb-close,
	.lb-prev,
	.lb-next { transition: background var(--transition); }
	.lb-close:hover,
	.lb-prev:hover,
	.lb-next:hover { transform: none; }
	.lb-prev:hover,
	.lb-prev:focus-visible { transform: translateY(-50%); }
	.lb-next:hover,
	.lb-next:focus-visible { transform: translateY(-50%); }
}
/* =====================================================================
   GYG-style tour page (single-hike.php)
   ===================================================================== */

.tour-gyg { background: #fff; padding-bottom: 60px; }
.tour-gyg .container { max-width: 1180px; }

/* --- Header --- */
.tour-header { padding: 12px 0 18px; }
.tour-header-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 700;
	color: var(--color-dark);
	margin: 0 0 14px;
	line-height: 1.2;
}
.tour-header-chips {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 8px 14px;
}
.tour-chip {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; color: var(--color-body);
	background: var(--color-mint-bg);
	padding: 6px 12px;
	border-radius: 999px;
	font-weight: 500;
}
.tour-chip svg { color: var(--color-primary); }

/* --- Mosaic gallery --- */
.tour-mosaic { margin-bottom: 32px; }
.tour-mosaic-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 200px 200px;
	gap: 8px;
	border-radius: 16px;
	overflow: hidden;
	height: 408px;
}
.tour-mosaic-item {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--color-light-gray);
}
.tour-mosaic-item img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.tour-mosaic-item:hover img { transform: scale(1.05); }
.tour-mosaic-item--lead {
	grid-row: 1 / span 2;
	grid-column: 1;
}
.tour-mosaic-more {
	position: absolute; inset: 0;
	background: rgba(29,29,29,.55);
	color: #fff; font-weight: 700; font-size: 22px;
	display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
	.tour-mosaic-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 110px 110px;
		height: auto;
	}
	.tour-mosaic-item--lead { grid-row: 1; grid-column: 1 / -1; }
}

/* --- Body grid --- */
.tour-body { padding: 72px 0 56px; } /* #139: top padding (was 0) */
.tour-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 980px) {
	.tour-grid { grid-template-columns: 1fr; }
}

.tour-main { min-width: 0; }

/* --- Feature row --- */
.tour-features {
	list-style: none; padding: 16px 20px; margin: 0 0 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px 24px;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	background: #fff;
}
.tour-feature {
	display: flex; align-items: flex-start; gap: 12px;
}
.tour-feature svg {
	color: var(--color-primary);
	flex-shrink: 0;
	margin-top: 2px;
}
.tour-feature strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.3;
}
.tour-feature small {
	display: block;
	font-size: 13px;
	color: var(--color-secondary);
	margin-top: 2px;
}

/* --- Sections --- */
.tour-section {
	padding: 26px 0;
	border-top: 1px solid var(--color-border);
}
.tour-section:first-of-type { border-top: none; padding-top: 0; }
.tour-section h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: var(--color-dark);
	margin: 0 0 14px;
}
.tour-section .entry-content p { margin: 0 0 12px; line-height: 1.65; }

/* --- Bullet lists --- */
.tour-bullets {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 8px;
}
.tour-bullets li {
	position: relative;
	padding-left: 26px;
	line-height: 1.55;
}
.tour-bullets li::before {
	content: '';
	position: absolute; left: 0; top: 8px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
}
.tour-bullets--warn li::before { background: #E0A93B; }

/* --- Two-col check lists --- */
.tour-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 40px;
}
@media (max-width: 640px) { .tour-twocol { grid-template-columns: 1fr; } }
.tour-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tour-check-list li {
	position: relative;
	padding-left: 28px;
	line-height: 1.5;
}
.tour-check-list--yes li::before {
	content: '✓';
	position: absolute; left: 0; top: 0;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 16px;
}
.tour-check-list--no li::before {
	content: '✕';
	position: absolute; left: 0; top: 0;
	color: #C44;
	font-weight: 700;
	font-size: 16px;
}

.tour-meeting { line-height: 1.6; color: var(--color-body); margin: 0; }

/* --- Route list (legacy) --- */
.tour-route-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tour-route-list li { display: flex; align-items: center; gap: 10px; }
.tour-route-list svg { color: var(--color-primary); flex-shrink: 0; }

/* --- Sticky sidebar --- */
.tour-sidebar { position: sticky; top: 20px; }
.tour-booking-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.tour-sidebar-price {
	display: flex; flex-wrap: wrap; align-items: baseline;
	gap: 6px;
	margin-bottom: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-border);
}
.tour-sidebar-price-label {
	width: 100%;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--color-secondary);
}
.tour-sidebar-price-value {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-dark);
}
.tour-sidebar-price-unit {
	font-size: 14px;
	color: var(--color-secondary);
}
.tour-sidebar-price-note {
	width: 100%;
	font-size: 12px;
	color: var(--color-secondary);
	margin-top: 4px;
}
.tour-sidebar-perks {
	list-style: none; padding: 0; margin: 0 0 16px;
	display: flex; flex-direction: column; gap: 6px;
}
.tour-sidebar-perks li {
	display: flex; align-items: center; gap: 6px;
	font-size: 13px;
	color: var(--color-primary);
	font-weight: 500;
}
.tour-sidebar-perks svg { color: var(--color-primary); }

.tour-booking-title {
	font-size: 15px;
	font-weight: 600;
	margin: 20px 0 10px;
	color: var(--color-dark);
}

.hike-buy-btn { width: 100%; justify-content: center; padding: 14px; font-weight: 600; }
.hike-or-divider {
	text-align: center;
	font-size: 12px;
	color: var(--color-secondary);
	margin: 16px 0 0;
	position: relative;
}
.hike-or-divider::before,
.hike-or-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background: var(--color-border);
}
.hike-or-divider::before { left: 0; }
.hike-or-divider::after { right: 0; }

.tour-ford-disclaimer {
	display: flex; align-items: flex-start; gap: 8px;
	margin-top: 18px;
	padding: 12px;
	background: var(--color-mint-bg);
	border-radius: 10px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--color-body);
}
.tour-ford-disclaimer svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.tour-ford-disclaimer a {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: underline;
	margin-top: 2px;
}

/* ================================================================
   FACEBOOK EVENTS (fb_event CPT)
   ================================================================ */
.single-fb-event { padding: 40px 0 64px; }
.fb-event-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}
.fb-event-main { font-size: 17px; }
.fb-event-main p { margin-bottom: 1em; } /* wpautop already handles FB line breaks */
.fb-event-past-note {
	background: var(--color-light-gray);
	border-left: 4px solid var(--color-secondary);
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	color: var(--color-secondary);
	font-weight: 600;
}

/* Sidebar register card */
.fb-event-aside { position: sticky; top: 96px; }
.fb-event-card {
	background: var(--color-mint-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-card);
}
.fb-event-card h2 {
	font-family: var(--font-heading);
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--color-dark);
}
.fb-event-card-date {
	display: flex; align-items: center; gap: 6px;
	font-weight: 600; color: var(--color-dark); margin-bottom: 12px;
}
.fb-event-card-help { font-size: 15px; color: var(--color-body); margin-bottom: 16px; }
.fb-event-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.fb-event-fblink {
	display: block; text-align: center; margin-top: 6px;
	font-size: 14px; font-weight: 600; color: var(--color-primary);
}
.fb-event-fblink:hover { color: var(--color-primary-hover); }
.fb-event-back {
	display: inline-block; margin-top: 18px;
	font-weight: 600; color: var(--color-secondary);
}
.fb-event-back:hover { color: var(--color-primary); }

@media (max-width: 900px) {
	.fb-event-layout { grid-template-columns: 1fr; gap: 28px; }
	.fb-event-aside { position: static; }
}

/* fb_event — booking (WooCommerce) */
.fb-event-price { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 14px; }
.fb-event-price-amount { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--color-dark); }
.fb-event-price-unit { font-size: 14px; color: var(--color-secondary); }
.fb-event-buy { display: block; }
.fb-event-qty { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; font-weight: 600; }
.fb-event-qty-controls { display: inline-flex; align-items: stretch; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.fb-event-qty-btn {
	width: 38px; border: none; background: #fff; font-size: 20px; line-height: 1; cursor: pointer;
	color: var(--color-dark); transition: background var(--transition);
}
.fb-event-qty-btn:hover { background: var(--color-light-gray); }
.fb-event-qty-input {
	width: 52px; padding: 8px 4px; font-size: 16px; text-align: center; font-family: var(--font-body);
	border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
	-moz-appearance: textfield;
}
.fb-event-qty-input::-webkit-outer-spin-button,
.fb-event-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fb-event-total {
	display: flex; align-items: baseline; justify-content: space-between;
	margin-bottom: 14px; font-weight: 600; color: var(--color-dark);
}
.fb-event-total-value { font-family: var(--font-heading); font-size: 20px; }
.fb-event-or {
	position: relative; text-align: center; margin: 18px 0 14px; color: var(--color-secondary); font-size: 13px;
}
.fb-event-or::before {
	content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--color-border);
}
.fb-event-or span { position: relative; background: var(--color-mint-bg); padding: 0 10px; text-transform: uppercase; letter-spacing: .05em; }

/* #106 — in-content titles were too big (privacy/terms etc.) */
.entry-content h1 { font-size: 30px; line-height: 1.25; margin: 0 0 18px; }
.entry-content h2 { font-size: 24px; line-height: 1.3; }

/* ---- Hero refinements (feedback 2026-06-10) ---- */
.tour-hero-grid { align-items: center; }           /* image vertically middle-aligned w/ content */
/* clear the fixed 80px header (the .header-spacer height was removed earlier) */
.tour-hero { padding-top: 112px; }
.tour-hero-chip svg { width: 15px; height: 15px; } /* some meta icons ship without size attrs */
.tour-hero-crumbs { margin-bottom: 12px; font-size: 13px; }
/* Image-less inner-page hero: no empty photo slot, tidy single column */
.tour-hero--solo .tour-hero-grid { grid-template-columns: 1fr; }
.tour-hero--solo .tour-hero-content { max-width: none; }
.tour-hero--solo { padding: 112px 0 48px; }
.tour-hero--page .tour-hero-lede { color: var(--color-body); }
@media (max-width: 900px) {
	.tour-hero-grid { align-items: center; }
}

/* ================================================================
   CUSTOM FORMS (.he-form) — plugin-free contact/rental inquiry
   ================================================================ */
.he-form-intro { font-size: 14px; color: var(--color-secondary); margin: 0 0 16px; }
.he-form-notice { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; font-weight: 600; }
.he-form-notice--ok  { background: var(--color-mint-bg); color: #1a7f37; border: 1px solid #b6e0b6; }
.he-form-notice--err { background: #fdecec; color: #b32d2e; border: 1px solid #f3c2c2; }
.he-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.he-field { margin: 0 0 14px; }
.he-field label { display: block; font-size: 14px; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.he-req { color: var(--color-primary); }
.he-opt { color: var(--color-secondary); font-weight: 400; font-size: 13px; }
.he-form input[type="text"],
.he-form input[type="email"],
.he-form input[type="tel"],
.he-form input[type="number"],
.he-form input[type="date"],
.he-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 15px;
	background: var(--color-white);
}
.he-form input:focus, .he-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(87, 185, 87, 0.15);
}
.he-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.he-form-submit { margin-top: 4px; width: 100%; }
@media (max-width: 600px) { .he-field-row { grid-template-columns: 1fr; } }

/* ================================================================
   404 — clean centered, no hero (feedback #95)
   ================================================================ */
.page-404 { padding: 160px 0 100px; text-align: center; }  /* top clears the fixed 80px header */
.error-404 { margin: 0 auto; }
.error-404-code {
	font-family: var(--font-heading); font-weight: 800; line-height: 1;
	font-size: clamp(96px, 18vw, 200px);
	color: var(--color-primary);
	letter-spacing: -2px;
}
.error-404-title { font-size: clamp(24px, 4vw, 34px); margin: 8px 0 12px; color: var(--color-dark); }
.error-404-text { font-size: 17px; color: var(--color-secondary); margin: 0 auto 28px; }
.error-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
	.page-404 { padding: 130px 0 70px; }
	.error-404-actions .btn-primary, .error-404-actions .btn-outline-green { width: 100%; }
}

/* ================================================================
   TEAM GRID — Meie inimesed (feedback #103)
   ================================================================ */
.team-grid { display: flex; flex-direction: column; gap: 40px; padding: 8px 0 16px; } /* full container width = same as header (#124) */
.team-member {
	display: grid; grid-template-columns: 380px 1fr; gap: 28px; align-items: start;
	background: var(--color-white); border: 1px solid var(--color-border);
	border-radius: var(--radius); box-shadow: var(--shadow-card);
	padding: 18px; /* #149: space around the photo (incl. its left edge) */
}
.team-photo { width: 100%; aspect-ratio: 4 / 5; background: var(--color-light-bg); border-radius: var(--radius-sm); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.team-info { padding: 10px 10px 10px 0; }
.team-name { font-size: 24px; margin: 0 0 2px; color: var(--color-dark); }
.team-role {
	display: inline-block; font-weight: 600; font-size: 13px; color: var(--color-primary);
	text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px;
}
.team-bio p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; color: var(--color-body); }
.team-bio p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
	.team-member { grid-template-columns: 1fr; }
	.team-photo { aspect-ratio: 4 / 3; }
	.team-info { padding: 24px; }
}

/* #131 — "all hikes" button under the homepage hikes grid */
.hikes-allcta { text-align: center; margin-top: 40px; }

/* #128 — give the solid (mint) CTA design elements so it's not flat green */
.cta.cta--solid {
	position: relative;
	overflow: hidden;
	background-color: var(--color-mint-bg);
	background-image: radial-gradient(rgba(87,185,87,.10) 1.5px, transparent 1.6px);
	background-size: 22px 22px;
}
.cta.cta--solid::before {
	display: block !important;
	content: ""; position: absolute; right: -100px; top: -100px;
	width: 320px; height: 320px; border-radius: 50%;
	background: radial-gradient(circle, rgba(87,185,87,.20), rgba(87,185,87,0) 70%);
	pointer-events: none; z-index: 0;
}
.cta.cta--solid::after {
	content: ""; position: absolute; left: -120px; bottom: -120px;
	width: 300px; height: 300px; border-radius: 50%;
	background: radial-gradient(circle, rgba(72,173,72,.12), rgba(72,173,72,0) 70%);
	pointer-events: none; z-index: 0;
}
.cta.cta--solid .container { position: relative; z-index: 1; }

/* Cancellation policy block (booking sidebar) — #96 / policy */
.cancel-policy { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.cancel-policy-title { font-size: 15px; margin: 0 0 10px; color: var(--color-dark); display: flex; align-items: center; }
.cancel-policy-title svg { color: var(--color-primary); }
.cancel-policy-list { list-style: none; padding: 0; margin: 0; }
.cancel-policy-list li { position: relative; padding-left: 16px; font-size: 13px; line-height: 1.5; color: var(--color-body); margin-bottom: 8px; }
.cancel-policy-list li::before { content: "•"; position: absolute; left: 2px; color: var(--color-primary); font-weight: 700; }

/* fb_event archive cards: date/place sits right under the title; seats badge pinned to bottom */
.fb-card-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.fb-card-seats { margin-top: auto; }

/* ================================================================
   CHECKOUT — themed one-page (feedback #143/#144)
   ================================================================ */
.hiking-checkout #content { padding: 120px 0 64px; }
.hiking-checkout .woocommerce { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.hiking-checkout h1.entry-title, .hiking-checkout .page-hero { display: none; } /* no hero on checkout */

/* two-column layout: form left, order/payment right */
.hiking-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 0 40px;
	align-items: start;
}
/* details span both rows so the order panel stays at the top of the right column */
.hiking-checkout #customer_details { min-width: 0; grid-column: 1; grid-row: 1 / span 2; }
.hiking-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin-top: 0; }
.hiking-checkout #order_review { grid-column: 2; grid-row: 2; align-self: start; }
.hiking-checkout #order_review_heading { margin: 0 0 12px; font-size: 20px; }

/* card-style panels */
.hiking-checkout #customer_details .col-1,
.hiking-checkout #customer_details .col-2,
.hiking-checkout #order_review {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 24px;
	margin-bottom: 24px;
}

/* fields — inline & tidy */
.hiking-checkout .woocommerce-billing-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.hiking-checkout .form-row { margin: 0 0 14px; float: none !important; width: auto !important; padding: 0 !important; }
.hiking-checkout .form-row-wide, .hiking-checkout .form-row-first, .hiking-checkout .form-row-last { grid-column: auto; }
.hiking-checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide,
.hiking-checkout .woocommerce-billing-fields__field-wrapper > .notes,
.hiking-checkout .woocommerce-additional-fields { grid-column: 1 / -1; }
.hiking-checkout .form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 5px; color: var(--color-dark); }
.hiking-checkout .input-text,
.hiking-checkout select,
.hiking-checkout .select2-selection {
	width: 100%; padding: 11px 13px; border: 1px solid var(--color-border) !important;
	border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; background: #fff;
}
.hiking-checkout .input-text:focus { outline: none; border-color: var(--color-primary) !important; box-shadow: 0 0 0 3px rgba(87,185,87,.15); }

/* order review table */
.hiking-checkout .shop_table { width: 100%; border-collapse: collapse; }
.hiking-checkout .shop_table th, .hiking-checkout .shop_table td { padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 15px; text-align: left; }
.hiking-checkout .shop_table .order-total td, .hiking-checkout .shop_table .order-total th { font-size: 18px; font-weight: 700; border-bottom: none; }

/* editable quantity stepper */
.co-qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; vertical-align: middle; margin-left: 6px; }
.co-qty.is-loading { opacity: .5; }
.co-qty-btn { width: 30px; height: 30px; border: none; background: #fff; font-size: 17px; line-height: 1; cursor: pointer; color: var(--color-dark); }
.co-qty-btn:hover { background: var(--color-light-gray); }
.co-qty-input { width: 38px; height: 30px; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); font-size: 14px; -moz-appearance: textfield; }
.co-qty-input::-webkit-outer-spin-button, .co-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* payment box */
.hiking-checkout #payment { background: transparent; }
.hiking-checkout #payment ul.payment_methods { border: none; padding: 0; }
.hiking-checkout #place_order, .hiking-checkout #payment .button {
	width: 100%; background: var(--color-primary); color: #fff; border: none; padding: 15px 24px;
	border-radius: var(--radius-sm); font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 10px;
}
.hiking-checkout #place_order:hover { background: var(--color-primary-hover); }

@media (max-width: 900px) {
	.hiking-checkout form.checkout { grid-template-columns: 1fr; }
	.hiking-checkout #order_review_heading, .hiking-checkout #order_review { grid-column: 1; }
	.hiking-checkout .woocommerce-billing-fields__field-wrapper { grid-template-columns: 1fr; }
	.hiking-checkout #content { padding: 100px 0 48px; }
	.hiking-checkout .woocommerce { padding: 0 24px; }
}
