/* Extracted from page-tours.php — PERF-01 */
/* ═══ LEAFLET OVERRIDES ═══ */
/* Leaflet map overrides — zoom controls */
.cs-tours-carte-map .leaflet-container{width:100%;height:100%;border-radius:16px;}
.cs-tours-carte-map .leaflet-bottom.leaflet-left{z-index:1000!important;}
.cs-tours-carte-map .leaflet-control-zoom{margin-bottom:10px!important;margin-left:10px!important;border:none!important;box-shadow:0 2px 8px rgba(59,35,20,.12)!important;border-radius:8px!important;z-index:1000!important;}
.cs-tours-carte-map .leaflet-control-zoom a{background:#fff!important;color:#2d1810!important;border:1px solid #e8ddd2!important;width:36px!important;height:36px!important;line-height:36px!important;font-size:18px!important;display:flex!important;align-items:center!important;justify-content:center!important;text-decoration:none!important;}

/* ═══ DESIGN TOKENS ═══ */
:root {
	--bg: #faf7f4;
	--bg2: #f3ede6;
	--bg3: #e8ddd2;
	--bg4: #d4c4b0;
	--white: #fff;
	--terra: var(--cs-terracotta, #c96a3a);
	--terra-l: #d97f52;
	--terra-p: #f5e3d8;
	--terra-bg: var(--cs-cream, #fdf6f0);
	--brown: var(--cs-brown-dark, #2d1810);
	--brown-m: var(--cs-brown-mid, #6b4423);
	--brown-l: #b08060;
	--stone: #9a8070;
	--text: #2d1a08;
	--text-m: #5a3a20;
	--text-l: #8a6a50;
	--green: #4a7a58;
	--r: 12px;
	--rs: 8px;
	--sh: 0 2px 16px rgba(61,37,16,.08);
	--shm: 0 10px 40px rgba(61,37,16,.12);
}

/* ═══ HERO ═══ */
.cs-tours-hero {
	background: linear-gradient(170deg, rgba(253,248,243,.85) 0%, rgba(250,247,244,.88) 60%, rgba(243,237,230,.92) 100%),
		url('<?php echo esc_url( home_url( '/wp-content/uploads/2026/01/trouver-un-atelier-de-poterie.avif' ) ); ?>') center/cover no-repeat;
	padding: 26px clamp(16px,3vw,40px) 22px;
	position: relative;
	overflow: visible;
	z-index: 10;
}
.cs-tours-hero::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -60px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--terra-p) 0%, transparent 70%);
	opacity: .4;
	pointer-events: none;
	z-index: 0;
}
.cs-tours-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.cs-tours-hero-row {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 14px;
}
.cs-tours-hero-text { flex: 1; }
.cs-tours-sec-label {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--terra);
	margin-bottom: 6px;
}
.cs-tours-hero h1,
section.cs-tours-hero h1 {
	font-family: 'Playfair Display', serif !important;
	font-size: clamp(22px, 3vw, 30px) !important;
	font-weight: 700 !important;
	color: var(--brown) !important;
	line-height: 1.25;
	margin-bottom: 6px;
}
.cs-tours-hero h1 em {
	color: var(--terra);
	font-style: italic;
	font-weight: 400;
}
.cs-tours-hero-sub {
	font-size: 14px;
	color: var(--text-m);
	max-width: 520px;
	line-height: 1.55;
}
.cs-tours-hero-trust {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	flex-wrap: wrap;
}
.cs-tours-hero-trust span {
	font-size: 11px;
	color: var(--stone);
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--white);
	padding: 4px 11px;
	border-radius: 20px;
	border: 1px solid var(--bg3);
}
.cs-tours-hero-img {
	width: 180px;
	height: 180px;
	border-radius: 50% 50% 50% 16px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: var(--shm);
	border: 3px solid var(--white);
}
.cs-tours-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ═══ SEARCH BAR ═══ */
.cs-tours-search-bar {
	background: var(--white);
	border-radius: 14px;
	box-shadow: var(--shm);
	border: 1.5px solid var(--bg3);
	display: flex;
	align-items: stretch;
	max-width: 780px;
	height: 56px;
	position: relative;
	z-index: 50;
	overflow: visible;
}
.cs-tours-sb-field {
	flex: 1;
	min-width: 0;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: visible;
}
.cs-tours-sb-field:not(:last-of-type)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 16%;
	height: 68%;
	width: 1px;
	background: var(--bg3);
}
.cs-tours-sb-label {
	font-size: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .08em;
	color: var(--stone) !important;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.cs-tours-sb-input,
.cs-tours-sb-field select.cs-tours-sb-input,
.cs-tours-sb-field input.cs-tours-sb-input {
	border: none !important;
	background: none !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: var(--text) !important;
	outline: none !important;
	width: 100% !important;
	height: auto !important;
	padding: 2px 0 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	line-height: 1.3 !important;
}
.cs-tours-sb-input::placeholder { color: var(--bg4); }
/* Custom dropdown */
.cs-tours-dd-wrap { position: relative; cursor: pointer; }
.cs-tours-dd-disp {
	font-size: 13px;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cs-tours-dd-caret {
	font-size: 8px;
	color: var(--stone);
	transition: transform .2s;
	flex-shrink: 0;
}
.cs-tours-dd-wrap.open .cs-tours-dd-caret { transform: rotate(180deg); }
.cs-tours-dd-list {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: -20px;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--bg3);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(59,35,20,.1);
	z-index: 200;
	padding: 6px 0;
	max-height: 320px;
	overflow-y: auto;
}
.cs-tours-dd-wrap.open .cs-tours-dd-list { display: block; }
.cs-tours-dd-opt {
	padding: 8px 16px;
	font-size: 13px;
	color: var(--text);
	cursor: pointer;
	transition: background .12s;
}
.cs-tours-dd-opt:hover { background: var(--bg); color: var(--terra); }
.cs-tours-dd-opt.selected { color: var(--terra); font-weight: 600; }
.cs-tours-sb-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 28px;
	background: linear-gradient(135deg, var(--terra) 0%, #b85a2a 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all .22s;
	border-radius: 0 12px 12px 0;
	min-width: 130px;
}
.cs-tours-sb-btn:hover {
	background: linear-gradient(135deg, var(--terra-l) 0%, var(--terra) 100%);
	box-shadow: 0 4px 18px rgba(201,106,58,.35);
}
.cs-tours-sb-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	stroke-width: 2.5;
	fill: none;
}

