/* =========================================================
   Tripzura — Sunset Horizon palette
   ========================================================= */
:root {
	/* Brand */
	--primary: #2B6CB0;          /* Azure Blue — links, buttons, active nav */
	--primary-hover: #1E4E85;    /* Deep Azure — hover/active */
	--harvest-accent: #E8724C;   /* Sunset Coral — badges, CTAs, highlights */
	--harvest-accent-contrast: #ffffff;

	/* Backgrounds */
	--bg: #FAF6F0;               /* Warm Cream */
	--bg-alt: #F2EBE0;
	--bg-inverse: #12213D;       /* Deep Navy */
	--bg-inverse-alt: #1A2D52;
	--card-bg: #ffffff;

	/* Text */
	--text: #22262B;             /* Charcoal */
	--text-muted: #7A7570;       /* Warm Gray */
	--text-inverse: #F5F2ED;     /* Off-white */
	--text-inverse-muted: #A8B0C0;

	/* Borders */
	--border: #E7DFD5;           /* Soft Sand */
	--border-inverse: #263554;

	--shadow: 0 12px 30px -18px rgba(18, 33, 61, 0.30);

	--font-heading: "Fraunces", Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--radius: 14px;
	--container-width: 1180px;
}

:root[data-theme="dark"] {
	--bg: #12213D;
	--bg-alt: #1A2D52;
	--bg-inverse: #0C1729;
	--bg-inverse-alt: #12213D;
	--card-bg: #1A2D52;
	--text: #F5F2ED;
	--text-muted: #A8B0C0;
	--text-inverse: #F5F2ED;
	--text-inverse-muted: #A8B0C0;
	--border: #263554;
	--shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg: #12213D;
		--bg-alt: #1A2D52;
		--bg-inverse: #0C1729;
		--bg-inverse-alt: #12213D;
		--card-bg: #1A2D52;
		--text: #F5F2ED;
		--text-muted: #A8B0C0;
		--text-inverse: #F5F2ED;
		--text-inverse-muted: #A8B0C0;
		--border: #263554;
		--shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
	}
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------------------------------------------------------------
   Accessibility baseline
   --------------------------------------------------------------- */

/* Visible keyboard focus. :focus-visible only fires for keyboard/AT users,
   so mouse clicks stay clean while tabbing is always traceable. */
:focus-visible {
	outline: 3px solid var(--harvest-accent);
	outline-offset: 2px;
	border-radius: 3px;
}
/* Never remove focus without replacing it. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--harvest-accent);
	outline-offset: 2px;
}

/* Respect motion sensitivity (WCAG 2.3.3). Users who ask their OS to reduce
   motion get near-instant transitions instead of movement. */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	/* Kill the decorative transforms outright rather than snapping them. */
	.hero-card:hover,
	.error-404-btn:hover,
	.hotel-book-btn:hover,
	.home-hero-search-btn:hover,
	.hotel-map-open:hover { transform: none; }
	.hero-card:hover .hero-card-media img,
	.wts-hub-card:hover .wts-hub-card-img img,
	.hotel-gallery-item:hover img { transform: none; }
	.error-404-compass { animation: none; }
}

body {
	margin: 0;
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	transition: background-color 0.2s ease, color 0.2s ease;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.skip-link {
	position: fixed;
	top: -60px;
	left: 12px;
	background: var(--harvest-accent);
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	z-index: 999;
	transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; width: auto; height: auto; clip: auto; }

.badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	padding: 5px 12px;
	border-radius: 999px;
}

.section-title {
	font-size: 26px;
	margin-bottom: 24px;
}

/* =========================================================
   Top bar
   ========================================================= */
.top-bar {
	background: var(--bg-inverse);
	color: var(--text-inverse-muted);
	font-size: 13px;
}
.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
}
.top-bar-menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.top-bar-menu a { color: var(--text-inverse-muted); }
.top-bar-menu a:hover { color: #fff; }
.top-bar-social { display: flex; align-items: center; gap: 10px; }
.top-bar-follow { margin-right: 4px; }
.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-inverse-muted);
	transition: background 0.25s, color 0.25s, transform 0.25s;
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover { transform: scale(1.15); }
.social-link.social-instagram:hover  { background: #E1306C; color: #fff; }
.social-link.social-youtube:hover    { background: #FF0000; color: #fff; }
.social-link.social-pinterest:hover  { background: #E60023; color: #fff; }
.social-link.social-facebook:hover   { background: #1877F2; color: #fff; }
.social-link.social-twitter:hover    { background: #000000; color: #fff; }
.social-link.social-linkedin:hover   { background: #0A66C2; color: #fff; }
.social-link.social-tiktok:hover     { background: #010101; color: #fff; }

/* =========================================================
   Header — light background, dark text (Zaira style)
   ========================================================= */
.site-header {
	background: var(--bg);
	color: var(--text);
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-branding .site-title {
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
}
.custom-logo { max-height: 48px; width: auto; }

.main-navigation { flex: 1; }
.primary-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 15px;
}
.primary-menu > li { display: flex; align-items: center; }
.primary-menu > li > a { color: var(--text); padding: 8px 0; display: inline-flex; align-items: center; }
.primary-menu > li > a:hover { color: var(--harvest-accent); }
.primary-menu > li.current-menu-item > a { color: var(--harvest-accent); }
.primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	position: absolute;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: 0.15s ease;
}
.primary-menu li { position: relative; }
.primary-menu li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu ul a { display: block; padding: 8px 16px; color: var(--text); }

.menu-caret { font-size: 10px; margin-left: 4px; opacity: 0.7; }
.mega-trigger { display: inline-flex; align-items: center; }

/* =========================================================
   Destinations mega-menu
   ========================================================= */
.primary-menu li.menu-item-has-megamenu { position: static; }

.mega-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--card-bg);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 250;
	padding-top: 28px;
}
.menu-item-has-megamenu:focus-within > .mega-menu,
.menu-item-has-megamenu.is-open > .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 40px;
	padding-bottom: 24px;
}
.mega-region-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.mega-region-title:hover { color: var(--primary); }
.mega-region-chevron { font-size: 15px; }

.mega-country-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.mega-country-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 8px;
	background: var(--bg-alt);
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.mega-country-pill:hover {
	border-color: var(--primary);
	background: color-mix(in srgb, var(--primary) 10%, var(--bg-alt));
	color: var(--primary);
}
.mega-country-flag { font-size: 16px; line-height: 1; }
.mega-country-empty { font-size: 13px; color: var(--text-muted); font-style: italic; }

.mega-menu-cta {
	display: block;
	text-align: center;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 14px;
	transition: background 0.15s ease;
}
.mega-menu-cta:hover { background: var(--primary-hover); color: #fff; }

/* --- Travel Tips mega-menu --- */
.mega-menu--tips { background: var(--card-bg); }
.mega-tips-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 0;
}
.mega-tips-col { padding: 24px 28px; }
.mega-tips-booking { border-right: 1px solid var(--border); }
.mega-tips-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 18px;
}
.mega-tips-heading-arrow {
	font-size: 1.3rem;
	color: var(--text-muted);
	transition: transform 0.2s ease;
}
.mega-tips-heading:hover .mega-tips-heading-arrow { transform: translateX(3px); }
ul.mega-tips-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	background: none;
	border: 0;
	box-shadow: none;
	min-width: 0;
}
a.mega-tips-item {
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 6px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text);
	transition: background 0.15s ease;
}
a.mega-tips-item:hover { background: var(--bg-alt); }
.mega-tips-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mega-tips-icon svg {
	width: 32px;
	height: 32px;
	color: var(--text);
}
.mega-tips-item-text { display: flex; flex-direction: column; line-height: 1.3; }
.mega-tips-item-text strong { font-size: 0.95rem; font-weight: 600; }
.mega-tips-item-text small { font-size: 0.8rem; color: var(--text-muted); }

.mega-tips-small-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
a.mega-tips-small-card {
	display: flex !important;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text);
	padding: 8px;
	border-radius: 10px;
	transition: background 0.15s ease;
}
a.mega-tips-small-card:hover { background: var(--bg-alt); }
.mega-tips-small-card img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}
.mega-tips-small-title {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.mega-tips-featured-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.mega-tips-featured-card {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	text-decoration: none;
}
.mega-tips-featured-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.mega-tips-featured-card:hover img { transform: scale(1.05); }
.mega-tips-featured-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.site-header-actions { display: flex; align-items: center; gap: 18px; }

.header-search {
	display: flex;
	align-items: center;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 4px 6px 4px 16px;
}
.header-search .search-field {
	background: transparent;
	border: 0;
	color: var(--text);
	font-size: 14px;
	width: 200px;
	outline: none;
}
.header-search .search-field::placeholder { color: var(--text-muted); }
.header-search .search-submit {
	background: var(--harvest-accent);
	border: 0;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	cursor: pointer;
}

/* Header social icons (replaces cart + sign-in) */
.header-social { display: flex; align-items: center; gap: 8px; }
.header-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	color: var(--text);
	font-size: 11px;
	font-weight: 700;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.header-social-link:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 6px;
}
.menu-toggle-bar { width: 22px; height: 2px; background: var(--text); display: block; }

/* =========================================================
   Hero carousel (4-up)
   ========================================================= */
/* Follows the page background so the strip stays light in light mode; the
   cards carry their own surface + shadow for separation. */
.hero-carousel {
	background: var(--bg);
	padding: 44px 0 52px;
}
.hero-carousel-wrap { overflow: hidden; }
.hero-carousel-track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.hero-card {
	background: var(--card-bg);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.55);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.65);
}
.hero-card-media-wrap { position: relative; }
.hero-card-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.hero-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.hero-card:hover .hero-card-media img { transform: scale(1.06); }
.hero-card-media-wrap .badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
}
/* No featured image: a clean block tinted with the post's category color. */
.hero-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(0, 0, 0, 0.28) 100%);
}
.hero-card-body { padding: 16px 18px 20px; }
.hero-card-title {
	font-family: var(--font-heading);
	font-size: 17px;
	margin: 0 0 8px;
	line-height: 1.3;
	color: var(--text);
}
.hero-card-title a { color: inherit; text-decoration: none; }
.hero-card-title a:hover { color: var(--harvest-accent); }
.hero-card-meta {
	font-size: 12.5px;
	color: var(--text-muted);
	margin: 0;
}
.hero-card-meta-sep { margin: 0 6px; }
.hero-carousel-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}
.hc-prev, .hc-next {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid var(--border-inverse);
	background: transparent;
	color: var(--text-inverse);
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: 0.15s ease;
}
.hc-prev:hover, .hc-next:hover {
	background: var(--harvest-accent);
	border-color: var(--harvest-accent);
}

/* =========================================================
   Recipe cards / grids
   ========================================================= */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.recipe-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}
.recipe-card-thumb { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.recipe-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.recipe-card:hover .recipe-card-thumb img { transform: scale(1.05); }
.recipe-card-thumb .badge { position: absolute; top: 12px; left: 12px; }
.recipe-card-fallback { position: absolute; inset: 0; display: block; }
.recipe-card-body { padding: 18px 20px 22px; }
.recipe-card-title { font-size: 18px; margin-bottom: 8px; }
.recipe-card-title a:hover { color: var(--harvest-accent); }
.recipe-card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 10px; margin: 0 0 8px; }
.recipe-card-excerpt { font-size: 14px; color: var(--text-muted); margin: 0; }

/* =========================================================
   Section header (title + view-all link)
   ========================================================= */
.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 24px;
}
.section-header .section-title { margin-bottom: 0; }
.view-all-link {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--harvest-accent);
	white-space: nowrap;
}
.view-all-link:hover { text-decoration: underline; }

/* =========================================================
   Latest recipes — big card + list two-column layout
   ========================================================= */
.latest-recipes { padding: 48px 0; }
.latest-recipes-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 40px;
	align-items: start;
}
.latest-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}
.latest-featured-img-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	margin-bottom: 14px;
}
.latest-featured-img-wrap a { display: block; height: 100%; }
.latest-featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.latest-placeholder-img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
}
.latest-featured-body {}
.latest-featured-title { font-size: 20px; margin: 10px 0 6px; }
.latest-featured-title a:hover { color: var(--harvest-accent); }
.latest-featured-meta { font-size: 12px; color: var(--text-muted); margin: 0; }

.latest-list-col { display: flex; flex-direction: column; gap: 18px; }
.latest-list-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.latest-list-thumb {
	width: 80px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}
.latest-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.latest-list-thumb-fallback {
	width: 100%;
	height: 100%;
	background: var(--bg-alt);
}
.latest-list-body { flex: 1; min-width: 0; }
.latest-list-title {
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-heading);
	line-height: 1.35;
	margin: 6px 0 4px;
	display: block;
}
.latest-list-title a:hover { color: var(--harvest-accent); }
.latest-list-meta { font-size: 11px; color: var(--text-muted); margin: 0; }

/* Author bio card */
.author-bio-card {
	background: var(--bg-alt);
	border-radius: var(--radius);
	padding: 28px 24px;
	text-align: center;
	margin-bottom: 24px;
}
.author-bio-avatar { border-radius: 999px; margin: 0 auto 14px; }
.author-bio-greeting { font-weight: 700; font-family: var(--font-heading); font-size: 18px; margin-bottom: 8px; }
.author-bio-text { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.author-bio-link {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--harvest-accent);
	border-bottom: 1px solid var(--harvest-accent);
}

/* Subscribe & Followers sidebar block */
.aside-subscribe { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; }
.aside-subscribe-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.aside-social-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.aside-social-btn {
	display: block;
	text-align: center;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 8px 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
	transition: 0.15s ease;
}
.aside-social-btn:hover { background: var(--harvest-accent); color: #fff; border-color: var(--harvest-accent); }

/* =========================================================
   Category circles
   ========================================================= */
/* =========================================================
   "Where to next?" destinations strip
   ========================================================= */
.destinations-strip-section {
	padding: 36px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.destinations-strip-inner {
	display: flex;
	align-items: center;
	gap: 28px;
}
.destinations-strip-heading {
	display: flex;
	flex-direction: column;
	line-height: 1;
	flex-shrink: 0;
}
.destinations-strip-eyebrow {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-muted);
}
.destinations-strip-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	color: var(--text);
}
.destinations-strip-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px 2px;
	flex: 1;
}
.destinations-strip-track::-webkit-scrollbar { display: none; }

.destination-pill {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 8px 22px 8px 8px;
	box-shadow: 0 6px 16px -12px rgba(18, 33, 61, 0.45);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.destination-pill:hover {
	transform: translateY(-2px);
	border-color: var(--primary);
	box-shadow: 0 12px 22px -14px rgba(43, 108, 176, 0.55);
}
.destination-pill-avatar {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: linear-gradient(135deg, var(--bg-alt), #ffffff);
	border: 1px solid var(--border);
	flex-shrink: 0;
}
:root[data-theme="dark"] .destination-pill-avatar {
	background: linear-gradient(135deg, var(--bg-inverse-alt), var(--bg-alt));
}
.destination-pill-name {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
}
.destination-pill:hover .destination-pill-name { color: var(--primary); }
.destination-pill-all {
	padding: 8px 22px;
	background: transparent;
	border-style: dashed;
	box-shadow: none;
}
.destination-pill-all .destination-pill-name { color: var(--primary); }

.category-circles-section {
	padding: 40px 0;
	background: var(--bg-alt);
}
.category-circles-tagline {
	text-align: center;
	font-size: 13px;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto 28px;
	line-height: 1.6;
}
.category-circles-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 4px;
	justify-content: center;
}
.category-circles-track::-webkit-scrollbar { display: none; }
.category-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	text-decoration: none;
}
.category-circle-img {
	width: 88px;
	height: 88px;
	border-radius: 999px;
	overflow: hidden;
	border: 3px solid var(--border);
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.category-circle:hover .category-circle-img {
	border-color: var(--harvest-accent);
	transform: translateY(-3px);
}
.category-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.category-circle-fallback {
	width: 100%;
	height: 100%;
	background: var(--harvest-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-heading);
}
.category-circle-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text);
}

/* =========================================================
   Weekly Best Recipes
   ========================================================= */
.weekly-best { padding: 48px 0; }
.weekly-best-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}
.weekly-featured-thumb {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 16px;
}
.weekly-featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
.weekly-featured-title { font-size: 22px; margin: 10px 0 8px; }
.weekly-featured-title a:hover { color: var(--harvest-accent); }
.weekly-featured-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.weekly-featured-excerpt { font-size: 14px; color: var(--text-muted); margin: 0; }
.weekly-list { display: flex; flex-direction: column; gap: 20px; }
.weekly-list-item { display: flex; gap: 14px; align-items: flex-start; }
.weekly-list-thumb {
	width: 88px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}
.weekly-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.weekly-list-body { flex: 1; min-width: 0; }
.weekly-list-title { font-size: 14px; font-weight: 700; font-family: var(--font-heading); line-height: 1.35; margin: 6px 0 4px; display: block; }
.weekly-list-title a:hover { color: var(--harvest-accent); }
.weekly-list-date { font-size: 11px; color: var(--text-muted); }

/* =========================================================
   Newsletter CTA
   ========================================================= */
.newsletter-cta { background: var(--bg-inverse); color: var(--text-inverse); padding: 48px 0; }
.newsletter-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-cta-text h2 { font-size: 26px; margin-bottom: 6px; }
.newsletter-cta-text p { color: var(--text-inverse-muted); margin: 0; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-inverse);
	border-radius: 8px;
	padding: 12px 16px;
	color: #fff;
	font-size: 14px;
	min-width: 180px;
}
.newsletter-form input::placeholder { color: var(--text-inverse-muted); }
.newsletter-form button {
	background: var(--harvest-accent);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 700;
	cursor: pointer;
}
.newsletter-form button:hover { opacity: 0.9; }
.newsletter-form-message { margin: 10px 0 0; font-size: 13px; color: var(--text-inverse-muted); }
.newsletter-form-message.is-success { color: #7bd88f; }
.newsletter-form-message.is-error { color: #ff8a8a; }

/* =========================================================
   E-book banner
   ========================================================= */
.ebook-banner { padding: 48px 0; }
.ebook-banner-inner {
	background: var(--bg-alt);
	border-radius: var(--radius);
	padding: 36px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.ebook-banner-text h3 { font-size: 24px; margin-bottom: 8px; }
.ebook-banner-text p { color: var(--text-muted); margin-bottom: 16px; }
.ebook-banner-button {
	display: inline-block;
	background: var(--harvest-accent);
	color: #fff;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 8px;
}
.ebook-banner-media img { max-width: 260px; border-radius: 10px; }

/* =========================================================
   Recipe rails (healthy / popular)
   ========================================================= */
.recipe-rails { padding: 8px 0 56px; }
.recipe-rails-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}
.popular-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.popular-list-item { display: flex; gap: 14px; align-items: center; }
.popular-list-thumb { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.popular-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-list-title { display: block; font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.popular-list-title:hover { color: var(--harvest-accent); }
.popular-list-date { font-size: 12px; color: var(--text-muted); }

/* =========================================================
   Archive / search / 404 / single
   ========================================================= */
.archive-layout, .single-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 40px;
	padding: 48px 0;
	align-items: start;
}
.page-title { font-size: 30px; margin-bottom: 24px; }
.not-found { padding: 80px 0; text-align: center; }

/* 404 page */
.error-404 { padding: 72px 0 96px; }
.error-404-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.error-404-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 13px;
	font-weight: 700;
	color: var(--harvest-accent);
	margin: 0 0 4px;
}
.error-404-code {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(96px, 22vw, 190px);
	line-height: 1;
	color: var(--bg-inverse);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.06em;
}
:root[data-theme="dark"] .error-404-code { color: var(--text); }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .error-404-code { color: var(--text); }
}
.error-404-compass {
	font-size: 0.82em;
	animation: error-404-spin 8s linear infinite;
	display: inline-block;
}
@keyframes error-404-spin {
	from { transform: rotate(-12deg); }
	50%  { transform: rotate(12deg); }
	to   { transform: rotate(-12deg); }
}
.error-404-title {
	font-family: var(--font-heading);
	font-size: clamp(24px, 4vw, 36px);
	line-height: 1.2;
	margin: 18px 0 12px;
}
.error-404-text {
	color: var(--text-muted);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 auto 30px;
	max-width: 520px;
}
.error-404-search { max-width: 520px; margin: 0 auto 28px; }
.error-404-search .header-search { width: 100%; padding: 8px 8px 8px 20px; }
.error-404-search .search-field { flex: 1 1 auto; width: auto; font-size: 15px; }
.error-404-search .search-submit { width: 36px; height: 36px; flex: 0 0 auto; }
.error-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 40px;
}
.error-404-btn {
	display: inline-block;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 1.5px solid var(--border);
	color: var(--text);
	background: var(--card-bg);
	transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.error-404-btn:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary); }
.error-404-btn-primary {
	background: var(--harvest-accent);
	border-color: var(--harvest-accent);
	color: var(--harvest-accent-contrast);
}
.error-404-btn-primary:hover { background: var(--harvest-accent); color: var(--harvest-accent-contrast); opacity: 0.9; }
.error-404-suggest-label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 14px;
}
.error-404-suggest-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.error-404-chip {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--bg-alt);
	color: var(--text);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.error-404-chip:hover { background: var(--primary); color: #fff; }

/* ============ Hotel review page ============ */
.hotel-stars { display: inline-flex; align-items: center; gap: 2px; }
.hotel-star { color: #d8d2c8; font-size: 18px; line-height: 1; }
.hotel-star.is-full { color: #f5a623; }
.hotel-star.is-half {
	background: linear-gradient(90deg, #f5a623 50%, #d8d2c8 50%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.hotel-stars-num { margin-left: 8px; font-weight: 700; font-size: 15px; color: inherit; }

.hotel-review-hero { background: var(--bg-inverse); background-size: cover; background-position: center; padding: 64px 0 56px; }
.hotel-review-hero-inner { color: #fff; }
.hotel-review-eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; font-weight: 700; color: var(--harvest-accent); margin: 0 0 8px; }
.hotel-review-title { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 48px); line-height: 1.1; margin: 0 0 14px; color: #fff; }
.hotel-review-rating { margin-bottom: 14px; }
.hotel-review-rating .hotel-star { font-size: 22px; }
.hotel-review-rating .hotel-stars-num { color: #fff; }
.hotel-review-lead { font-size: 18px; line-height: 1.6; max-width: 640px; color: rgba(255,255,255,0.9); margin: 0 0 24px; }
.hotel-book-btn-hero { display: inline-block; }

.hotel-review-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	padding-top: 48px;
	padding-bottom: 56px;
	align-items: start;
}
.hotel-review-section { margin-bottom: 40px; }
.hotel-review-h2 { font-family: var(--font-heading); font-size: 26px; margin: 0 0 16px; }
.hotel-review-prose { font-size: 17px; line-height: 1.75; color: var(--text); }
.hotel-review-prose p { margin: 0 0 18px; }
.hotel-review-prose h2 { font-family: var(--font-heading); font-size: 26px; line-height: 1.25; margin: 36px 0 14px; }
.hotel-review-prose h2:first-child { margin-top: 0; }
.hotel-review-prose ul { margin: 0 0 18px; padding-left: 22px; }
.hotel-review-prose li { margin-bottom: 8px; }
.hotel-review-prose a { color: var(--primary); }
.hotel-review-prose figure { margin: 28px 0; }
.hotel-review-prose img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
.hotel-review-prose figcaption { font-size: 13px; color: var(--text-muted); margin-top: 10px; text-align: center; }

.hotel-highlights-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.hotel-highlight { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--text); }
.hotel-highlight-check { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--harvest-accent); color: #fff; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }

.hotel-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hotel-gallery-item { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); }
.hotel-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hotel-gallery-item:hover img { transform: scale(1.05); }

/* Guest Reviews Carousel */
.hotel-guest-reviews { overflow: hidden; }
.guest-reviews-track { position: relative; min-height: 180px; }
.guest-review-card {
	position: absolute; inset: 0; opacity: 0; transform: translateX(30px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	margin: 0; padding: 0; border: none; font-style: normal;
	pointer-events: none;
}
.guest-review-card.is-active {
	position: relative; opacity: 1; transform: translateX(0);
	pointer-events: auto;
}
.guest-review-text {
	font-size: 17px; line-height: 1.7; color: var(--text);
	background: var(--card-bg); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 24px 28px;
	margin: 0 0 16px;
}
.guest-review-footer {
	display: flex; align-items: center; gap: 12px;
	padding: 0 4px;
}
.guest-review-avatar {
	width: 38px; height: 38px; border-radius: 50%;
	background: var(--primary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 600; font-size: 16px; flex-shrink: 0;
}
.guest-review-name {
	font-style: normal; font-weight: 600; font-size: 15px;
	color: var(--text); display: flex; align-items: center; gap: 6px;
}
.guest-review-flag { font-size: 18px; line-height: 1; }
.guest-review-score {
	margin-left: auto; font-weight: 700; font-size: 15px;
	color: var(--primary); background: var(--bg-alt);
	padding: 4px 10px; border-radius: 8px;
}
.guest-review-score span { font-weight: 400; font-size: 12px; color: var(--text-muted); }
.guest-reviews-nav {
	display: flex; align-items: center; justify-content: center;
	gap: 12px; margin-top: 20px;
}
.guest-reviews-btn {
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid var(--border); background: var(--card-bg);
	color: var(--text); cursor: pointer; font-size: 16px;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}
.guest-reviews-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.guest-reviews-dots { display: flex; gap: 6px; }
.guest-reviews-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--border); border: none; cursor: pointer;
	padding: 0; transition: background 0.2s;
}
.guest-reviews-dot.is-active { background: var(--primary); }

.hotel-book-card { position: sticky; top: 96px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; }
.hotel-book-card-rating { margin-bottom: 12px; }
.hotel-book-card-name { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin: 0 0 4px; }
.hotel-book-card-loc { color: var(--text-muted); font-size: 14px; margin: 0 0 18px; }
.hotel-book-btn { display: block; width: 100%; background: var(--harvest-accent); color: var(--harvest-accent-contrast); font-weight: 700; font-size: 16px; padding: 14px 20px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s ease, transform 0.15s ease; }
.hotel-book-btn:hover { opacity: 0.92; transform: translateY(-2px); color: var(--harvest-accent-contrast); }
.hotel-book-card-note { font-size: 12px; color: var(--text-muted); margin: 14px 0 0; line-height: 1.5; }
.hotel-map-link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; margin: 0 0 16px; }
.hotel-map-link:hover { text-decoration: underline; }

/* Map preview card */
.hotel-map-card { margin-top: 20px; }
.hotel-map-thumb {
	position: relative;
	height: 190px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
}
.hotel-map-thumb iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	pointer-events: none; /* thumbnail only — the button opens the real map */
	filter: saturate(0.9);
}
.hotel-map-open {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 11px 22px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
	transition: transform 0.15s ease, background 0.2s ease;
}
.hotel-map-open:hover { transform: translate(-50%, -50%) scale(1.04); background: var(--primary-hover); }

/* Map popup */
.hotel-map-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hotel-map-modal[hidden] { display: none; }
.hotel-map-modal-backdrop { position: absolute; inset: 0; background: rgba(9, 16, 30, 0.7); backdrop-filter: blur(2px); }
.hotel-map-modal-panel {
	position: relative;
	width: min(1000px, 100%);
	height: min(700px, 90vh);
	background: var(--card-bg);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.hotel-map-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.hotel-map-modal-title { font-family: var(--font-heading); font-weight: 600; font-size: 16px; margin: 0; color: var(--text); }
.hotel-map-modal-title span { color: var(--text-muted); font-weight: 400; }
.hotel-map-modal-close { background: transparent; border: 0; font-size: 28px; line-height: 1; color: var(--text-muted); cursor: pointer; padding: 0 4px; }
.hotel-map-modal-close:hover { color: var(--text); }
.hotel-map-modal-body { flex: 1; min-height: 0; }
.hotel-map-modal-body iframe { width: 100%; height: 100%; border: 0; display: block; }
.hotel-map-modal-foot { display: flex; gap: 12px; align-items: center; justify-content: flex-end; padding: 12px 18px; border-top: 1px solid var(--border); }
.hotel-map-modal-gmaps { color: var(--primary); font-weight: 600; font-size: 14px; text-decoration: none; }
.hotel-map-modal-gmaps:hover { text-decoration: underline; }
.hotel-map-modal-book { background: var(--harvest-accent); color: var(--harvest-accent-contrast); font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 999px; text-decoration: none; }
.hotel-map-modal-book:hover { opacity: 0.9; color: var(--harvest-accent-contrast); }
body.hotel-map-open-lock { overflow: hidden; }

@media (max-width: 560px) {
	.hotel-map-modal { padding: 0; }
	.hotel-map-modal-panel { height: 100vh; width: 100%; border-radius: 0; }
}

.hotel-similar { padding: 8px 0 64px; }
.hotel-similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.hotel-similar-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hotel-similar-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.hotel-similar-img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-similar-fallback { display: block; width: 100%; height: 100%; }
.hotel-similar-body { padding: 16px 18px 20px; }
.hotel-similar-rating { margin-bottom: 6px; }
.hotel-similar-title { font-family: var(--font-heading); font-size: 18px; margin: 0; }
.hotel-similar-title a { color: var(--text); text-decoration: none; }
.hotel-similar-title a:hover { color: var(--primary); }

@media (max-width: 860px) {
	.hotel-review-body { grid-template-columns: 1fr; gap: 32px; }
	.hotel-book-card { position: static; }
	.hotel-similar-grid { grid-template-columns: 1fr 1fr; }
	.hotel-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.hotel-highlights-grid { grid-template-columns: 1fr; }
	.hotel-similar-grid { grid-template-columns: 1fr; }
}

/* ============ Homepage editorial hero ============ */
.home-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 0;
	min-height: 520px;
	background: var(--bg);
}
.home-hero-clip { position: absolute; width: 0; height: 0; }
.home-hero-media {
	background-size: cover;
	background-position: center;
	min-height: 320px;
	clip-path: ellipse(112% 118% at 2% 50%); /* fallback */
	clip-path: url(#home-hero-shape);
}
.home-hero-media.is-placeholder {
	background-image: linear-gradient(135deg, var(--primary) 0%, var(--harvest-accent) 100%);
}
.home-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px clamp(24px, 5vw, 72px) 56px clamp(32px, 5vw, 64px);
	max-width: 620px;
}
.home-hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid var(--border);
	font-size: 26px;
	margin-bottom: 22px;
}
.home-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.1;
	margin: 0 0 16px;
	color: var(--text);
}
.home-hero-intro {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0 0 28px;
}
.home-hero-search {
	display: flex;
	align-items: center;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 6px 6px 6px 20px;
	box-shadow: var(--shadow);
	gap: 10px;
}
.home-hero-search-icon { color: var(--text-muted); font-size: 17px; flex: 0 0 auto; }
.home-hero-search-input {
	flex: 1 1 auto;
	border: 0;
	background: transparent;
	color: var(--text);
	font-size: 16px;
	outline: none;
	min-width: 0;
}
.home-hero-search-input::placeholder { color: var(--text-muted); }
.home-hero-search-btn {
	flex: 0 0 auto;
	border: 0;
	cursor: pointer;
	background: var(--harvest-accent);
	color: var(--harvest-accent-contrast);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 12px 22px;
	border-radius: 999px;
	transition: opacity 0.2s ease;
}
.home-hero-search-btn:hover { opacity: 0.9; }
.home-hero-trending {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.home-hero-trending-label { font-weight: 700; font-size: 14px; color: var(--text); }
.home-hero-trending-pill {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 999px;
	background: var(--bg-alt);
	color: var(--text);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.home-hero-trending-pill:hover { background: var(--primary); color: #fff; }

@media (max-width: 880px) {
	.home-hero { grid-template-columns: 1fr; min-height: 0; }
	.home-hero-media { min-height: 260px; clip-path: ellipse(140% 100% at 50% 0%); }
	.home-hero-content { padding: 32px 24px 44px; max-width: none; }
}
@media (max-width: 520px) {
	.home-hero-search { flex-wrap: wrap; border-radius: 20px; padding: 12px; }
	.home-hero-search-input { width: 100%; padding: 4px 6px 10px; }
	.home-hero-search-btn { width: 100%; }
}

/* ============ Where to Stay hub ============ */
.wts-hub-hero { background: var(--bg-alt); padding: 48px 0 44px; }
.wts-hub-title { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 46px); margin: 14px 0 10px; }
.wts-hub-intro { font-size: 18px; line-height: 1.6; color: var(--text-muted); max-width: 640px; margin: 0; }
.wts-hub-body { padding: 48px 0 24px; }
.wts-hub-country { margin-bottom: 48px; }
.wts-hub-country-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 22px; }
.wts-hub-country-name { font-family: var(--font-heading); font-size: 26px; margin: 0; }
.wts-hub-country-link { color: var(--primary); font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap; }
.wts-hub-country-link:hover { text-decoration: underline; }
.wts-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wts-hub-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.wts-hub-card-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.wts-hub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.wts-hub-card:hover .wts-hub-card-img img { transform: scale(1.05); }
.wts-hub-card-fallback { display: block; width: 100%; height: 100%; background: var(--primary); opacity: 0.35; }
.wts-hub-card-body { padding: 14px 16px 18px; }
.wts-hub-card-rating { margin-bottom: 6px; }
.wts-hub-card-title { font-family: var(--font-heading); font-size: 17px; line-height: 1.3; margin: 0 0 6px; }
.wts-hub-card-title a { color: var(--text); text-decoration: none; }
.wts-hub-card-title a:hover { color: var(--primary); }
.wts-hub-card-loc { color: var(--text-muted); font-size: 13px; margin: 0; }

@media (max-width: 860px) {
	.wts-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.wts-hub-grid { grid-template-columns: 1fr; }
}

.single-recipe-title { font-size: 34px; }
.single-recipe-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.single-recipe-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.single-recipe-content { font-size: 16px; }
.single-recipe-content p { margin: 0 0 1.2em; }
.single-recipe-footer { margin: 40px 0; }
.related-recipes { margin-top: 48px; }

/* Comments */
.comments-area { margin-top: 48px; }
.comments-title, .comment-reply-title {
	font-family: var(--font-heading);
	font-size: 22px;
	margin-bottom: 24px;
}
.comment-list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}
.comment-list .comment {
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
}
.comment-list .comment:last-child { border-bottom: 0; }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-author img { border-radius: 50%; }
.comment-author .fn { font-weight: 600; color: var(--text); }
.comment-metadata { font-size: 13px; color: var(--text-muted); }
.comment-metadata a { color: var(--text-muted); }
.comment-content p { margin: 0 0 0.8em; font-size: 15px; }
.reply a {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
}