/* ═══ MOBILE SEARCH ═══ */
.cs-tours-search-mobile {
	display: none;
	margin-top: 16px;
	background: var(--white);
	border: 1.5px solid var(--bg3);
	border-radius: 16px;
	box-shadow: var(--sh);
	overflow: hidden;
}
.cs-tours-sm-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	padding: 16px 18px;
	align-items: flex-end;
}
.cs-tours-sm-field {
	flex: 1;
	min-width: calc(50% - 8px);
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.cs-tours-sm-field.full { min-width: 100%; }
.cs-tours-sm-field label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--stone);
}
.cs-tours-sm-field select,
.cs-tours-sm-field input {
	border: 1.5px solid var(--bg3);
	background: var(--white);
	border-radius: 10px;
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	color: var(--text);
	padding: 10px 12px;
	outline: none;
	cursor: pointer;
	transition: border-color .15s;
	-webkit-appearance: none;
	appearance: none;
}
.cs-tours-sm-field select:focus,
.cs-tours-sm-field input:focus { border-color: var(--terra); }
.cs-tours-sm-btn {
	width: 100%;
	padding: 13px;
	border-radius: 30px;
	background: var(--terra);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background .15s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.cs-tours-sm-btn:hover { background: var(--terra-l); }
.cs-tours-sm-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	stroke-width: 2.5;
	fill: none;
}

/* ═══ CHIPS ROW ═══ */
.cs-tours-chips-wrap {
	max-width: 1100px;
	margin: 12px auto 14px;
	padding: 0 clamp(12px,2vw,32px);
	position: relative;
	z-index: 1;
}
.cs-tours-chips-row a{min-height:44px;} /* [UX-FIX-08] */
.cs-tours-chips-row {
	display: flex;
	gap: 7px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding: 2px 4px;
	mask-image: linear-gradient(to right, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
}
.cs-tours-chips-row::-webkit-scrollbar { display: none; }
.cs-tours-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 500;
	color: var(--text-m);
	border: 1.5px solid var(--bg3);
	background: var(--white);
	cursor: pointer;
	transition: all .15s;
	white-space: nowrap;
	flex-shrink: 0;
}
.cs-tours-chip:hover { border-color: var(--terra); color: var(--terra); }
.cs-tours-chip.on { border-color: var(--terra); background: var(--terra-bg); color: var(--terra); font-weight: 600; }
.cs-tours-chip-hot {
	background: linear-gradient(135deg, var(--terra), #b85a2a);
	color: #fff;
	border-color: transparent;
	font-weight: 600;
}
.cs-tours-chip-hot:hover { background: linear-gradient(135deg, var(--terra-l), var(--terra)); color: #fff; border-color: transparent; }
.cs-tours-chip-hot.on { background: var(--white); color: var(--terra); border: 2px solid var(--terra); font-weight: 700; }

/* ═══ RESULTS BAR ═══ */
.cs-tours-results-bar {
	background: var(--white);
	border-bottom: 1px solid var(--bg3);
	padding: 9px clamp(16px,3vw,40px);
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 2px 8px rgba(61,37,16,.04);
}
.cs-tours-rb-count { font-size: 13px; color: var(--text-m); }
.cs-tours-rb-count strong { color: var(--brown); }
.cs-tours-rb-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	color: var(--terra);
	border: 1.5px solid var(--terra-p);
	background: var(--terra-bg);
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
	white-space: nowrap;
}
.cs-tours-rb-filter-btn:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.cs-tours-rb-spacer { flex: 1; }
.cs-tours-rb-cta {
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: var(--terra);
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
	white-space: nowrap;
	flex-shrink: 0;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.cs-tours-rb-cta:hover { background: var(--terra-l); }
.cs-tours-rb-sort { display: flex; align-items: center; flex-shrink: 0; }
.cs-tours-dd-sort .cs-tours-dd-disp {
	padding: 6px 10px;
	border: 1.5px solid var(--bg3);
	border-radius: var(--rs);
	font-size: 12px;
	background: var(--white);
}
.cs-tours-dd-sort .cs-tours-dd-list {
	left: auto;
	right: 0;
	min-width: 160px;
}
.cs-tours-rb-views { display: flex; border: 1.5px solid var(--bg3); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cs-tours-rb-vbtn {
	padding: 7px 14px;
	font-size: 12px;
	cursor: pointer;
	border: none;
	background: var(--white);
	color: var(--stone);
	font-family: inherit;
	transition: all .15s;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.cs-tours-rb-vbtn svg { width: 14px; height: 14px; flex-shrink: 0; }
.cs-tours-rb-vbtn:not(:last-child) { border-right: 1px solid var(--bg3); }
.cs-tours-rb-vbtn:hover { color: var(--brown); }
.cs-tours-rb-vbtn.on { background: var(--brown); color: #fff; font-weight: 600; }
.cs-tours-rb-vbtn.on svg { stroke: #fff; }

/* ═══ FILTER PANEL ═══ */
.cs-tours-fp-overlay { position: fixed; inset: 0; z-index: 700; display: none; }
.cs-tours-fp-overlay.open { display: flex; }
.cs-tours-fp-backdrop { position: absolute; inset: 0; background: rgba(45,26,8,.3); backdrop-filter: blur(2px); }
.cs-tours-fp-panel {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: 340px;
	max-width: 90vw;
	background: var(--white);
	box-shadow: -10px 0 40px rgba(45,26,8,.15);
	display: flex;
	flex-direction: column;
	animation: csToursFpSlide .25s ease;
}
@keyframes csToursFpSlide { from { transform: translateX(100%) } to { transform: translateX(0) } }
.cs-tours-fp-head {
	padding: 16px 20px;
	border-bottom: 1px solid var(--bg3);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cs-tours-fp-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--brown); }
.cs-tours-fp-close {
	width: 32px; height: 32px;
	border-radius: 50%;
	border: none;
	background: var(--bg);
	color: var(--stone);
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cs-tours-fp-close:hover { background: #fce8e8; color: #b84040; }
.cs-tours-fp-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cs-tours-fp-sec {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--bg3);
}
.cs-tours-fp-sec:last-child { border-bottom: none; }
.cs-tours-fp-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brown);
	margin-bottom: 8px;
}
.cs-tours-fp-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.cs-tours-fp-chip {
	padding: 5px 11px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 500;
	color: var(--text-m);
	border: 1.5px solid var(--bg3);
	background: var(--white);
	cursor: pointer;
	transition: all .15s;
}
.cs-tours-fp-chip:hover { border-color: var(--terra); color: var(--terra); }
.cs-tours-fp-chip.on { border-color: var(--terra); background: var(--terra-bg); color: var(--terra); font-weight: 600; }
.cs-tours-fp-foot {
	padding: 14px 20px;
	border-top: 1px solid var(--bg3);
	display: flex;
	gap: 8px;
}
.cs-tours-fp-reset {
	flex: 1;
	padding: 10px;
	border-radius: 30px;
	border: 1.5px solid var(--bg3);
	background: var(--white);
	color: var(--stone);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}
.cs-tours-fp-reset:hover { border-color: #b84040; color: #b84040; }
.cs-tours-fp-apply {
	flex: 2;
	padding: 10px;
	border-radius: 30px;
	background: var(--terra);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.cs-tours-fp-apply:hover { background: var(--terra-l); }

/* ═══ LISTING CARDS GRID ═══ */
.cs-tours-results-outer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px clamp(16px,3vw,40px);
}
.cs-tours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}
/* Carte (map) view */
.cs-tours-results-outer.cs-view-carte .cs-tours-grid {
	display: none !important;
}
.cs-tours-results-outer.cs-view-carte .cs-tours-pagination {
	display: none !important;
}
.cs-tours-carte-list {
	display: none;
}
.cs-tours-carte-map {
	display: none;
}
.cs-tours-results-outer.cs-view-carte .cs-tours-carte-map {
	display: block;
	position: relative;
	margin: 0 24px;
	height: 480px;
	border-radius: 16px;
	overflow: hidden;
	isolation: isolate;
	z-index: 0;
	box-shadow: 0 2px 16px rgba(59,35,20,.08);
}
.cs-view-carte .cs-tours-carte-list .cs-tours-card {
	flex-direction: row;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: 1px solid #e8ddd2;
}
.cs-view-carte .cs-tours-carte-list .cs-tours-card:hover {
	transform: none;
	box-shadow: inset 4px 0 0 #c96a3a;
	background: #fdf6f0;
}
.cs-view-carte .cs-tours-carte-list .cs-tours-card-thumb {
	width: 150px;
	min-height: 115px;
	height: auto;
	flex-shrink: 0;
}
@media(max-width:768px){ .cs-tours-results-outer.cs-view-carte .cs-tours-carte-map { height: 320px; margin: 0 12px; } }
/* ═══ CARD (maquette design) ═══ */
.cs-tours-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #ede8e1;
	box-shadow: 0 2px 12px rgba(59,35,20,.06);
	transition: box-shadow .2s, transform .2s;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.cs-tours-card:hover {
	box-shadow: 0 6px 24px rgba(59,35,20,.12);
	transform: translateY(-2px);
}
.cs-tours-card-thumb {
	position: relative;
	height: 200px;
	overflow: hidden;
}
.cs-tours-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.cs-tours-card:hover .cs-tours-card-thumb img {
	transform: scale(1.05);
}
.cs-tours-card-thumb-ph {
	width: 100%;
	height: 100%;
	background: var(--bg2, #f3ede6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}
.cs-tours-card-heart {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #9a8070;
	box-shadow: 0 2px 6px rgba(0,0,0,.1);
	z-index: 2;
}
.cs-tours-card-badges {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	z-index: 2;
}
.cs-tours-card-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(255,255,255,.9);
	color: #2d1a08;
}
.cs-tours-card-badge-green {
	background: #1a6b3a;
	color: #fff;
}
.cs-tours-card-badge-white {
	background: rgba(255,255,255,.9);
	color: #2d1a08;
}
.cs-tours-card-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.cs-tours-card-type {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #c96a3a;
}
.cs-tours-card-title {
	font-size: 15px;
	font-weight: 700;
	color: #2d1a08;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.cs-tours-card-loc {
	font-size: 12px;
	color: #5a4a3a;
}
.cs-tours-card-pin { color: #c96a3a; }
.cs-tours-card-pills {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 4px;
}
.cs-tours-card-pill {
	font-size: 11px;
	color: #5a4a3a;
	border: 1px solid #e8ddd2;
	border-radius: 12px;
	padding: 3px 10px;
	white-space: nowrap;
}
.cs-tours-card-pill-warm {
	background: #fff4ee;
	color: #c96a3a;
	border: none;
}
.cs-tours-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 8px;
}
.cs-tours-card-price {
	font-size: 18px;
	font-weight: 700;
	color: #2d1a08;
}
.cs-tours-card-price-unit {
	font-size: 12px;
	font-weight: 400;
	color: #9a8070;
}
.cs-tours-card-stars {
	font-size: 12px;
	color: #c96a3a;
	font-weight: 600;
}

/* ═══ PAGINATION ═══ */
.cs-tours-pagination {
	max-width: 1200px;
	margin: 20px auto 30px;
	padding: 0 clamp(16px,3vw,40px);
	display: flex;
	justify-content: center;
	gap: 4px;
}
.cs-tours-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-m);
	background: var(--white);
	border: 1.5px solid var(--bg3);
	text-decoration: none;
	transition: all .15s;
}
.cs-tours-pagination .page-numbers:hover {
	border-color: var(--terra);
	color: var(--terra);
}
.cs-tours-pagination .page-numbers.current {
	background: var(--terra);
	color: #fff;
	border-color: var(--terra);
}

/* ═══ NO RESULTS ═══ */
.cs-tours-no-results {
	text-align: center;
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.cs-tours-no-results-icon {
	font-size: 36px;
	margin-bottom: 12px;
}
.cs-tours-no-results h2 {
	font-size: 16px;
	font-weight: 600;
	color: var(--brown);
	margin-bottom: 6px;
}
.cs-tours-no-results p {
	font-size: 13px;
	color: var(--stone);
}

/* ═══ SECTIONS ═══ */
.cs-tours-page-section {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(16px,3vw,40px);
}
.cs-tours-section-gap { height: 44px; }
.cs-tours-sec-title,
.cs-tours-page-section h2.cs-tours-sec-title {
	font-family: 'Playfair Display', serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--brown) !important;
	margin-bottom: 4px;
}
.cs-tours-sec-title em,
.cs-tours-page-section h2.cs-tours-sec-title em {
	color: var(--terra) !important;
	font-style: italic;
	font-weight: 600 !important;
}
.cs-tours-sec-sub {
	font-size: 14px;
	color: var(--stone);
	margin-bottom: 14px;
}

/* ═══ HOW IT WORKS ═══ */
.cs-tours-how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 10px;
}
.cs-tours-how-card {
	background: var(--white);
	border-radius: 16px;
	border: 1px solid var(--bg3);
	padding: 22px 20px 18px;
	position: relative;
	overflow: hidden;
	transition: all .25s;
}
.cs-tours-how-card:hover {
	box-shadow: var(--shm);
	transform: translateY(-3px);
}
.cs-tours-how-num {
	position: absolute;
	top: -16px;
	left: -5px;
	font-family: 'Playfair Display', serif;
	font-size: 100px;
	font-weight: 700;
	color: var(--terra);
	opacity: .10;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}
.cs-tours-how-body {
	position: relative;
	z-index: 1;
}
.cs-tours-how-body h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--brown);
	margin-bottom: 6px;
	line-height: 1.3;
}
.cs-tours-how-body p {
	font-size: 13px;
	color: var(--stone);
	line-height: 1.55;
}