.comment-respond { margin-top: 32px; }
.comment-notes { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.comment-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--text);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	max-width: 480px;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--card-bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	transition: border-color 0.2s;
}
.comment-form textarea {
	max-width: 100%;
	min-height: 140px;
	resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.12);
}
.comment-form p { margin-bottom: 16px; }
.comment-form .form-submit { margin-top: 8px; }
.comment-form .submit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 28px;
	background: var(--harvest-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.comment-form .submit:hover { background: var(--primary); }
.comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.comment-form .comment-form-cookies-consent input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
}
.comment-form .comment-form-cookies-consent label {
	display: inline;
	font-weight: 400;
	font-size: 13px;
	color: var(--text-muted);
}

.widget { margin-bottom: 32px; }
.widget-title { font-size: 16px; }

/* Sidebar Plan Your Trip */
.sidebar-plan-trip { margin-top: 32px; }
.plan-trip-list { display: flex; flex-direction: column; gap: 0; }
.plan-trip-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	transition: transform 0.2s, background 0.2s;
}
.plan-trip-item:first-child { padding-top: 0; }
.plan-trip-item:last-child { border-bottom: 0; }
.plan-trip-item:hover { transform: translateX(4px); }
.plan-trip-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.plan-trip-icon svg {
	width: 26px;
	height: 26px;
	color: var(--text);
}
.plan-trip-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}
.plan-trip-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}
.plan-trip-via {
	font-size: 12px;
	color: var(--text-muted);
}
.plan-trip-arrow {
	font-size: 14px;
	color: var(--text-muted);
	flex-shrink: 0;
	transition: color 0.15s, transform 0.15s;
}
.plan-trip-item:hover .plan-trip-label { color: var(--primary); }
.plan-trip-item:hover .plan-trip-arrow { color: var(--primary); transform: translateX(3px); }

/* Sidebar recent posts */
.sidebar-recent-posts { margin-top: 32px; }
.sidebar-posts-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-post-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	transition: transform 0.2s;
}
.sidebar-post-item:first-child { padding-top: 0; }
.sidebar-post-item:last-child { border-bottom: 0; }
.sidebar-post-item:hover { transform: translateX(4px); }
.sidebar-post-num {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	opacity: 0.35;
	flex-shrink: 0;
	min-width: 32px;
}
.sidebar-post-item:hover .sidebar-post-num { opacity: 1; }
.sidebar-post-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.sidebar-post-cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.sidebar-post-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sidebar-post-item:hover .sidebar-post-title { color: var(--primary); }

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--harvest-accent); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* =========================================================
   Archive post list — horizontal cards
   ========================================================= */
.archive-post-list {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin-bottom: 40px;
}
.archive-post-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
	border-bottom: 1px solid var(--border);
	padding-bottom: 36px;
}
.archive-post-card:last-child { border-bottom: 0; }

.archive-post-thumb {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.archive-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.archive-post-thumb:hover img { transform: scale(1.04); }
.archive-post-thumb-fallback {
	width: 100%;
	height: 100%;
	background: var(--bg-alt);
}

.archive-post-body { padding: 8px 0; }
.archive-post-title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 8px 0 10px;
}
.archive-post-title a { color: var(--text); }
.archive-post-title a:hover { color: var(--harvest-accent); }

.archive-post-meta {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}
.archive-post-sep { opacity: 0.5; }

.archive-post-excerpt {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 16px;
}

.archive-read-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	color: var(--harvest-accent);
	border: 1.5px solid var(--harvest-accent);
	border-radius: 999px;
	padding: 7px 18px;
	transition: background 0.15s, color 0.15s;
}
.archive-read-more:hover {
	background: var(--harvest-accent);
	color: #fff;
}

/* =========================================================
   Sidebar — search + Hot Categories
   ========================================================= */
.widget-area { position: sticky; top: 80px; }

.sidebar-widget { margin-bottom: 36px; }

.sidebar-search-form {
	display: flex;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1.5px solid var(--border);
}
.sidebar-search-field {
	flex: 1;
	border: 0;
	padding: 11px 14px;
	font-size: 14px;
	background: var(--bg);
	color: var(--text);
	outline: none;
}
.sidebar-search-field::placeholder { color: var(--text-muted); }
.sidebar-search-btn {
	background: var(--harvest-accent);
	color: #fff;
	border: 0;
	padding: 11px 18px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.15s;
}
.sidebar-search-btn:hover { opacity: 0.88; }

.sidebar-widget-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
}

.hot-categories-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.hot-cat-tile {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.hot-cat-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.hot-cat-tile:hover img { transform: scale(1.06); }
.hot-cat-fallback {
	width: 100%;
	height: 100%;
	background: var(--bg-alt);
}
.hot-cat-label {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 10px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.hot-cat-arrow {
	font-size: 14px;
	opacity: 0.85;
}

/* =========================================================
   Social share buttons
   ========================================================= */
.social-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 24px;
}
.social-share-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-muted);
	margin-right: 4px;
}
.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	transition: opacity 0.15s;
}
.share-btn:hover { opacity: 0.85; color: #fff; }
.share-facebook  { background: #1877f2; }
.share-twitter   { background: #1da1f2; }
.share-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-linkedin  { background: #0a66c2; }
.share-pinterest { background: #e60023; }
.share-whatsapp  { background: #25d366; }
.share-youtube   { background: #ff0000; }

/* =========================================================
   Destination guide page
   ========================================================= */
.dest-hero {
	position: relative;
	background: linear-gradient(135deg, var(--bg-inverse) 0%, var(--bg-inverse-alt) 100%);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 72px 0 88px;
}
.dest-hero.has-image { background-size: cover; }
.dest-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.dest-breadcrumb { color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.dest-breadcrumb a { color: rgba(255,255,255,0.8); }
.dest-breadcrumb a:hover { color: #fff; }
.dest-breadcrumb .breadcrumb-current { color: #fff; }
.dest-hero-eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
	font-weight: 600;
	color: var(--harvest-accent);
	margin-bottom: 6px;
}
.dest-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(44px, 7vw, 56px);
	font-weight: 600;
	line-height: 1.02;
	margin: 0 0 16px;
	color: #fff;
}
.dest-hero-lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.9); margin: 0 0 26px; max-width: 560px; }

.dest-guide-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.dest-guide-chips-label {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255,255,255,0.6);
	margin-right: 4px;
}
.dest-guide-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.dest-guide-chip:hover { background: var(--harvest-accent); color: #fff; }

.destination-body { padding: 48px 0 8px; }
.dest-section { margin-bottom: 52px; scroll-margin-top: 90px; }
.dest-empty { font-size: 16px; color: var(--text-muted); padding: 12px 0 24px; }

/* Best places card grid */
.dest-card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.dest-card-media {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
}
.dest-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.dest-card-media:hover img { transform: scale(1.05); }
.dest-card-media-fallback { position: absolute; inset: 0; display: block; }
.dest-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 55%);
}
.dest-card-title {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 34px;
	z-index: 1;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.25;
}
.dest-card-loc { position: absolute; left: 16px; bottom: 14px; z-index: 1; color: rgba(255,255,255,0.85); font-size: 12px; }

/* Explore chips */
.dest-explore-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.dest-explore-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	transition: border-color 0.15s ease, color 0.15s ease;
}
.dest-explore-chip::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--chip-color, var(--primary));
}
.dest-explore-chip:hover { border-color: var(--chip-color, var(--primary)); color: var(--chip-color, var(--primary)); }
.dest-explore-chip.is-place::before { display: none; }
.dest-explore-chip.is-place:hover { border-color: var(--primary); color: var(--primary); }
.dest-explore-pin { color: var(--primary); font-size: 8px; line-height: 1; }
.dest-explore-chip.is-place::before { display: none; }
.dest-explore-chip.is-place:hover { border-color: var(--primary); color: var(--primary); }
.dest-explore-pin { color: var(--primary); font-size: 8px; line-height: 1; }

/* You have to see */
.dest-see-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; }
.dest-see-featured {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.dest-see-featured img { width: 100%; height: 100%; object-fit: cover; }
.dest-see-featured::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 55%); }
.dest-see-featured-title {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 18px;
	z-index: 1;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.25;
}
.dest-see-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.dest-see-item { display: flex; gap: 14px; align-items: center; }
.dest-see-thumb { width: 78px; height: 78px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.dest-see-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dest-see-body { min-width: 0; }
.dest-see-title { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 15px; line-height: 1.35; margin-top: 6px; color: var(--text); }
.dest-see-title:hover { color: var(--primary); }

/* Long-form prose */
.dest-longform { max-width: 760px; margin-left: auto; margin-right: auto; }
.dest-prose { font-size: 16px; line-height: 1.75; color: var(--text); }
.dest-prose p { margin: 0 0 1.2em; }
.dest-prose h2, .dest-prose h3 { font-family: var(--font-heading); margin: 1.4em 0 0.5em; }
.dest-prose a { color: var(--primary); text-decoration: underline; }

/* Plan your trip — affiliate resources */
.dest-affiliate-note { font-size: 14px; color: var(--text-muted); margin: -8px 0 22px; max-width: 640px; }
.affiliate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.affiliate-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border-radius: var(--radius);
	background: var(--card-bg);
	border: 1px solid var(--border);
	transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.affiliate-card:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.affiliate-icon {
	line-height: 1;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.affiliate-icon svg {
	width: 28px;
	height: 28px;
	color: var(--text);
}
.affiliate-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.affiliate-text strong { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.2; }
.affiliate-text small { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.affiliate-arrow { color: var(--primary); font-size: 17px; flex-shrink: 0; }

@media (max-width: 860px) {
	.affiliate-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.affiliate-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.dest-faq { max-width: 760px; margin-left: auto; margin-right: auto; }
.dest-faq-item { border-bottom: 1px solid var(--border); padding: 4px 0; }
.dest-faq-q {
	cursor: pointer;
	list-style: none;
	padding: 16px 0;
	font-weight: 600;
	font-size: 16px;
	position: relative;
	padding-right: 32px;
}
.dest-faq-q::-webkit-details-marker { display: none; }
.dest-faq-q::after {
	content: "+";
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: var(--primary);
	line-height: 1;
}
.dest-faq-item[open] .dest-faq-q::after { content: "\2212"; }
.dest-faq-a { margin: 0 0 16px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) {
	.dest-card-grid { grid-template-columns: 1fr 1fr; }
	.dest-see-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.dest-card-grid { grid-template-columns: 1fr 1fr; }
	.dest-hero { padding: 48px 0 60px; }
}

/* =========================================================
   Destination + Category filtered page (e.g. "Where to Stay in Bali")
   ========================================================= */
.dest-cat-page { background: var(--bg); }

/* Hero — split layout: text left, image right */
.dest-cat-hero {
	background: var(--bg-alt);
	border-bottom: 1px solid var(--border);
	padding: 48px 0 56px;
}
.dest-cat-hero.has-cover {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 72px 0 88px;
	border-bottom: none;
}
.dest-cat-hero.has-cover .dest-cat-hero-inner {
	display: block;
	max-width: 720px;
}
.dest-cat-hero.has-cover .breadcrumb,
.dest-cat-hero.has-cover .breadcrumb a { color: rgba(255,255,255,0.8); }
.dest-cat-hero.has-cover .breadcrumb a:hover { color: #fff; }
.dest-cat-hero.has-cover .breadcrumb .breadcrumb-current { color: #fff; }
.dest-cat-hero.has-cover .dest-cat-hero-title { color: #fff; }
.dest-cat-hero.has-cover .dest-cat-hero-intro { color: rgba(255,255,255,0.9); }
.dest-cat-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.dest-cat-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.15;
	margin: 16px 0;
	color: var(--text);
}
.dest-cat-hero-intro {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-muted);
	margin: 0;
}

/* Area pills */
.dest-cat-pills {
	background: var(--bg-alt);
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
}
.dest-cat-pills-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.dest-cat-pills-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	white-space: nowrap;
}
.dest-cat-pills-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.dest-cat-pill {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 20px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s, transform 0.15s;
}
.dest-cat-pill:hover {
	background: var(--primary-hover);
	color: #fff;
	transform: translateY(-1px);
}

/* "In this guide" toggle */
.dest-cat-guide-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	margin-top: 16px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	transition: background 0.15s;
}
.dest-cat-guide-toggle:hover { background: var(--bg-alt); }
.dest-cat-guide-chevron {
	font-size: 10px;
	transition: transform 0.2s;
}
.dest-cat-guide-toggle[aria-expanded="true"] .dest-cat-guide-chevron {
	transform: rotate(180deg);
}

/* Body */
.dest-cat-body { padding: 48px 0 16px; }

/* Area sections */
.dest-cat-area-section {
	margin-bottom: 56px;
	scroll-margin-top: 90px;
}
.dest-cat-area-header {
	text-align: center;
	margin-bottom: 28px;
	position: relative;
}
.dest-cat-area-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin: 0 0 4px;
}
.dest-cat-area-title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: var(--text);
	margin: 0;
}
.dest-cat-area-nav {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}
.dest-cat-scroll-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--text);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}
.dest-cat-scroll-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* Horizontal scrolling card track */
.dest-cat-cards-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
}
.dest-cat-cards-track::-webkit-scrollbar { height: 6px; }
.dest-cat-cards-track::-webkit-scrollbar-track { background: transparent; }
.dest-cat-cards-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Individual card */
.dest-cat-card {
	flex: 0 0 280px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.2s;
}
.dest-cat-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	transform: translateY(-2px);
}
.dest-cat-card-img {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.dest-cat-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.dest-cat-card:hover .dest-cat-card-img img { transform: scale(1.05); }
.dest-cat-card-fallback {
	display: block;
	width: 100%;
	height: 100%;
}
.dest-cat-card-rating { margin: 14px 16px -2px; }
.dest-cat-card-rating .hotel-star { font-size: 15px; }
.dest-cat-card-rating .hotel-stars-num { font-size: 13px; }
.dest-cat-card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 10px 16px 8px;
	color: var(--text);
}
.dest-cat-card-title a { color: inherit; }
.dest-cat-card-excerpt {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text-muted);
	margin: 0 16px 16px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.dest-cat-card-btn {
	display: block;
	text-align: center;
	padding: 13px 16px;
	margin: 0 16px 16px;
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	transition: background 0.15s;
}
.dest-cat-card-btn:hover {
	background: var(--primary-hover);
	color: #fff;
}

@media (max-width: 768px) {
	.dest-cat-hero-inner { grid-template-columns: 1fr; gap: 24px; }
	.dest-cat-hero-img { max-height: 280px; }
	.dest-cat-card { flex: 0 0 260px; }
}
@media (max-width: 520px) {
	.dest-cat-hero { padding: 32px 0 40px; }
	.dest-cat-card { flex: 0 0 240px; }
}

/* =========================================================
   Travel Tips category page
   ========================================================= */
.tips-hero {
	text-align: center;
	padding: 64px 0 48px;
	border-bottom: 1px solid var(--border);
}
.tips-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(40px, 6vw, 60px);
	font-weight: 600;
	margin: 0 0 16px;
}
.tips-hero-subtitle {
	max-width: 480px;
	margin: 0 auto 28px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-muted);
}
.tips-pill-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--bg-alt);
	padding: 14px 24px;
	border-radius: 12px;
	max-width: 640px;
	margin: 0 auto;
}
.tips-pill-label {
	font-size: 14px;
	color: var(--text-muted);
	margin-right: 4px;
}
.tips-pill {
	display: inline-block;
	padding: 6px 16px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	background: var(--card-bg);
	transition: background 0.15s, border-color 0.15s;
}
.tips-pill:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.tips-body { padding: 48px 0 16px; }

.tips-section { margin-bottom: 48px; }
.tips-section-title {
	font-family: var(--font-heading);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.tips-section-arrow {
	font-size: 18px;
	color: var(--text-muted);
	transition: transform 0.2s;
}
.tips-section-title:hover .tips-section-arrow { transform: translateX(4px); }

.tips-cards-track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.tips-card {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	text-decoration: none;
}
.tips-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.tips-card:hover img { transform: scale(1.06); }
.tips-card-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--bg-alt);
}
.tips-card-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 16px;
	background: linear-gradient(transparent, rgba(0,0,0,0.55));
	color: #fff;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.tips-seo {
	max-width: 640px;
	margin: 32px 0 48px;
}
.tips-seo-title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 12px;
}
.tips-seo p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-muted);
}

@media (max-width: 768px) {
	.tips-cards-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.tips-hero { padding: 40px 0 32px; }
	.tips-cards-track { grid-template-columns: 1fr 1fr; gap: 12px; }
	.tips-card-title { font-size: 13px; padding: 10px 12px; }
}

/* =========================================================
   Travel Guides listing page
   ========================================================= */
.tg-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 56px 0; text-align: center; }
.tg-hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 12px;
	font-weight: 700;
	color: var(--harvest-accent);
	margin-bottom: 8px;
}
.tg-hero-title { font-family: var(--font-heading); font-size: clamp(38px, 5.5vw, 52px); font-weight: 600; margin: 0 0 12px; }
.tg-hero-lead { max-width: 620px; margin: 0 auto; font-size: 17px; line-height: 1.6; color: var(--text-muted); }

.travel-guides-body { padding: 48px 0 8px; }
.tg-section { margin-bottom: 48px; }
.tg-longform { max-width: 760px; }

.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guide-grid-3 { grid-template-columns: repeat(3, 1fr); }

.guide-card {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--bg-alt);
}
.guide-card-media { position: absolute; inset: 0; display: block; }
.guide-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.guide-card:hover .guide-card-media img { transform: scale(1.05); }
.guide-card-fallback { position: absolute; inset: 0; display: block; }
.guide-card-title {
	position: absolute;
	top: 14px;
	left: 14px;
	max-width: 80%;
	z-index: 1;
	background: var(--card-bg);
	color: var(--text);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.28;
	padding: 9px 13px;
	border-radius: 9px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

@media (max-width: 1000px) {
	.guide-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.guide-grid, .guide-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
	.guide-grid, .guide-grid-3 { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--bg-inverse); color: var(--text-inverse-muted); padding-top: 56px; }

.footer-main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-inverse);
}

/* Brand column */
.footer-site-name {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: 14px;
}
.footer-brand-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: var(--text-inverse-muted);
	margin: 0 0 20px;
}
.footer-brand-desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-inverse-muted);
	margin: 0;
	max-width: 280px;
}
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: var(--text-inverse-muted);
	transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover { transform: scale(1.15); }