/* ═══ CROSS-SELL ═══ */
.cs-tours-trio-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px;
}
.cs-tours-trio-card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	min-height: 240px;
	cursor: pointer;
	transition: all .22s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	color: inherit;
}
.cs-tours-trio-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shm);
}
.cs-tours-trio-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform .4s;
}
.cs-tours-trio-card:hover .cs-tours-trio-card-bg {
	transform: scale(1.05);
}
.cs-tours-trio-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(45,26,8,.8) 0%, rgba(45,26,8,.2) 60%, transparent 100%);
}
.cs-tours-trio-card-body {
	position: relative;
	z-index: 1;
	padding: 20px;
	color: #fff;
}
.cs-tours-trio-card-body h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}
.cs-tours-trio-card-body p {
	font-size: 12px;
	opacity: .7;
	margin-bottom: 10px;
}
.cs-tours-trio-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 20px;
	border-radius: 30px;
	background: var(--terra);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
}
.cs-tours-trio-card-btn:hover {
	background: var(--terra-l);
}

/* ═══ PRO CTA ═══ */
.cs-tours-pro-cta {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	min-height: 240px;
}
.cs-tours-pro-cta-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cs-tours-pro-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(45,26,8,.95) 0%, rgba(45,26,8,.88) 25%, rgba(45,26,8,.7) 45%, rgba(45,26,8,.4) 65%, rgba(45,26,8,.15) 85%, transparent 100%);
}
.cs-tours-pro-cta-content {
	position: relative;
	z-index: 1;
	padding: 36px 40px;
	max-width: 580px;
}
.cs-tours-pro-cta-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}
.cs-tours-pro-cta-content h2 em {
	color: var(--terra-l);
	font-style: italic;
}
.cs-tours-pro-cta-content p {
	font-size: 14px;
	color: rgba(255,255,255,.65);
	max-width: 460px;
	line-height: 1.6;
	margin-bottom: 18px;
}
.cs-tours-pro-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 13px 28px;
	border-radius: 30px;
	background: var(--terra);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all .2s;
	box-shadow: 0 4px 20px rgba(201,106,58,.35);
	text-decoration: none;
}
.cs-tours-pro-cta-btn:hover {
	background: var(--terra-l);
	transform: translateY(-1px);
	color: #fff;
}