.footer-social-link.social-instagram:hover  { background: #E1306C; color: #fff; }
.footer-social-link.social-youtube:hover    { background: #FF0000; color: #fff; }
.footer-social-link.social-pinterest:hover  { background: #E60023; color: #fff; }
.footer-social-link.social-facebook:hover   { background: #1877F2; color: #fff; }
.footer-social-link.social-twitter:hover    { background: #000000; color: #fff; }
.footer-social-link.social-linkedin:hover   { background: #0A66C2; color: #fff; }

/* Link columns */
.footer-col-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
}
.footer-col-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-col-menu a { font-size: 13px; color: var(--text-inverse-muted); transition: color 0.15s ease; }
.footer-col-menu a:hover { color: #fff; }

/* Follow grid */
.footer-follow-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.footer-follow-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--border-inverse);
	border-radius: 6px;
	padding: 8px 6px;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-inverse-muted);
	transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.footer-follow-btn svg { width: 14px; height: 14px; }
.footer-follow-btn:hover { transform: translateY(-2px); color: #fff; }
.footer-follow-btn[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; }
.footer-follow-btn[aria-label="Twitter"]:hover   { background: #000000; border-color: #000000; }
.footer-follow-btn[aria-label="Instagram"]:hover  { background: #E1306C; border-color: #E1306C; }
.footer-follow-btn[aria-label="YouTube"]:hover    { background: #FF0000; border-color: #FF0000; }
.footer-follow-btn[aria-label="LinkedIn"]:hover   { background: #0A66C2; border-color: #0A66C2; }
.footer-follow-btn[aria-label="Pinterest"]:hover  { background: #E60023; border-color: #E60023; }

.footer-bottom {
	border-top: 1px solid var(--border-inverse);
	padding: 18px 0;
}
.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-copyright { margin: 0; }
.footer-bottom-menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-bottom-menu a { color: var(--text-inverse-muted); }
.footer-bottom-menu a:hover { color: #fff; }
.footer-legal-menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-legal-menu a { color: var(--text-inverse-muted); font-size: 13px; }
.footer-legal-menu a:hover { color: #fff; }

/* =========================================================
   FAQ page
   ========================================================= */
.faq-page { padding-bottom: 0; }

.faq-hero {
	background: linear-gradient(135deg, var(--bg-inverse) 0%, var(--bg-inverse-alt) 100%);
	padding: 72px 0 56px;
	text-align: center;
}
.faq-hero-eyebrow {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--harvest-accent);
	margin: 0 0 12px;
}
.faq-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(28px, 5vw, 42px);
	color: var(--text-inverse);
	margin: 0 0 16px;
}
.faq-hero-lead {
	font-size: 17px;
	color: var(--text-inverse-muted);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

.faq-body {
	padding: 48px 0 64px;
}

.faq-section {
	margin-bottom: 48px;
}
.faq-section-title {
	font-family: var(--font-heading);
	font-size: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--border);
}
.faq-section-icon {
	font-size: 24px;
	line-height: 1;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.faq-item {
	border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 0; }

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 4px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
	content: "+";
	font-size: 22px;
	font-weight: 400;
	color: var(--text-muted);
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
	content: "\2212";
	color: var(--harvest-accent);
}
.faq-question:hover { color: var(--primary); }

.faq-answer {
	padding: 0 4px 20px;
}
.faq-answer p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-muted);
	max-width: 720px;
}

.faq-cta-section {
	text-align: center;
	background: var(--bg-alt);
	border-radius: var(--radius);
	padding: 48px 32px;
	margin-top: 16px;
}
.faq-cta-title {
	font-family: var(--font-heading);
	font-size: 26px;
	margin: 0 0 10px;
}
.faq-cta-text {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0 0 24px;
}
.faq-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 14px 32px;
	background: var(--harvest-accent);
	color: #fff;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s;
}
.faq-cta-btn:hover { background: var(--primary); color: #fff; }

@media (max-width: 600px) {
	.faq-hero { padding: 48px 0 36px; }
	.faq-hero-title { font-size: 26px; }
	.faq-section-title { font-size: 18px; }
	.faq-question { font-size: 15px; padding: 14px 4px; }
	.faq-cta-section { padding: 32px 20px; }
}

/* =========================================================
   Floating buttons
   ========================================================= */
.dark-mode-toggle, .back-to-top {
	position: fixed;
	right: 24px;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-size: 18px;
	cursor: pointer;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 60;
}
.dark-mode-toggle { bottom: 24px; }
.back-to-top { bottom: 80px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

.dark-mode-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .dark-mode-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .dark-mode-toggle .icon-moon { display: inline; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.hero-carousel-track { grid-template-columns: repeat(3, 1fr); }
	.footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 960px) {
	.card-grid, .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.latest-recipes-layout, .archive-layout, .single-layout, .recipe-rails-layout {
		grid-template-columns: 1fr;
	}
	.latest-two-col { grid-template-columns: 1fr; }
	.weekly-best-layout { grid-template-columns: 1fr; }
	.category-circles-track { justify-content: flex-start; }
	.destinations-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
	.destinations-strip-track { width: 100%; }
	.widget-area { position: static; }
}

@media (max-width: 640px) {
	.archive-post-card { grid-template-columns: 1fr; }
	.archive-post-thumb { aspect-ratio: 16 / 9; }
	.hot-categories-grid { grid-template-columns: repeat(2, 1fr); }
	.social-share { gap: 6px; }
	.share-btn { padding: 6px 12px; font-size: 11px; }
}

@media (max-width: 720px) {
	.top-bar-nav { display: none; }
	.menu-toggle { display: flex; }
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		display: none;
		z-index: 100;
	}
	.main-navigation.is-open { display: block; }
	.primary-menu { flex-direction: column; gap: 0; padding: 12px 24px 20px; }
	.primary-menu ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 12px; }
	.site-header-inner { flex-wrap: wrap; }

	/* Mega-menu becomes an accordion on mobile */
	.menu-item-has-megamenu { position: static; }
	.mega-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding-top: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.menu-item-has-megamenu.is-open > .mega-menu { max-height: 1200px; }
	.mega-menu-grid { grid-template-columns: 1fr; gap: 18px; padding: 8px 0 16px; }
	.mega-country-grid { grid-template-columns: 1fr 1fr; }
	.mega-menu-cta { border-radius: 8px; margin-bottom: 8px; }
	.menu-caret { margin-left: auto; }
	.primary-menu > li > a { display: flex; align-items: center; padding: 12px 0; }
	.header-social { display: none; }

	.card-grid, .card-grid-3 { grid-template-columns: 1fr; }
	.footer-main { grid-template-columns: 1fr; }
	.hero-carousel-track { grid-template-columns: repeat(2, 1fr); }
	.newsletter-cta-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
	.hero-carousel-track { grid-template-columns: repeat(2, 1fr); }
	.aside-social-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   About Us page
   ========================================================= */

/* --- Shared eyebrow --- */
.about-eyebrow {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin: 0 0 10px;
}
.about-eyebrow--accent { color: var(--primary); }

/* --- Hero --- */
.about-hero {
	padding: 72px 0 56px;
	background: var(--bg);
}
.about-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.about-hero-name {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	margin: 0 0 20px;
}
.about-hero-bio {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-muted);
	margin: 0 0 16px;
}
.about-quick-links {
	margin-top: 28px;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
.about-quick-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	text-decoration: none;
	color: var(--text);
	font-size: 0.95rem;
	font-weight: 500;
	border-bottom: 1px solid var(--border);
	transition: background 0.18s ease;
}
.about-quick-link:last-child { border-bottom: none; }
.about-quick-link:hover { background: var(--bg-alt); color: var(--primary); }
.about-quick-icon { font-size: 1.1rem; }

.about-hero-photo {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}
.about-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-hero-photo--placeholder {
	background: var(--bg-alt);
	border: 2px dashed var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-hero-stats-row {
	display: flex;
	gap: 24px;
	margin-top: 20px;
}
.about-stat {
	flex: 1;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}
.about-stat-number {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.6rem;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 4px;
}
.about-stat-label {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* --- Collaborate --- */
.about-collab {
	padding: 72px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.about-collab-inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 60px;
	align-items: center;
}
.about-collab-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin: 0 0 20px;
}
.about-stats-list {
	margin: 20px 0;
	padding: 0;
	list-style: none;
}
.about-stats-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	color: var(--text-muted);
	line-height: 1.65;
}
.about-stats-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 0.55em;
	top: 0.45em;
}
.about-inline-link { color: var(--primary); font-weight: 600; text-decoration: underline; }

.about-collab-photo-wrap {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}
.about-collab-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.about-collab-photo-placeholder {
	width: 100%;
	height: 100%;
	min-height: 320px;
	background: linear-gradient(135deg, var(--bg) 0%, var(--border) 100%);
	border: 2px dashed var(--border);
	border-radius: 16px;
}

/* --- Brands --- */
.about-brands {
	padding: 56px 0;
	border-bottom: 1px solid var(--border);
}
.about-brands-title {
	text-align: center;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 32px;
	color: var(--text-muted);
}
.about-brands-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.about-brand-logo {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 20px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80px;
}
.about-brand-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}

/* --- FAQ --- */
.about-faq { padding: 72px 0; border-bottom: 1px solid var(--border); }
.about-faq-inner { max-width: 780px; margin: 0 auto; }
.about-faq-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 36px;
}
.about-faq-item { border-bottom: 1px solid var(--border); }
.about-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: none;
	padding: 20px 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	text-align: left;
}
.about-faq-q:hover { color: var(--primary); }
.about-faq-chevron { flex-shrink: 0; transition: transform 0.22s ease; }
.about-faq-item.is-open .about-faq-chevron { transform: rotate(180deg); }
.about-faq-a { padding: 0 0 20px; color: var(--text-muted); line-height: 1.75; }
.about-faq-a p { margin: 0; }

/* --- Social proof --- */
.about-social-proof {
	padding: 72px 0;
	border-bottom: 1px solid var(--border);
	background: var(--bg-alt);
}
.about-sp-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.about-sp-heading {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin: 0 0 24px;
}
.about-media-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.about-media-link {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
}
.about-media-link strong { font-size: 0.9rem; color: var(--text); }
.about-media-link span { font-size: 0.8rem; color: var(--text-muted); }
.about-media-link:hover strong { color: var(--primary); }

.about-testimonial {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px;
	margin: 0 0 20px;
}
.about-testimonial p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text);
	font-style: italic;
	margin: 0 0 16px;
}
.about-testimonial footer {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.about-testimonial footer strong { font-size: 0.9rem; }
.about-testimonial footer span { font-size: 0.8rem; color: var(--text-muted); }

/* --- Contact form --- */
.about-contact {
	padding: 72px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
}
.about-contact-inner { max-width: 720px; margin: 0 auto; }
.about-contact-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	text-align: center;
	margin: 0 0 12px;
}
.about-contact-sub {
	text-align: center;
	color: var(--text-muted);
	margin: 0 0 40px;
}
.about-contact-form { display: flex; flex-direction: column; gap: 20px; }
.about-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-form-field { display: flex; flex-direction: column; gap: 6px; }
.about-form-field label { font-size: 0.9rem; font-weight: 600; }
.about-form-field label span { color: var(--primary); }
.about-form-field input,
.about-form-field select,
.about-form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--card-bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: border-color 0.18s;
}
.about-form-field input:focus,
.about-form-field select:focus,
.about-form-field textarea:focus {
	outline: none;
	border-color: var(--primary);
}
.about-form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.about-form-check input { margin-top: 3px; flex-shrink: 0; }
.about-form-check label { font-size: 0.88rem; color: var(--text-muted); }
.about-form-submit {
	align-self: flex-start;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.18s;
}
.about-form-submit:hover { background: var(--primary-hover); }
.about-form-message { font-size: 0.9rem; padding: 4px 0; }
.about-form-message.is-success { color: #16a34a; }
.about-form-message.is-error { color: #dc2626; }

/* --- Responsive --- */
@media (max-width: 900px) {
	.about-hero-inner,
	.about-collab-inner,
	.about-sp-inner { grid-template-columns: 1fr; gap: 36px; }
	.about-collab-inner { grid-template-columns: 1fr; }
	.about-collab-image { display: none; }
	.about-brands-grid { grid-template-columns: repeat(3, 1fr); }
	.about-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.about-hero { padding: 40px 0 32px; }
	.about-hero-stats-row { flex-direction: column; gap: 12px; }
	.about-brands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Legal pages  (privacy-policy, terms-of-service, etc.)
   ========================================================= */
.legal-hero {
	background: var(--bg-alt);
	border-bottom: 1px solid var(--border);
	padding: 52px 0 40px;
}
.legal-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--primary);
	margin: 0 0 10px;
}
.legal-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin: 0 0 10px;
	line-height: 1.15;
}
.legal-updated {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
}
.legal-body {
	padding: 56px 0 80px;
}
.legal-content {
	max-width: 720px;
}
.legal-content h2,
.legal-content h3 {
	font-family: var(--font-heading);
	margin: 2em 0 0.6em;
}
.legal-content h2 { font-size: 1.35rem; }
.legal-content h3 { font-size: 1.1rem; }
.legal-content p,
.legal-content li {
	color: var(--text-muted);
	line-height: 1.8;
	margin: 0 0 1em;
}
.legal-content ul,
.legal-content ol {
	padding-left: 1.4em;
	margin: 0 0 1.2em;
}
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-hover); }

/* About page photo stub (no featured image set) */
.about-photo-stub {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	height: 100%;
	min-height: 380px;
	color: var(--text-muted);
	text-align: center;
	padding: 32px;
}
.about-photo-stub p {
	font-size: 0.82rem;
	line-height: 1.5;
	max-width: 180px;
	opacity: 0.6;
}
/* SVG icons in quick-links */
.about-quick-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: var(--primary);
}

/* =========================================================
   Destinations mega-menu — region switcher layout
   ========================================================= */
.mega-dest-layout {
	display: grid;
	grid-template-columns: 200px 1fr 300px;
	gap: 0;
	padding: 0;
	min-height: 380px;
}

/* Left: region tabs */
.mega-dest-regions {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 24px 20px 24px 0;
	border-right: 1px solid var(--border);
}
.mega-dest-region-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	background: none;
	border: none;
	border-radius: 10px;
	padding: 12px 16px;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	text-align: left;
	transition: background 0.15s ease, color 0.15s ease;
}
.mega-dest-region-tab:hover,
.mega-dest-region-tab.is-active {
	background: var(--bg-alt);
	color: var(--primary);
}
.mega-dest-region-name { flex: 1; }
.mega-dest-region-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
}
.mega-dest-region-chevron {
	font-size: 1.2rem;
	color: var(--text-muted);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.mega-dest-region-tab.is-active .mega-dest-region-chevron {
	opacity: 1;
	transform: translateX(0);
}

/* Middle: country panels */
.mega-dest-panels {
	padding: 24px 32px;
	position: relative;
}
.mega-dest-panel { display: none; }
.mega-dest-panel.is-active { display: block; animation: megaFadeIn 0.2s ease; }
@keyframes megaFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}
.mega-dest-panel-title {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	margin-bottom: 18px;
}
.mega-dest-panel-title:hover { color: var(--primary); }
.mega-dest-panel-arrow { font-size: 1.3rem; color: var(--text-muted); }

.mega-dest-countries {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.mega-dest-country {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	background: var(--bg-alt);
	border-radius: 10px;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	font-size: 0.92rem;
	transition: background 0.15s ease, transform 0.15s ease;
}
.mega-dest-country:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-1px);
}
.mega-dest-country-flag { font-size: 1.15rem; line-height: 1; }
.mega-dest-country-name { flex: 1; }
.mega-dest-badge {
	position: absolute;
	top: -6px;
	right: -4px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 2px 6px;
	border-radius: 5px;
	line-height: 1.4;
}
.mega-dest-badge--hot { background: #d8ede8; color: #1a7f6b; }
.mega-dest-badge--new { background: #f6e2d0; color: #c06a2c; }
.mega-dest-empty {
	color: var(--text-muted);
	font-style: italic;
	font-size: 0.95rem;
}

/* Right: hotel recommendations + promo */
.mega-dest-side {
	padding: 24px 0 24px 32px;
	border-left: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mega-dest-side-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 4px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.mega-dest-hotels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mega-dest-hotel-pill {
	background: var(--bg-alt);
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}
.mega-dest-hotel-pill:hover { background: var(--primary); color: #fff; }

.mega-dest-promo {
	margin-top: auto;
	background: var(--bg-alt);
	border-radius: 12px;
	padding: 20px;
}
.mega-dest-promo-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary);
	margin: 0 0 8px;
}
.mega-dest-promo-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	margin: 0 0 8px;
}
.mega-dest-promo-text {
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
	.mega-dest-layout { grid-template-columns: 1fr; min-height: 0; }
	.mega-dest-regions {
		flex-direction: row;
		flex-wrap: wrap;
		border-right: none;
		border-bottom: 1px solid var(--border);
		padding: 12px 0;
	}
	.mega-dest-region-tab { width: auto; }
	.mega-dest-region-chevron { display: none; }
	.mega-dest-panels { padding: 20px 0; }
	.mega-dest-countries { grid-template-columns: 1fr 1fr; }
	.mega-dest-side {
		border-left: none;
		border-top: 1px solid var(--border);
		padding: 20px 0 0;
	}
}

/* =========================================================
   Reading progress bar
   ========================================================= */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 9999;
	background: transparent;
	pointer-events: none;
}
.reading-progress-bar {
	height: 100%;
	width: 0%;
	background: var(--harvest-accent);
	transition: width 0.1s linear;
}

/* =========================================================
   Share: copy link button + WhatsApp
   ========================================================= */
.share-btn.share-copy {
	cursor: pointer;
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--text);
	font: inherit;
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 6px;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.share-btn.share-copy:hover { border-color: var(--primary); }
.share-btn.share-copy.is-copied {
	background: var(--harvest-accent);
	color: #fff;
	border-color: var(--harvest-accent);
}
.share-btn.share-whatsapp { background: #25D366; color: #fff; }
.share-btn.share-whatsapp:hover { background: #1DA851; }

/* =========================================================
   Ad placements
   ========================================================= */
.tflii-ad {
	text-align: center;
	overflow: hidden;
}
.tflii-ad--header_below {
	background: var(--bg-alt);
	border-bottom: 1px solid var(--border);
	padding: 12px 0;
}
.tflii-ad--post_before,
.tflii-ad--post_after,
.tflii-ad--hotel_after {
	margin: 24px 0;
	padding: 16px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.tflii-ad--sidebar {
	margin-top: 24px;
	position: sticky;
	top: 80px;
}
.tflii-ad--footer_above {
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	padding: 20px 0;
}
.tflii-ad--post_mid {
	margin: 24px 0;
	text-align: center;
}

/* =========================================================
   Sticky header
   ========================================================= */
.site-header {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--bg);
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.site-header.is-sticky .site-header-inner {
	padding-top: 8px;
	padding-bottom: 8px;
}
.site-header.is-sticky .site-title,
.site-header.is-sticky .custom-logo { max-height: 32px; width: auto; }
body.has-sticky-header { padding-top: var(--header-height, 0px); }

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: var(--bg-inverse);
	color: var(--text-inverse);
	padding: 16px 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-consent-inner {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.cookie-consent-inner p { margin: 0; font-size: 14px; line-height: 1.5; flex: 1; min-width: 280px; }
.cookie-consent-inner a { color: var(--harvest-accent); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: var(--harvest-accent); color: #fff; }
.cookie-btn-decline { background: transparent; color: var(--text-inverse-muted); border: 1px solid var(--border-inverse); }

/* =========================================================
   Image lightbox
   ========================================================= */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0,0,0,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.lightbox-overlay.is-active { opacity: 1; pointer-events: auto; }
.lightbox-overlay img {
	max-width: 92vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.lightbox-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
}

/* =========================================================
   Table of contents
   ========================================================= */
.toc-wrap {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin: 0 0 28px;
}
.toc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.toc-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}
.toc-toggle {
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 13px;
	cursor: pointer;
	padding: 0;
}
.toc-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
}
.toc-list li { margin: 0; }
.toc-list a {
	display: block;
	padding: 6px 0;
	color: var(--text);
	font-size: 14px;
	border-bottom: 1px solid var(--border);
	transition: color 0.15s ease;
}
.toc-list a:hover { color: var(--harvest-accent); }
.toc-list li:last-child a { border-bottom: 0; }
.toc-list .toc-h3 { padding-left: 16px; font-size: 13px; color: var(--text-muted); }
.toc-wrap.is-collapsed .toc-list { display: none; }

/* =========================================================
   Last updated meta
   ========================================================= */
.meta-updated {
	color: var(--harvest-accent);
	font-size: 13px;
	font-weight: 500;
}

/* =========================================================
   Print stylesheet
   ========================================================= */
@media print {
	.top-bar,
	.site-header,
	.reading-progress,
	.social-share,
	.cookie-consent,
	.back-to-top,
	.dark-mode-toggle,
	.tflii-ad,
	.widget-area,
	.related-recipes,
	.newsletter-cta,
	.ebook-banner,
	.site-footer,
	.hotel-review-aside,
	.hotel-similar,
	.guest-reviews-nav,
	.hotel-map-modal,
	#comments,
	.breadcrumb,
	.header-search { display: none !important; }

	body, .site-main, .single-recipe-content {
		color: #000 !important;
		background: #fff !important;
		font-size: 12pt;
		line-height: 1.6;
	}
	.container { max-width: 100%; padding: 0; }
	.single-layout { display: block; }
	a { color: #000; text-decoration: underline; }
	a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
	a[href^="#"]::after, a[href^="javascript"]::after { content: ""; }
	img { max-width: 100% !important; page-break-inside: avoid; }
	h1, h2, h3 { page-break-after: avoid; }
}

/* =========================================================
   Shop page
   ========================================================= */
/* ── Shop Hero ───────────────────────────────────────────────── */
.shop-hero {
	position: relative;
	overflow: hidden;
	padding: 80px 0 72px;
	text-align: center;
	background: linear-gradient(135deg, #0f2440 0%, #1a3a5c 50%, #0d3528 100%);
	color: #fff;
}
.shop-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(255,107,53,.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(26,188,156,.12) 0%, transparent 45%);
	pointer-events: none;
}
.shop-hero-eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 11px;
	font-weight: 800;
	color: var(--harvest-accent);
	background: rgba(255,107,53,.12);
	border: 1px solid rgba(255,107,53,.3);
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 16px;
}
.shop-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(36px, 5vw, 56px);
	margin: 0 0 16px;
	color: #fff;
	line-height: 1.1;
}
.shop-hero-lead {
	max-width: 520px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,.7);
}

/* ── Shop Body & Filters ─────────────────────────────────────── */
.shop-body { padding: 48px 0 80px; }

.shop-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 40px;
	justify-content: center;
}
.shop-filter-btn {
	padding: 9px 20px;
	border-radius: 99px;
	border: 1.5px solid var(--border);
	background: var(--card-bg);
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all .18s ease;
	letter-spacing: .01em;
}
.shop-filter-btn:hover { border-color: var(--harvest-accent); color: var(--harvest-accent); }
.shop-filter-btn.is-active {
	background: var(--harvest-accent);
	color: #fff;
	border-color: var(--harvest-accent);
	box-shadow: 0 4px 14px rgba(255,107,53,.3);
}

/* ── Shop Grid & Cards ───────────────────────────────────────── */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.shop-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.shop-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0,0,0,.13);
	border-color: var(--harvest-accent);
}

/* Badge */
.shop-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: var(--harvest-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: .07em;
	box-shadow: 0 2px 8px rgba(255,107,53,.4);
}

/* Image area */
.shop-card-img {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	position: relative;
}
.shop-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.shop-card:hover .shop-card-img img { transform: scale(1.06); }

/* Colorful placeholder per category */
.shop-card-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 10px;
	font-size: 44px;
	background: linear-gradient(135deg, #1a3a5c, #0d3528);
	color: rgba(255,255,255,.5);
}
.shop-card[data-categories*="travel-gear"] .shop-card-placeholder   { background: linear-gradient(135deg, #1a2f4a, #2d4a6e); }
.shop-card[data-categories*="tech-gadgets"] .shop-card-placeholder  { background: linear-gradient(135deg, #1a1a3e, #2d2d6e); }
.shop-card[data-categories*="books-guides"] .shop-card-placeholder  { background: linear-gradient(135deg, #2d1a0e, #4a2f1a); }
.shop-card[data-categories*="health-safety"] .shop-card-placeholder { background: linear-gradient(135deg, #0e2d1a, #1a4a2d); }

/* Card body */
.shop-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.shop-card-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.35;
}
.shop-card-title a { color: var(--text); text-decoration: none; }
.shop-card-title a:hover { color: var(--harvest-accent); }
.shop-card-desc {
	font-size: 13px;
	color: var(--text);
	opacity: .65;
	margin: 0 0 16px;
	line-height: 1.6;
	flex: 1;
}
.shop-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}
.shop-card-price {
	font-size: 20px;
	font-weight: 800;
	color: var(--harvest-accent);
	letter-spacing: -.01em;
}
.shop-card-stars {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-bottom: 8px;
}
.shop-star {
	font-size: 17px;
	line-height: 1;
}
.shop-star--full {
	color: #f5a623;
}
.shop-star--half {
	color: #f5a623;
	opacity: .6;
}
.shop-star--empty {
	color: #ccc;
}
.shop-card-rating-num {
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
	opacity: .7;
	margin-left: 2px;
}
.shop-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	background: var(--primary);
	color: #fff;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: background .15s ease, transform .15s ease;
	text-decoration: none;
}
.shop-card-btn:hover {
	background: var(--harvest-accent);
	color: #fff;
	transform: translateX(2px);
}
.shop-card-btn::after { content: '→'; font-size: 14px; }

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

/* Affiliate note */
/* SEO intro */
.shop-seo-intro {
	max-width: 780px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text);
	opacity: .85;
}
.shop-seo-intro strong { color: var(--primary); opacity: 1; }

/* FAQ */
.shop-faq {
	margin-top: 72px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
}
.shop-faq-title {
	font-family: var(--font-heading);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: var(--text);
	margin-bottom: 32px;
	text-align: center;
}
.shop-faq-item {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 24px 28px;
	margin-bottom: 16px;
	background: var(--card-bg);
	transition: box-shadow .2s ease;
}
.shop-faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.shop-faq-item h3 {
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 10px;
	line-height: 1.4;
}
.shop-faq-item p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text);
	opacity: .85;
	margin: 0;
}
.shop-faq-item strong { color: var(--primary); font-weight: 700; opacity: 1; }

.shop-affiliate-note {
	margin-top: 48px;
	padding: 18px 24px;
	background: var(--bg-alt);
	border-radius: 12px;
	border: 1px solid var(--border);
	font-size: 13px;
	color: var(--text);
	opacity: .6;
	line-height: 1.7;
	text-align: center;
}

.shop-woo-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.shop-empty { text-align: center; padding: 80px 0; color: var(--text); opacity: .5; font-size: 16px; }

@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px)  { .shop-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Resource library page
   ========================================================= */
.res-hero {
	background: linear-gradient(135deg, var(--bg-inverse) 0%, var(--bg-inverse-alt) 100%);
	color: var(--text-inverse);
	padding: 64px 0;
	text-align: center;
}
.res-hero-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.res-hero-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 48px); margin: 0 0 14px; color: #fff; }
.res-hero-lead { max-width: 600px; margin: 0 auto; font-size: 17px; line-height: 1.6; color: var(--text-inverse-muted); }

.res-body { padding: 40px 0 60px; }

/* Gate card */
.res-gate { margin-bottom: 40px; }
.res-gate-card {
	max-width: 560px;
	margin: 0 auto;
	background: var(--card-bg);
	border: 2px solid var(--harvest-accent);
	border-radius: var(--radius);
	padding: 36px 32px;
	text-align: center;
}
.res-gate-title { font-family: var(--font-heading); font-size: 24px; margin: 0 0 10px; }
.res-gate-text { font-size: 15px; color: var(--text-muted); margin: 0 0 20px; line-height: 1.6; }
.res-gate-form { display: flex; flex-direction: column; gap: 10px; }
.res-gate-input {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 15px;
	background: var(--bg);
	color: var(--text);
}
.res-gate-input:focus { border-color: var(--primary); outline: none; }
.res-gate-btn {
	padding: 14px;
	background: var(--harvest-accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.15s ease;
}
.res-gate-btn:hover { opacity: 0.9; }
.res-gate-privacy { font-size: 12px; color: var(--text-muted); margin: 10px 0 0; }
.res-gate-msg {
	margin-top: 12px;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
}
.res-gate-msg.is-success { background: #d4edda; color: #155724; }
.res-gate-msg.is-error { background: #f8d7da; color: #721c24; }

/* Resource grid */
.res-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 28px;
	justify-content: center;
}
.res-filter-btn {
	padding: 7px 16px;
	border-radius: 99px;
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}
.res-filter-btn.is-active,
.res-filter-btn:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.res-preview.is-locked .res-grid { filter: blur(4px); pointer-events: none; user-select: none; }

.res-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	transition: filter 0.3s ease;
}
.res-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.res-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.res-card-thumb {
	aspect-ratio: 16 / 10;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.res-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.res-card-icon { font-size: 42px; color: var(--text-muted); }
.res-card-lock {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.res-card-body { padding: 14px 16px 18px; }
.res-card-title { font-size: 15px; font-weight: 700; margin: 0 0 6px; line-height: 1.3; }
.res-card-desc { font-size: 13px; color: var(--text-muted); margin: 0 0 8px; line-height: 1.5; }
.res-card-type {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
	background: var(--bg-alt);
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}
.res-card-download {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 16px;
	background: var(--harvest-accent);
	color: #fff;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	transition: opacity 0.15s ease;
}
.res-card-download:hover { opacity: 0.9; color: #fff; }
.res-card[hidden] { display: none; }

.res-stats {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 36px;
	color: var(--text-muted);
	font-size: 14px;
}
.res-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }

@media (max-width: 860px) { .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
	.res-grid { grid-template-columns: 1fr; }
	.res-gate-card { padding: 24px 20px; }
}


/* =========================================================
   AI Itinerary Generator
   ========================================================= */

/* Hero */
.itin-hero {
	background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
	color: #fff;
	padding: 72px 20px 64px;
	text-align: center;
}
.itin-hero-inner { max-width: 720px; margin: 0 auto; }
.itin-hero-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.itin-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	margin: 0 0 16px;
	color: #fff;
}
.itin-hero-lead {
	font-size: 1.1rem;
	opacity: .88;
	margin: 0 0 24px;
	line-height: 1.6;
}
.itin-hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.itin-badge {
	background: rgba(255,255,255,.15);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 20px;
	padding: 6px 16px;
	font-size: .85rem;
	font-weight: 600;
	color: #fff;
}

/* Layout */
.itin-body { padding: 48px 20px 80px; }
.itin-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 32px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}

/* Form panel */
.itin-form-wrap {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
	position: sticky;
	top: 90px;
}
.itin-field { margin-bottom: 22px; }
.itin-label {
	display: block;
	font-weight: 600;
	font-size: .9rem;
	margin-bottom: 8px;
	color: var(--text);
}
.itin-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-size: 1rem;
	font-family: var(--font-body);
	transition: border-color .2s;
	background: var(--bg);
	color: var(--text);
	box-sizing: border-box;
}
.itin-input::placeholder { color: var(--text-muted); }
.itin-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,108,176,.15); }