/* ═══ FAQ ═══ */
.cs-tours-faq-item {
	border: 1px solid var(--bg3);
	border-radius: var(--r);
	margin-bottom: 6px;
	background: var(--white);
	overflow: hidden;
}
.cs-tours-faq-q {
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--brown);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background .15s;
}
.cs-tours-faq-q:hover { background: var(--bg); }
.cs-tours-faq-arrow {
	font-size: 11px;
	color: var(--stone);
	transition: transform .2s;
	flex-shrink: 0;
	margin-left: 10px;
}
.cs-tours-faq-item.open .cs-tours-faq-arrow {
	transform: rotate(180deg);
}
.cs-tours-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease;
	font-size: 13px;
	color: var(--text-m);
	line-height: 1.7;
	padding: 0 18px;
}
.cs-tours-faq-item.open .cs-tours-faq-a {
	max-height: 800px;
	padding: 0 18px 16px;
}

/* ═══ SEO LONG CONTENT ═══ */
.cs-tours-seo-wrapper {
	background: #faf7f4;
	padding: 40px 0 50px;
	margin-bottom: 0;
}
.cs-tours-seo-long h2 {
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	color: var(--brown);
	margin: 22px 0 8px;
}
.cs-tours-seo-long h2:first-child { margin-top: 0; }
.cs-tours-seo-long h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--brown);
	margin: 16px 0 6px;
}
.cs-tours-seo-long p {
	font-size: 14px;
	color: var(--text-m);
	margin-bottom: 8px;
	line-height: 1.7;
}
.cs-tours-seo-long ul,
.cs-tours-seo-long ol {
	margin: 6px 0 10px 22px;
	font-size: 14px;
	color: var(--text-m);
	line-height: 1.7;
}
.cs-tours-seo-long li { margin-bottom: 3px; }