/* Range slider */
.itin-duration-wrap { display: flex; align-items: center; gap: 14px; }
.itin-range {
	flex: 1;
	-webkit-appearance: none;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(to right, var(--primary) 0%, var(--primary) 33%, var(--border) 33%);
	outline: none;
	cursor: pointer;
}
.itin-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 3px rgba(43,108,176,.2);
	cursor: pointer;
}
.itin-duration-val {
	min-width: 56px;
	font-weight: 700;
	font-size: .95rem;
	color: var(--primary);
	text-align: right;
}

/* Radio chips */
.itin-radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.itin-radio-label { cursor: pointer; }
.itin-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.itin-radio-chip {
	display: inline-block;
	padding: 7px 14px;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	font-size: .85rem;
	font-weight: 500;
	transition: all .15s;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
}
.itin-radio:checked + .itin-radio-chip {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* Interest chips */
.itin-interests-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 6px; }
.itin-interest-chip {
	padding: 6px 12px;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	font-size: .82rem;
	font-weight: 500;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
	transition: all .15s;
	font-family: var(--font-body);
}
.itin-interest-chip.is-selected {
	background: var(--harvest-accent);
	border-color: var(--harvest-accent);
	color: #fff;
}
.itin-field-hint { font-size: .78rem; color: var(--text-muted); margin: 4px 0 0; }