.cs-tours-seo-full {
	transition: max-height .4s ease;
	overflow: hidden;
}
.cs-tours-seo-full.seo-collapsed {
	max-height: 0;
	overflow: hidden;
}
.cs-tours-seo-fade-hint { position: relative; }
.cs-tours-seo-fade-hint::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3em;
	background: linear-gradient(transparent, #faf7f4);
	pointer-events: none;
	transition: opacity .3s;
}
.cs-tours-seo-fade-hint.no-fade::after { opacity: 0; }
.cs-tours-seo-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 9px 22px;
	background: transparent;
	color: var(--terra);
	border: 1.5px solid var(--terra);
	border-radius: 25px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all .2s;
}
.cs-tours-seo-toggle-btn:hover {
	background: var(--terra);
	color: #fff;
}
.cs-tours-seo-arrow {
	display: inline-block;
	transition: transform .3s;
	font-size: 10px;
}
.cs-tours-seo-arrow.open { transform: rotate(180deg); }

.cs-tours-seo-table-wrap {
	overflow-x: auto;
	margin: 18px 0;
	border-radius: 12px;
	border: 1px solid var(--bg3);
	background: var(--white);
}
.cs-tours-seo-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	min-width: 640px;
}
.cs-tours-seo-table thead { background: var(--bg); }
.cs-tours-seo-table th {
	padding: 12px 16px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--brown);
	border-bottom: 2px solid var(--bg3);
}
.cs-tours-seo-table td {
	padding: 11px 16px;
	border-bottom: 1px solid var(--bg3);
	color: var(--text-m);
	vertical-align: middle;
	line-height: 1.45;
}
.cs-tours-seo-table tr:last-child td { border-bottom: none; }
.cs-tours-seo-table tr:hover { background: var(--terra-bg); }
.cs-tours-seo-table td strong { color: var(--brown); font-weight: 600; }
.cs-tours-seo-chip {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}
.cs-tours-chip-pro { background: var(--terra-bg); color: var(--terra); border: 1px solid var(--terra-p); }
.cs-tours-chip-deb { background: #e8f4e8; color: #2d7a2d; border: 1px solid #c5e0c5; }
.cs-tours-chip-mix { background: #f0eaff; color: #6b4fa0; border: 1px solid #d9ccf0; }
.cs-tours-chip-budget { background: #fff3e0; color: #b07020; border: 1px solid #f0d8a8; }
.cs-tours-seo-note {
	background: var(--terra-bg);
	border-left: 3px solid var(--terra);
	padding: 12px 16px;
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	color: var(--text-m);
	margin: 12px 0;
	line-height: 1.6;
}

/* ═══ GUIDES / BLOG ═══ */
.cs-tours-guides-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 14px;
}
.cs-tours-guide-card {
	background: var(--white);
	border-radius: var(--r);
	border: 1px solid var(--bg3);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all .2s;
	display: flex;
	flex-direction: column;
}
.cs-tours-guide-card:hover {
	box-shadow: var(--shm);
	transform: translateY(-2px);
}
.cs-tours-guide-thumb {
	height: 160px;
	overflow: hidden;
}
.cs-tours-guide-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.cs-tours-guide-card:hover .cs-tours-guide-thumb img {
	transform: scale(1.05);
}
.cs-tours-guide-body {
	padding: 14px 16px;
}
.cs-tours-guide-body h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--brown);
	margin-bottom: 4px;
	line-height: 1.3;
}
.cs-tours-guide-body p {
	font-size: 12px;
	color: var(--stone);
	line-height: 1.5;
}
a.cs-tours-blog-btn,
.cs-tours-page-section a.cs-tours-blog-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px;
	margin-top: 18px;
	padding: 12px 24px !important;
	border-radius: 30px !important;
	background: #c96a3a !important;
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	border: none !important;
	text-decoration: none !important;
	transition: all .18s;
	box-shadow: none !important;
}
a.cs-tours-blog-btn:hover,
.cs-tours-page-section a.cs-tours-blog-btn:hover {
	background: var(--terra-l) !important;
	color: #fff !important;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
	.cs-tours-hero-row { flex-direction: column; text-align: center; }
	.cs-tours-hero-img { width: 120px; height: 120px; order: -1; }
	.cs-tours-hero-trust { justify-content: center; }
	.cs-tours-search-bar { display: none !important; }
	.cs-tours-search-mobile { display: block; }
	.cs-tours-grid { grid-template-columns: 1fr !important; }
	.cs-tours-trio-grid { grid-template-columns: 1fr; }
	.cs-tours-how-grid { grid-template-columns: 1fr !important; }
	.cs-tours-guides-grid { grid-template-columns: 1fr; }
	.cs-tours-chips-row { mask-image: none !important; -webkit-mask-image: none !important; padding-right: 20px; }
	.cs-tours-results-bar { flex-wrap: wrap; gap: 8px; }
	.cs-tours-rb-spacer { display: none; }
	.cs-tours-rb-cta { order: 10; width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 1024px) and (min-width: 769px) {
	.cs-tours-how-grid { grid-template-columns: repeat(2, 1fr) !important; }
}