/* Submit button */
.itin-submit-btn {
	width: 100%;
	padding: 14px 20px;
	background: linear-gradient(135deg, var(--harvest-accent), #c94a2e);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform .15s, box-shadow .15s;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.itin-submit-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,114,76,.4); }
.itin-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* Spinner */
.itin-spinner {
	display: inline-block;
	width: 16px; height: 16px;
	border: 2.5px solid rgba(255,255,255,.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: itin-spin .7s linear infinite;
}
@keyframes itin-spin { to { transform: rotate(360deg); } }

/* Result wrap */
.itin-result-wrap { min-height: 500px; }

/* Placeholder */
.itin-placeholder {
	background: var(--card-bg);
	border: 2px dashed var(--border);
	border-radius: var(--radius);
	padding: 48px 32px;
	text-align: center;
}
.itin-placeholder-inner { max-width: 420px; margin: 0 auto; }
.itin-placeholder-icon { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.itin-placeholder h3 { font-family: var(--font-heading); font-size: 1.4rem; margin: 0 0 12px; color: var(--text); }
.itin-placeholder p { color: var(--text-muted); margin: 0 0 20px; }
.itin-placeholder-list { list-style: none; padding: 0; margin: 0; text-align: left; display: inline-block; }
.itin-placeholder-list li { padding: 5px 0; color: var(--text-muted); font-size: .9rem; }

/* Skeleton loading */
.itin-loading {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}
.itin-skel {
	background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border) 50%, var(--bg-alt) 75%);
	background-size: 200% 100%;
	animation: itin-shimmer 1.4s infinite;
	border-radius: 6px;
	margin-bottom: 10px;
}
@keyframes itin-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.itin-skel-title { height: 28px; width: 65%; }
.itin-skel-subtitle { height: 16px; width: 45%; }
.itin-skel-day { padding: 16px 0; border-top: 1px solid var(--border); }
.itin-skel-day-title { height: 20px; width: 40%; margin-bottom: 12px; }
.itin-skel-line { height: 14px; width: 90%; }
.itin-skel-line--short { width: 70%; }
.itin-loading-header { margin-bottom: 8px; }
.itin-loading-msg {
	display: flex; align-items: center; gap: 10px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: .9rem;
}
.itin-loading-msg .itin-spinner {
	border-color: rgba(43,108,176,.2);
	border-top-color: var(--primary);
}

/* Error */
.itin-error {
	background: var(--card-bg);
	border: 1px solid #fca5a5;
	border-radius: var(--radius);
	padding: 40px 28px;
	text-align: center;
}
.itin-error-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.itin-error-msg { color: #991b1b; margin: 0 0 20px; }
.itin-retry-btn {
	padding: 10px 24px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: .95rem;
	font-weight: 600;
}

/* Result */
.itin-result {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.itin-result-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 28px;
	border-bottom: 1px solid var(--border);
	background: var(--bg-alt);
	flex-wrap: wrap;
}
.itin-result-title { font-family: var(--font-heading); font-size: 1.3rem; margin: 0; color: var(--text); }
.itin-result-actions { display: flex; gap: 8px; }
.itin-action-btn {
	padding: 7px 14px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	background: var(--card-bg);
	cursor: pointer;
	font-size: .82rem;
	font-weight: 600;
	font-family: var(--font-body);
	color: var(--text);
	transition: all .15s;
}
.itin-action-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Markdown content */
.itin-content {
	padding: 28px;
	line-height: 1.7;
	font-size: .97rem;
	color: var(--text);
}
.itin-content h1,.itin-content h2 {
	font-family: var(--font-heading);
	margin: 28px 0 12px;
	color: var(--primary);
	border-bottom: 2px solid var(--border);
	padding-bottom: 6px;
}
.itin-content h3 { font-family: var(--font-heading); margin: 20px 0 8px; color: var(--primary); }
.itin-content h4 { font-weight: 700; margin: 16px 0 6px; color: var(--text); }
.itin-content ul,.itin-content ol { padding-left: 22px; margin: 8px 0 16px; }
.itin-content li { margin-bottom: 4px; }
.itin-content strong { font-weight: 700; }
.itin-content em { font-style: italic; }
.itin-content p { margin: 0 0 14px; }
.itin-content hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.itin-result-footer {
	padding: 16px 28px;
	border-top: 1px solid var(--border);
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.itin-disclaimer { font-size: .78rem; color: var(--text-muted); margin: 0; }
.itin-new-btn {
	padding: 8px 18px;
	border: 1.5px solid var(--primary);
	border-radius: 8px;
	background: transparent;
	color: var(--primary);
	cursor: pointer;
	font-size: .85rem;
	font-weight: 600;
	font-family: var(--font-body);
	white-space: nowrap;
	transition: all .15s;
}
.itin-new-btn:hover { background: var(--primary); color: #fff; }

/* Share CTA */
.itin-share-cta {
	margin: 56px auto 0;
	max-width: 1200px;
	text-align: center;
	padding: 40px 28px;
	background: var(--card-bg);
	border-radius: var(--radius);
	border: 1px solid var(--border);
}
.itin-share-cta h2 { font-family: var(--font-heading); margin: 0 0 10px; color: var(--text); }
.itin-share-cta p { color: var(--text-muted); margin: 0 0 20px; }
.itin-share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.itin-share-btn {
	padding: 10px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: .9rem;
	text-decoration: none;
	transition: transform .15s, box-shadow .15s;
}
.itin-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.itin-share-pinterest { background: #e60023; color: #fff; }
.itin-share-facebook { background: #1877f2; color: #fff; }

/* FAQ */
.itin-faq { max-width: 1200px; margin: 48px auto 0; }
.itin-faq-title { font-family: var(--font-heading); font-size: 1.6rem; margin: 0 0 24px; color: var(--text); }
.itin-faq-list { display: flex; flex-direction: column; gap: 8px; }
.itin-faq-item {
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
}
.itin-faq-q {
	width: 100%;
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	background: var(--card-bg);
	border: none;
	cursor: pointer;
	font-size: .95rem;
	font-weight: 600;
	text-align: left;
	font-family: var(--font-body);
	color: var(--text);
	transition: background .15s;
}
.itin-faq-q:hover,.itin-faq-q[aria-expanded="true"] { background: var(--bg-alt); }
.itin-faq-arrow { transition: transform .2s; flex-shrink: 0; color: var(--text-muted); }
.itin-faq-q[aria-expanded="true"] .itin-faq-arrow { transform: rotate(180deg); }
.itin-faq-a { padding: 0 20px 16px; background: var(--bg-alt); }
.itin-faq-a p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.6; }

/* Responsive */
@media (max-width: 900px) {
	.itin-layout { grid-template-columns: 1fr; }
	.itin-form-wrap { position: static; }
}
@media (max-width: 600px) {
	.itin-hero { padding: 48px 20px 40px; }
	.itin-result-header { padding: 16px 20px; }
	.itin-content { padding: 20px; }
	.itin-result-footer { padding: 14px 20px; }
}

/* ── Itinerary: form heading ── */
.itin-form-heading { font-family: var(--font-heading); font-size: 1.15rem; margin: 0 0 20px; color: var(--text); }
.itin-optional { font-weight: 400; font-size: .78rem; color: var(--text-muted); }

/* ── Affiliate sidebar links ── */
.itin-aff-sidebar { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.itin-aff-sidebar-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin: 0 0 10px; }
.itin-aff-sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text);
	transition: background .15s;
	margin-bottom: 2px;
}
.itin-aff-sidebar-link:hover { background: var(--bg-alt); }
.itin-aff-sidebar-icon { font-size: 1.2rem; flex-shrink: 0; width: 24px; text-align: center; }
.itin-aff-sidebar-text { flex: 1; min-width: 0; }
.itin-aff-sidebar-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.itin-aff-sidebar-desc { display: block; font-size: .75rem; color: var(--text-muted); }
.itin-aff-sidebar-arrow { color: var(--text-muted); font-size: 1.1rem; flex-shrink: 0; }
.itin-aff-disclaimer { font-size: .7rem; color: var(--text-muted); margin: 8px 0 0; line-height: 1.4; }

/* ── Affiliate cards inside result ── */
.itin-aff-cards {
	margin: 0;
	padding: 24px 28px;
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
}
.itin-aff-cards-heading { font-family: var(--font-heading); font-size: 1.1rem; margin: 0 0 16px; color: var(--text); }
.itin-aff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.itin-aff-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding: 14px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	text-decoration: none;
	transition: transform .15s, box-shadow .15s, border-color .15s;
	position: relative;
	overflow: hidden;
}
.itin-aff-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); border-color: var(--primary); }
.itin-aff-card-icon { font-size: 1.5rem; }
.itin-aff-card-body { flex: 1; }
.itin-aff-card-label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.itin-aff-card-desc { display: block; font-size: .73rem; color: var(--text-muted); line-height: 1.3; }
.itin-aff-card-badge {
	font-size: .65rem;
	font-weight: 700;
	background: var(--harvest-accent);
	color: #fff;
	padding: 2px 7px;
	border-radius: 10px;
	white-space: nowrap;
}

/* Card accent colors */
.itin-aff-booking .itin-aff-card-badge { background: #003580; }
.itin-aff-airbnb .itin-aff-card-badge { background: #ff5a5f; }
.itin-aff-viator .itin-aff-card-badge { background: #328438; }
.itin-aff-getyourguide .itin-aff-card-badge { background: #ff8000; }
.itin-aff-skyscanner .itin-aff-card-badge { background: #0770e3; }
.itin-aff-klook .itin-aff-card-badge { background: #ff5722; }

/* ── How it works ── */
.itin-how { max-width: 1200px; margin: 56px auto 0; }
.itin-how-title { font-family: var(--font-heading); font-size: 1.6rem; margin: 0 0 28px; color: var(--text); text-align: center; }
.itin-how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.itin-how-step {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 20px;
	text-align: center;
}
.itin-how-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 12px;
}
.itin-how-step h3 { font-family: var(--font-heading); font-size: 1rem; margin: 0 0 8px; color: var(--text); }
.itin-how-step p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── SEO text ── */
.itin-seo-text { max-width: 1200px; margin: 48px auto 0; padding: 36px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.itin-seo-inner h2 { font-family: var(--font-heading); font-size: 1.35rem; margin: 0 0 14px; color: var(--text); }
.itin-seo-inner p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; margin: 0 0 14px; }
.itin-seo-inner p:last-child { margin: 0; }
.itin-seo-inner strong { color: var(--text); font-weight: 600; }

/* ── Share CTA ── */
.itin-share-cta {
	margin: 40px auto 0;
	max-width: 1200px;
	text-align: center;
	padding: 40px 28px;
	background: var(--card-bg);
	border-radius: var(--radius);
	border: 1px solid var(--border);
}
.itin-share-cta h2 { font-family: var(--font-heading); margin: 0 0 10px; color: var(--text); }
.itin-share-cta p { color: var(--text-muted); margin: 0 0 20px; }
.itin-share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.itin-share-btn { padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.itin-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.itin-share-pinterest { background: #e60023; color: #fff; }
.itin-share-facebook  { background: #1877f2; color: #fff; }
.itin-share-twitter   { background: #000; color: #fff; }

/* ── Placeholder h2 override ── */
.itin-placeholder-title { font-family: var(--font-heading); font-size: 1.4rem; margin: 0 0 12px; color: var(--text); }

/* ── Responsive ── */
@media (max-width: 1100px) { .itin-aff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
	.itin-layout { grid-template-columns: 1fr; }
	.itin-form-wrap { position: static; }
	.itin-how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.itin-aff-grid { grid-template-columns: repeat(2, 1fr); }
	.itin-how-steps { grid-template-columns: 1fr; }
	.itin-result-header { padding: 16px 20px; }
	.itin-content { padding: 20px; }
	.itin-aff-cards { padding: 20px; }
}
@media (max-width: 400px) { .itin-aff-grid { grid-template-columns: 1fr; } }

/* ── Inline affiliate links inside AI output ── */
.itin-inline-aff {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
	font-weight: 600;
	transition: color .15s;
}
.itin-inline-aff:hover { color: var(--harvest-accent); text-decoration-style: solid; }
.itin-aff-sup {
	font-size: .65em;
	vertical-align: super;
	margin-left: 1px;
	text-decoration: none;
	display: inline-block;
}

/* ── Footer tool / external link styles ── */
.footer-tool-link > a {
	color: var(--harvest-accent) !important;
	font-weight: 600;
}
.footer-ext-link > a {
	opacity: .85;
}
.footer-ext-link > a:hover { opacity: 1; }

/* ── Itinerary markdown tables ── */
.itin-table-wrap { overflow-x: auto; margin: 16px 0; border-radius: 8px; border: 1px solid var(--border); }
.itin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.itin-table th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; white-space: nowrap; }
.itin-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.itin-table tr:last-child td { border-bottom: none; }
.itin-table tr:nth-child(even) td { background: var(--bg-alt); }
.itin-table tr:hover td { background: var(--bg); }

/* ── GetYourGuide Widget ── */
.itin-gyg-widget {
	padding: 24px 28px;
	border-top: 1px solid var(--border);
	background: var(--bg-alt);
}
.itin-gyg-widget-heading {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin: 0 0 16px;
	color: var(--text);
}
#itin-gyg-embed { min-height: 200px; }

/* ── Print styles ── */
@media print {
	/* Hide everything except the itinerary result */
	.site-header, .top-bar, .itin-hero, .itin-form-wrap,
	.itin-placeholder, .itin-loading, .itin-error,
	.itin-aff-cards, .itin-gyg-widget, .itin-result-footer,
	.itin-how, .itin-share-cta, .itin-faq, .itin-seo-text,
	.site-footer, .back-to-top, .dark-mode-toggle,
	.cookie-consent, .itin-result-actions, .itin-new-btn,
	.reading-progress-bar, #itin-new { display: none !important; }

	/* Clean layout */
	body, .itin-body, .itin-layout, .itin-result-wrap { padding: 0 !important; margin: 0 !important; }
	.itin-layout { display: block !important; }
	.itin-result { border: none !important; box-shadow: none !important; }
	.itin-result[hidden] { display: block !important; }
	.itin-result-header { background: none !important; border-bottom: 2px solid #ddd !important; padding: 0 0 12px !important; }
	.itin-result-title { font-size: 1.4rem !important; }
	.itin-content { padding: 16px 0 !important; }

	/* Hide URLs shown after links (browser default print behavior) */
	a[href]::after { content: none !important; }
	.itin-inline-aff { color: inherit !important; text-decoration: none !important; font-weight: inherit !important; }
	.itin-aff-sup { display: none !important; }

	/* Tables */
	.itin-table-wrap { border: 1px solid #ccc !important; }
	.itin-table th { background: #2b6cb0 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

	/* Page breaks */
	h2, h3 { page-break-after: avoid; }
	ul, ol, table { page-break-inside: avoid; }
}

/* ══════════════════════════════════════════════════════════════
   Community Itineraries Gallery
   ══════════════════════════════════════════════════════════════ */

.itin-community {
	margin: 64px 0 48px;
	padding: 0;
}
.itin-community-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--text);
	margin: 0 0 8px;
	text-align: center;
}
.itin-community-subtitle {
	text-align: center;
	color: var(--text);
	opacity: .7;
	margin: 0 0 32px;
	font-size: .95rem;
}
.itin-community-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) { .itin-community-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .itin-community-grid { grid-template-columns: 1fr; } }

.itin-community-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius, 12px);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow .2s, transform .2s;
	box-shadow: var(--shadow, 0 1px 4px rgba(0,0,0,.06));
}
.itin-community-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,.12);
	transform: translateY(-2px);
}
.itin-community-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.itin-community-dest {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	color: var(--text);
	margin: 0;
	line-height: 1.3;
}
.itin-community-date {
	font-size: .75rem;
	color: var(--text);
	opacity: .55;
	white-space: nowrap;
	flex-shrink: 0;
}
.itin-community-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.itin-cbadge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 20px;
	font-size: .72rem;
	font-weight: 600;
	line-height: 1.6;
}
.itin-cbadge-days    { background: var(--primary); color: #fff; }
.itin-cbadge-budget  { background: var(--bg-alt, #f0f4f8); color: var(--text); border: 1px solid var(--border); }
.itin-cbadge-style   { background: var(--bg-alt, #f0f4f8); color: var(--text); border: 1px solid var(--border); }

.itin-community-excerpt {
	font-size: .85rem;
	color: var(--text);
	opacity: .75;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}
.itin-community-read-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 1px solid var(--primary);
	color: var(--primary);
	border-radius: 6px;
	padding: 6px 14px;
	font-size: .82rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s, color .15s;
	align-self: flex-start;
}
.itin-community-read-btn:hover {
	background: var(--primary);
	color: #fff;
}
.itin-community-read-btn[aria-expanded="true"] .itin-community-arrow { display: inline-block; transform: rotate(180deg); }
.itin-community-arrow { display: inline-block; transition: transform .2s; }

.itin-community-full {
	margin-top: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	font-size: .88rem;
	line-height: 1.7;
	color: var(--text);
	overflow: hidden;
}
.itin-community-full h2 { font-size: 1.15rem; margin: 16px 0 6px; }
.itin-community-full h3 { font-size: 1rem;   margin: 14px 0 4px; }
.itin-community-full h4 { font-size: .9rem;  margin: 10px 0 4px; }
.itin-community-full ul,
.itin-community-full ol { padding-left: 20px; margin: 6px 0; }
.itin-community-full li { margin-bottom: 3px; }
.itin-community-full p  { margin: 6px 0; }
.itin-community-full strong { font-weight: 700; }
.itin-community-full em     { font-style: italic; }
.itin-community-full hr     { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

@media print {
	.itin-community { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   Community Itinerary Modal
   ══════════════════════════════════════════════════════════════ */

.itin-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 20px 16px;
}
.itin-modal[hidden] { display: none !important; }

.itin-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	backdrop-filter: blur(3px);
	cursor: pointer;
}

.itin-modal-panel {
	position: relative;
	z-index: 1;
	background: var(--card-bg);
	border-radius: 16px;
	width: 100%;
	max-width: 820px;
	max-height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	box-shadow: 0 24px 80px rgba(0,0,0,.35);
	overflow: hidden;
}

.itin-modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 28px 18px;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
	background: var(--card-bg);
}
.itin-modal-header-info { flex: 1; min-width: 0; }
.itin-modal-title {
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	color: var(--text);
	margin: 0 0 4px;
	line-height: 1.3;
}
.itin-modal-meta {
	font-size: .85rem;
	color: var(--text);
	opacity: .6;
	margin: 0;
}
.itin-modal-header-btns {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.itin-modal-print-btn {
	font-size: .8rem;
	padding: 7px 14px;
}
.itin-modal-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--bg-alt, #f5f5f5);
	color: var(--text);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
	flex-shrink: 0;
}
.itin-modal-close:hover { background: var(--border); }

.itin-modal-body {
	overflow-y: auto;
	padding: 28px;
	flex: 1;
	scroll-behavior: smooth;
}

/* Itinerary content inside modal */
.itin-modal-content {
	font-size: .95rem;
	line-height: 1.75;
	color: var(--text);
	margin-bottom: 36px;
}
.itin-modal-content h2 { font-size: 1.3rem; margin: 24px 0 8px; font-family: var(--font-heading); }
.itin-modal-content h3 { font-size: 1.1rem; margin: 20px 0 6px; font-family: var(--font-heading); color: var(--primary); }
.itin-modal-content h4 { font-size: .95rem; margin: 14px 0 4px; font-weight: 700; }
.itin-modal-content ul,
.itin-modal-content ol  { padding-left: 22px; margin: 8px 0; }
.itin-modal-content li  { margin-bottom: 4px; }
.itin-modal-content p   { margin: 8px 0; }
.itin-modal-content strong { font-weight: 700; }
.itin-modal-content em     { font-style: italic; }
.itin-modal-content hr  { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.itin-modal-content table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 16px 0; }
.itin-modal-content th { background: var(--primary); color: #fff; padding: 8px 12px; text-align: left; }
.itin-modal-content td { padding: 7px 12px; border-bottom: 1px solid var(--border); }
.itin-modal-content tr:nth-child(even) td { background: var(--bg-alt, #f8f8f8); }

.itin-modal-disclaimer {
	font-size: .8rem;
	color: var(--text);
	opacity: .55;
	margin: 24px 0 0;
	text-align: center;
}

/* Print: show only modal when printing from modal */
@media print {
	body.itin-modal-printing > *:not(#itin-modal) { display: none !important; }
	body.itin-modal-printing #itin-modal { position: static !important; display: block !important; padding: 0 !important; }
	body.itin-modal-printing .itin-modal-overlay,
	body.itin-modal-printing .itin-modal-close,
	body.itin-modal-printing .itin-modal-print-btn { display: none !important; }
	body.itin-modal-printing .itin-modal-panel { max-height: none !important; box-shadow: none !important; border-radius: 0 !important; overflow: visible !important; }
	body.itin-modal-printing .itin-modal-body { overflow: visible !important; max-height: none !important; }
	body.itin-modal-printing a[href]::after { content: none !important; }
}

@media (max-width: 600px) {
	.itin-modal { padding: 0; align-items: flex-end; }
	.itin-modal-panel { border-radius: 16px 16px 0 0; max-height: 92vh; }
	.itin-modal-header { padding: 18px 18px 14px; }
	.itin-modal-body { padding: 18px; }
}

/* ============================================================
   Product Review Page — blog article style
   ============================================================ */

/* Hero — full-bleed like hotel */
.product-review-page .product-review-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(135deg, #0f2440 0%, #1a3a5c 100%);
	background-size: cover;
	background-position: center;
	padding: 0 0 56px;
}
.product-review-hero-inner {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 760px;
}
.product-review-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	margin-bottom: 16px;
	opacity: .75;
}
.product-review-breadcrumb a { color: #fff; text-decoration: none; }
.product-review-breadcrumb a:hover { text-decoration: underline; }
.product-review-eyebrow {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--harvest-accent);
	margin: 0 0 12px;
}
.product-review-title {
	font-family: var(--font-heading);
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 18px;
}
.product-review-hero-stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}
.product-review-hero-stars .shop-star { font-size: 22px; }
.product-review-hero-rating {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255,255,255,.8);
	margin-left: 6px;
}
.product-review-lead {
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255,255,255,.88);
	margin: 0 0 28px;
	max-width: 620px;
}

/* Buy button */
.product-buy-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	background: var(--harvest-accent);
	color: #fff;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s ease, transform .15s ease;
}
.product-buy-btn:hover { background: #e85d2e; transform: translateY(-2px); color: #fff; }
.product-buy-btn--hero { font-size: 16px; padding: 15px 32px; }

/* Two-column body */
.product-review-body {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	align-items: start;
	padding-top: 48px;
	padding-bottom: 80px;
}
@media (max-width: 900px) {
	.product-review-body { grid-template-columns: 1fr; }
	.product-review-aside { order: -1; }
}

.product-review-section { margin-bottom: 48px; }
.product-review-h2 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 20px;
}

/* Pros & Cons */
.product-proscons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 600px) { .product-proscons { grid-template-columns: 1fr; } }

.product-pros,
.product-cons {
	border-radius: 14px;
	padding: 22px 24px;
}
.product-pros { background: #f0faf4; border: 1px solid #b7e4c7; }
.product-cons { background: #fff5f5; border: 1px solid #ffc9c9; }
@media (prefers-color-scheme: dark) {
	.product-pros { background: rgba(52,168,83,.1); border-color: rgba(52,168,83,.25); }
	.product-cons { background: rgba(234,67,53,.1); border-color: rgba(234,67,53,.25); }
}
:root[data-theme="dark"] .product-pros { background: rgba(52,168,83,.1); border-color: rgba(52,168,83,.25); }
:root[data-theme="dark"] .product-cons { background: rgba(234,67,53,.1); border-color: rgba(234,67,53,.25); }

.product-proscons-title {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--text);
}
.product-pros ul, .product-cons ul { margin: 0; padding: 0; list-style: none; }
.product-pros li, .product-cons li {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text);
	padding: 6px 0;
	border-bottom: 1px solid rgba(0,0,0,.06);
}
.product-pros li:last-child, .product-cons li:last-child { border-bottom: none; }

/* Article prose */
.product-review-prose {
	font-size: 17px;
	line-height: 1.85;
	color: var(--text);
}
.product-review-prose h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.product-review-prose h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.product-review-prose p { margin: 0 0 18px; }
.product-review-prose ul, .product-review-prose ol { padding-left: 22px; margin: 0 0 18px; }
.product-review-prose li { margin-bottom: 8px; }
.product-review-prose img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.product-review-prose a { color: var(--primary); }
.product-review-prose strong { color: var(--text); }
.product-review-prose blockquote {
	border-left: 4px solid var(--primary);
	margin: 24px 0;
	padding: 12px 20px;
	background: var(--bg-alt);
	border-radius: 0 10px 10px 0;
	font-style: italic;
}

/* Verdict box */
.product-verdict-box {
	background: linear-gradient(135deg, #0f2440 0%, #1a5c80 100%);
	border-radius: 18px;
	padding: 36px 40px;
	text-align: center;
	color: #fff;
}
.product-verdict-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	opacity: .75;
	margin: 0 0 12px;
	color: #fff;
}
.product-verdict-stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 16px;
}
.product-verdict-stars .shop-star { font-size: 26px; }
.product-verdict-stars .product-review-hero-rating { color: rgba(255,255,255,.85); font-size: 16px; }
.product-verdict-text {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,.9);
	margin: 0 0 28px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.product-verdict-box .product-buy-btn {
	background: #fff;
	color: #0f2440;
}
.product-verdict-box .product-buy-btn:hover {
	background: rgba(255,255,255,.9);
	color: #0f2440;
}

/* Sidebar buy card */
.product-review-aside { position: sticky; top: 90px; }
.product-buy-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.product-buy-card-img {
	margin: -24px -24px 20px;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
}
.product-buy-card-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.product-buy-card-badge {
	display: inline-block;
	background: var(--harvest-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}
.product-buy-card-name {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 12px;
	line-height: 1.3;
}
.product-buy-card-stars {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-bottom: 18px;
}
.product-buy-card-rating {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	opacity: .65;
	margin-left: 4px;
}
.product-buy-btn--sidebar {
	display: flex;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.product-buy-card-note {
	font-size: 11px;
	color: var(--text);
	opacity: .45;
	text-align: center;
	margin: 0;
	line-height: 1.5;
}

/* Related products */
.product-related {
	padding: 48px 0 64px;
	border-top: 1px solid var(--border);
	margin-top: 0;
}
.product-related-read {
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	display: inline-block;
	margin-top: 6px;
}
.product-related-read:hover { text-decoration: underline; }
