/* ------------ Original Home Page Styling ------------ */
body {
	font-size: 16px;
	line-height: 1.6
}

nav {
	/* transition: box-shadow .2s */
}

.nl {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0
}

.nl img {
	height: 40px;
	width: auto;
	object-fit: contain
}

.nl-text {
	letter-spacing: -.01em
}

.nlinks {
	display: flex;
	align-items: center;
	list-style: none;
	flex: 1
}

.nlinks>li {
	position: relative
}

.nlinks>li>a,
.nlinks>li>button {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	padding: 0 14px;
	height: 68px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color .15s;
	white-space: nowrap;
	background: none
}

.nlinks>li>a:hover,
.nlinks>li>button:hover {
	color: var(--red)
}

.nchev {
	font-size: 9px;
	opacity: .35;
	transition: transform .2s
}

.nlinks>li:hover .nchev {
	transform: rotate(180deg)
}

.ndd {
	display: none;
	position: absolute;
	top: 68px;
	left: -20px;
	background: #fff;
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 24px;
	min-width: 480px;
	box-shadow: 0 20px 50px rgba(10, 2, 2, .1);
	z-index: 10;
	gap: 28px
}

.nlinks>li:hover .ndd {
	display: flex
}

.ndd-col h6 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--mut);
	margin-bottom: 12px
}

.ndd-col a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13.5px;
	color: var(--ink-2);
	padding: 7px 0;
	border-bottom: 1px solid var(--bdr);
	transition: color .15s;
	gap: 24px
}

.ndd-col a:last-child {
	border: none
}

.ndd-col a:hover {
	color: var(--red)
}

.ndd-col a .nbadge {
	font-size: 9px;
	background: var(--red);
	color: #fff;
	border-radius: 6px;
	padding: 1px 6px;
	font-weight: 700;
	flex-shrink: 0
}

.ndd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px
}

.ndd-tag {
	background: var(--sand);
	border: 1px solid var(--bdr);
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 500;
	color: var(--ink-2);
	transition: all .15s
}

.ndd-tag:hover {
	background: var(--pink);
	color: var(--red-d);
	border-color: var(--pink-m)
}

.nacts {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0
}

.nlogin {
	font-size: 13px;
	font-weight: 500;
	color: var(--mut)
}

.nham {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	border-radius: 8px;
	transition: background .15s;
	background: none;
	border: none;
	cursor: pointer
}

.nham:hover {
	background: var(--sand)
}

.nham span {
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	display: block;
	transition: all .3s
}

/* Mobile accordion */
/* LD - 19/05/26 - AI: can be removed. */
.mdd {
	border-bottom: 1px solid var(--bdr)
}

.mdd-hdr {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 17px 24px;
	font-family: 'Instrument Serif', serif;
	font-size: 20px;
	color: var(--ink);
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background .15s
}

.mdd-hdr:hover,
.mdd.open .mdd-hdr {
	background: var(--red-pale);
	color: var(--red)
}

.mdd-chev {
	font-size: 13px;
	opacity: .4;
	transition: transform .25s;
	display: inline-block
}

.mdd.open .mdd-chev {
	transform: rotate(180deg);
	opacity: .8
}

.mdd-body {
	display: none;
	background: var(--sand);
	padding: 8px 0 12px
}

.mdd.open .mdd-body {
	display: block
}

.mdd-section-label {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--mut);
	padding: 10px 24px 6px
}

.mdd-body a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	font-size: 15px;
	color: var(--ink-2);
	transition: color .15s;
	font-family: 'DM Sans', sans-serif;
	border: none
}

.mdd-body a:hover {
	color: var(--red)
}

.mdd-badge {
	font-size: 9px;
	background: var(--red);
	color: #fff;
	border-radius: 6px;
	padding: 2px 7px;
	font-weight: 700;
	font-family: 'DM Sans', sans-serif;
	flex-shrink: 0
}

.mdd-flat {
	display: flex;
	align-items: center;
	padding: 17px 24px;
	font-family: 'Instrument Serif', serif;
	font-size: 20px;
	color: var(--ink);
	border-bottom: 1px solid var(--bdr);
	transition: color .15s
}

.mdd-flat:hover {
	color: var(--red)
}

.mdd-flat.hot {
	color: var(--red);
	font-weight: 600
}

/* ── HERO ── */
.hero {
	position: relative;
	height: calc(100vh - 68px);
	min-height: 600px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end
}

.hero-bg {
	position: absolute;
	inset: 0
}

.hero-bg video,
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hero-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(10, 2, 2, .08) 0%, rgba(10, 2, 2, .38) 100%)
}

.hero-ov2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 75%;
	background: linear-gradient(to top, rgba(10, 2, 2, .92) 0%, rgba(10, 2, 2, .1) 60%, transparent 100%)
}

.hero-cnt {
	position: relative;
	z-index: 3;
	padding: 0 60px 68px;
	max-width: 820px
}

.hero h1 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(44px, 7.5vw, 84px);
	color: #fff;
	line-height: 1.0;
	margin-bottom: 16px;
	font-weight: 400
}

.hero h1 em {
	font-style: italic;
	color: var(--pink-m)
}

.hero-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, .52);
	max-width: 480px;
	line-height: 1.8;
	margin-bottom: 32px;
	font-weight: 300
}

/* SEARCH BAR */
.hero-search {
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(14px);
	border-radius: 18px;
	display: flex;
	align-items: center;
	max-width: 600px;
	box-shadow: 0 10px 36px rgba(10, 2, 2, .28);
	overflow: hidden
}

.hs-field {
	flex: 1;
	padding: 14px 22px;
	border-right: 1px solid var(--bdr)
}

.hs-field:last-of-type {
	border-right: none
}

.hs-field label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--mut);
	margin-bottom: 3px
}

.hs-field select {
	width: 100%;
	border: none;
	background: none;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	appearance: none;
	outline: none;
	cursor: pointer
}

.hs-btn {
	background: var(--red);
	color: #fff;
	padding: 0 28px;
	font-size: 14px;
	font-weight: 700;
	height: 100%;
	min-height: 68px;
	white-space: nowrap;
	transition: background .15s;
	flex-shrink: 0
}

.hs-btn:hover {
	background: var(--red-d)
}

/* hero trust - top right */
.hero-trust {
	position: absolute;
	top: 24px;
	right: 32px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 7px;
	align-items: flex-end
}

.htc {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 12px;
	color: rgba(255, 255, 255, .85)
}

/* mute */
.vmute-btn {
	position: absolute;
	bottom: 28px;
	right: 32px;
	z-index: 4;
	background: rgba(255, 255, 255, .12);
	border: 1.5px solid rgba(255, 255, 255, .22);
	color: #fff;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: background .2s
}

.vmute-btn:hover {
	background: rgba(255, 255, 255, .22)
}

/* ── TICKER ── */
.ticker-wrap {
	background: var(--red);
	padding: 0
}

.ticker {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	overflow: hidden;
	gap: 0;
	white-space: nowrap
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .04em;
	flex-shrink: 0;
	border-right: 1px solid rgba(255, 255, 255, .2)
}

.ticker-item:last-child {
	border-right: none
}

.ticker-item::after {
	content: none
}

/* ── ABOUT SPLIT ── */
.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 320px;
	overflow: hidden
}

.about-img {
	position: relative;
	overflow: hidden;
	height: 320px
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform .6s;
	display: block
}

.about:hover .about-img img {
	transform: scale(1.03)
}

.about-img-tag {
	position: absolute;
	bottom: 14px;
	left: 14px;
	background: #fff;
	border-radius: 10px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 4px 18px rgba(10, 2, 2, .14)
}

.about-copy {
	background: var(--sand);
	padding: 32px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 320px;
	overflow: hidden
}

.about-copy h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(18px, 1.9vw, 24px);
	color: var(--ink);
	margin: 4px 0 8px;
	line-height: 1.1;
	font-weight: 400
}

.about-copy h2 em {
	font-style: italic;
	color: var(--red)
}

.about-copy p {
	font-size: 12.5px;
	color: var(--mut);
	line-height: 1.6;
	margin-bottom: 6px;
	max-width: 440px
}

.about-copy p:last-of-type {
	margin-bottom: 12px
}

/* ── ITALIC OVERRIDE — Playfair Display for all italic text ── */
.hero h1 em,
.sec-h2 em,
.about-copy h2 em,
.vs-hdr h2 em,
.quiz-bar h3 em,
.comm-big em,
.f-logo em,
.nl-text em,
.section-h2 em,
.fc-title em,
.rcard em,
.dep-card em,
.topbar-title em,
.blog-title em {
	font-family: 'Playfair Display', serif;
	font-style: italic
}

/* ── SECTION UTILS ── */

/* ── TIKTOK SECTION ── */
.vs {
	background: var(--ink);
	padding: 0 0 64px
}

.vs-hdr {
	text-align: center;
	padding: 64px 24px 40px
}

.vs-hdr .eye {
	color: var(--pink-m);
	justify-content: center;
	display: flex;
	margin-bottom: 10px
}

.vs-hdr h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(26px, 4vw, 44px);
	color: #fff;
	font-weight: 400;
	margin-bottom: 10px
}

.vs-hdr h2 em {
	font-style: italic;
	color: var(--pink-m)
}

.vs-hdr p {
	font-size: 14px;
	color: rgba(255, 255, 255, .38);
	max-width: 400px;
	margin: 0 auto;
	line-height: 1.7
}

.vtrack {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	/* padding: 4px 40px 24px; */
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	/* Added */
	padding: 4px 0 24px;
	margin: 0 40px;
	justify-content: center;
	scroll-behavior: smooth;
}

.vtrack::-webkit-scrollbar {
	display: none
}

.vc {
	flex-shrink: 0;
	width: 186px;
	border-radius: 22px;
	overflow: hidden;
	cursor: pointer;
	scroll-snap-align: start;
	transition: transform .22s
}

.vc:hover {
	transform: scale(1.04)
}

.vcf {
	width: 100%;
	aspect-ratio: 9/16;
	position: relative
}

.vcbg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform .5s
}

.vc:hover .vcbg {
	transform: scale(1.06)
}

.vcfade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .94) 0%, rgba(0, 0, 0, .04) 50%, transparent 100%)
}

.vcplay {
	position: absolute;
	top: 50%;
	left: calc(50% - 16px);
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(232, 24, 10, .18);
	border: 2px solid rgba(255, 255, 255, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all .2s
}

.vc:hover .vcplay {
	background: var(--red);
	border-color: var(--red)
}

.vctri {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 14px;
	border-color: transparent transparent transparent #fff;
	margin-left: 3px
}

.vcside {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 2
}

.vca {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px
}

.vcbtn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	transition: background .15s
}

.vc:hover .vcbtn {
	background: rgba(232, 24, 10, .3)
}

.vcn {
	font-size: 9px;
	color: rgba(255, 255, 255, .5);
	font-weight: 600;
	text-align: center
}

.vcuser {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 2
}

.vcav {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--pink-m);
	border: 1.5px solid var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--red-d);
	overflow: hidden;
	flex-shrink: 0
}

.vcav img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.vcun {
	font-size: 10px;
	color: rgba(255, 255, 255, .78);
	font-weight: 500
}

.vcinfo {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 48px 16px 14px;
	z-index: 2
}

.vcdest {
	font-family: 'Instrument Serif', serif;
	font-size: 17px;
	color: #fff;
	margin-bottom: 3px;
	line-height: 1.2
}

.vcdays {
	font-size: 10px;
	color: rgba(255, 255, 255, .48);
	margin-bottom: 7px
}

.vctag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(232, 24, 10, .22);
	border: 1px solid rgba(232, 24, 10, .45);
	border-radius: 9px;
	padding: 3px 9px;
	font-size: 10px;
	color: var(--pink-m);
	font-weight: 500
}

.vhint {
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, .18);
	letter-spacing: .04em;
	padding: 4px
}

/* VIDEO MODAL */
.vmod {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .92);
	z-index: 999;
	align-items: center;
	justify-content: center;
	padding: 16px
}

.vmod.open {
	display: flex
}

.vmbox {
	width: min(340px, 90vw);
	background: #000;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(232, 24, 10, .28);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .8)
}

.vmframe {
	width: 100%;
	aspect-ratio: 9/16;
	position: relative;
	background: #111
}

#vmod-vid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	display: none
}

#vmod-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center
}

.vmov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .96) 0%, rgba(0, 0, 0, .06) 55%, transparent 100%);
	z-index: 2;
	pointer-events: none
}

.vmcl {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0, 0, 0, .55);
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	backdrop-filter: blur(4px)
}

.vmcl:hover {
	background: var(--red)
}

.vmmute {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0, 0, 0, .5);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	backdrop-filter: blur(4px)
}

.vmplay-big {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(232, 24, 10, .2);
	border: 2px solid rgba(255, 255, 255, .58);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	cursor: pointer;
	transition: all .2s
}

.vmplay-big.playing {
	opacity: 0;
	pointer-events: none
}

.vmplay-big:hover {
	background: var(--red);
	border-color: var(--red)
}

.vmside {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	z-index: 6
}

.vmsa {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	cursor: pointer
}

.vmsico {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px
}

.vmsa:hover .vmsico {
	background: rgba(232, 24, 10, .35)
}

.vmslbl {
	font-size: 9px;
	color: rgba(255, 255, 255, .48);
	font-weight: 600
}

.vmcnt {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px 16px;
	z-index: 6
}

.vmcnt h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 20px;
	color: #fff;
	margin-bottom: 4px;
	line-height: 1.2;
	font-weight: 400
}

.vmcnt p {
	font-size: 12px;
	color: rgba(255, 255, 255, .46);
	margin-bottom: 14px;
	line-height: 1.6
}

.vmbtn {
	background: var(--red);
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 700;
	width: 100%;
	cursor: pointer;
	transition: background .15s
}

.vmbtn:hover {
	background: var(--red-d)
}

/* ── VIBE FILTER ── */
.vf {
	background: var(--pink-s);
	padding: 14px 40px;
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
	position: sticky;
	top: 0;
	z-index: 200
}

.vf-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap
}

.vf-lbl {
	font-size: 10px;
	font-weight: 700;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: .1em;
	white-space: nowrap
}

/* ── DESTINATIONS ── */
.dest-sec {
	padding: 80px 40px;
	background: var(--white)
}

.dest-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 0
}

.dest-row2 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin-top: 14px
}

.dcard {
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: block;
	transition: transform .25s
}

.dcard:hover {
	transform: translateY(-5px)
}

.dcard img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
	display: block
}

.dcard:hover img {
	transform: scale(1.06)
}

.dcard-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .82) 0%, rgba(10, 2, 2, .06) 55%, transparent 100%)
}

.dcard-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px
}

.dcard-name {
	font-family: 'Instrument Serif', serif;
	font-size: 22px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 7px
}

.dcard-tags {
	display: flex;
	gap: 5px;
	flex-wrap: wrap
}

.dtag {
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 7px;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 600;
	color: rgba(255, 255, 255, .85)
}

.dtag.hot {
	background: var(--red);
	border-color: var(--red)
}

.dest-grid .dcard {
	aspect-ratio: 16/9
}

.dest-row2 .dcard {
	aspect-ratio: 3/4
}

.dest-row2 .dcard .dcard-name {
	font-size: 18px
}

/* ── TRIPS ── */
.trips-sec {
	padding: 80px 40px;
	background: var(--sand)
}

.tgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.tc-img {
	height: 210px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0
}

.tcph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
	display: block
}

.tcfade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .65) 0%, transparent 55%)
}

.tcbadges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 5px
}

.bdg {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 9px;
	text-transform: uppercase;
	letter-spacing: .04em
}

.bdg.br {
	background: var(--red);
	color: #fff
}

.bdg.bg {
	background: #2D7A4A;
	color: #fff
}

.bdg.bp {
	background: var(--pink-m);
	color: #7A0804
}

.bdg.bd {
	background: #1A5FA8;
	color: #fff
}

.bdg.bw {
	background: #fff;
	color: var(--ink)
}

.tcbot {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.tcroute {
	font-size: 11px;
	color: rgba(255, 255, 255, .72);
	font-weight: 500
}

.tcpl {
	font-size: 10px;
	color: var(--pink-m);
	font-weight: 600;
	background: rgba(232, 24, 10, .22);
	border: 1px solid rgba(232, 24, 10, .38);
	border-radius: 7px;
	padding: 2px 7px
}

.tc-body {
	padding: 16px 18px 18px
}

.tc-days {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--mut);
	margin-bottom: 4px
}

.tc-title {
	font-family: 'Instrument Serif', serif;
	font-size: 19px;
	color: var(--ink);
	margin-bottom: 6px;
	line-height: 1.2;
	font-weight: 400
}

.tc-desc {
	font-size: 13px;
	color: var(--mut);
	line-height: 1.55;
	margin-bottom: 14px
}

.tc-foot {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.tc-price .fr {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--mut)
}

.tc-price .was {
	font-size: 13px;
	color: var(--mut);
	text-decoration: line-through;
	margin-right: 4px
}

.tc-price .now {
	font-family: 'Instrument Serif', serif;
	font-size: 26px;
	color: var(--red);
	line-height: 1;
	font-style: italic
}

.tc-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--bdr);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--ink);
	transition: all .2s;
	flex-shrink: 0
}

/* quiz bar */
.quiz-bar {
	background: var(--pink);
	border-radius: 18px;
	padding: 28px 36px;
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}

.quiz-bar h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--ink)
}

.quiz-bar h3 em {
	font-style: italic;
	color: var(--red)
}

.quiz-bar p {
	font-size: 13px;
	color: var(--mut);
	margin-top: 3px
}

.btn-quiz {
	background: var(--ink);
	color: #fff;
	border-radius: 22px;
	padding: 12px 26px;
	font-size: 14px;
	font-weight: 700;
	transition: background .2s;
	white-space: nowrap
}

.btn-quiz:hover {
	background: var(--red)
}

/* ── GALLERY ── */
.gal-sec {
	padding: 72px 40px;
	background: var(--white)
}

.gal-tabs {
	display: flex;
	gap: 7px;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 24px;
	flex-wrap: wrap
}

.gal-tabs::-webkit-scrollbar {
	display: none
}

.gtab {
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 20px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-2);
	transition: all .15s;
	cursor: pointer;
	white-space: nowrap
}

.gtab.active,
.gtab:hover {
	background: var(--red);
	color: #fff;
	border-color: var(--red)
}

.gal-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4px;
	border-radius: 16px;
	overflow: hidden
}

.gphoto {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	/* cursor: pointer */
}

.gphoto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s, filter .3s;
	display: block
}

.gphoto:hover img {
	transform: scale(1.08);
	filter: brightness(.82)
}

.gphoto-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .72) 0%, transparent 60%);
	opacity: 0;
	transition: opacity .3s;
	display: flex;
	align-items: flex-end;
	padding: 10px
}

.gphoto:hover .gphoto-ov {
	opacity: 1
}

.gphoto-lbl {
	font-size: 11px;
	color: #fff;
	font-weight: 500
}

.gphoto-dest {
	position: absolute;
	top: 7px;
	left: 7px;
	background: rgba(232, 24, 10, .8);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 2px 7px;
	border-radius: 7px
}

/* ── WHY GWT ── */
.why-sec {
	padding: 80px 40px;
	background: var(--sand)
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--bdr);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--bdr);
	margin-top: 0
}

.wcard {
	background: var(--white);
	padding: 32px;
	transition: background .2s
}

.wcard:hover {
	background: var(--red-pale)
}

.wcard-img {
	height: 170px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 18px
}

.wcard-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s
}

.wcard:hover .wcard-img img {
	transform: scale(1.05)
}

.wcard h4 {
	font-family: 'Instrument Serif', serif;
	font-size: 18px;
	color: var(--ink);
	margin-bottom: 7px;
	font-weight: 400
}

.wcard p {
	font-size: 13px;
	color: var(--mut);
	line-height: 1.65
}

/* ── TRUST STRIP ── */
.trust-strip {
	background: var(--ink);
	padding: 36px 40px
}

.trust-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px
}

.trust-item {
	text-align: center
}

.trust-n {
	font-family: 'Instrument Serif', serif;
	font-size: 34px;
	color: var(--pink-m);
	font-style: italic;
	line-height: 1;
	margin-bottom: 6px
}

.trust-l {
	font-size: 13px;
	color: rgba(255, 255, 255, .45);
	font-weight: 500
}

/* ── REVIEWS ── */
.rev-sec {
	padding: 80px 40px;
	background: var(--white)
}

.rev-hdr {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 36px;
	flex-wrap: wrap;
	gap: 16px
}

.tp-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--sand);
	border: 1px solid var(--bdr);
	border-radius: 12px;
	padding: 10px 18px
}

.tp-stars {
	color: var(--red);
	font-size: 18px;
	letter-spacing: 2px
}

.tp-score {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink)
}

.tp-lbl {
	font-size: 12px;
	color: var(--mut)
}

.revrow {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
	scroll-snap-type: x mandatory
}

.revrow::-webkit-scrollbar {
	display: none
}

.rcard {
	flex-shrink: 0;
	width: 295px;
	background: var(--sand);
	border: 1px solid var(--bdr);
	border-radius: 18px;
	padding: 22px;
	transition: transform .2s, box-shadow .2s;
	scroll-snap-align: start
}

.rcard:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(232, 24, 10, .08)
}

.r-stars {
	color: var(--red);
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 12px
}

.r-txt {
	font-size: 13.5px;
	color: var(--ink-2);
	line-height: 1.7;
	margin-bottom: 14px;
	font-style: italic;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.r-who {
	display: flex;
	align-items: center;
	gap: 10px
}

.r-av {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pink-m);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Instrument Serif', serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--red-d);
	flex-shrink: 0
}

.r-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink)
}

.r-trip {
	font-size: 11px;
	color: var(--mut)
}

/* ── UGC STRIP ── */
.ugc-sec {
	padding: 0 40px 72px;
	background: var(--white)
}

.ugcrow {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px
}

.ugcrow::-webkit-scrollbar {
	display: none
}

.ugct {
	flex-shrink: 0;
	width: 172px;
	height: 210px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	/* cursor: pointer */
}

.ugct img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s
}

.ugct:hover img {
	transform: scale(1.08)
}

.ugcov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .65) 0%, transparent 55%);
	opacity: 0;
	transition: opacity .3s
}

.ugct:hover .ugcov {
	opacity: 1
}

.ugch {
	position: absolute;
	bottom: 9px;
	left: 10px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	opacity: .9
}

.ugclk {
	position: absolute;
	bottom: 9px;
	right: 10px;
	font-size: 10px;
	color: var(--pink-m);
	font-weight: 600
}

/* ── COMMUNITY CTA ── */
.comm-sec {
	position: relative;
	overflow: hidden;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 40px
}

.comm-bg {
	position: absolute;
	inset: 0
}

.comm-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.comm-ov {
	position: absolute;
	inset: 0;
	background: rgba(10, 2, 2, .66)
}

.comm-body {
	position: relative;
	z-index: 2;
	max-width: 640px
}

.comm-big {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(52px, 9vw, 96px);
	color: #fff;
	line-height: .98;
	margin-bottom: 22px;
	font-weight: 400
}

.comm-big em {
	font-style: italic;
	color: var(--pink-m)
}

.comm-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, .5);
	margin-bottom: 30px;
	line-height: 1.8;
	max-width: 440px;
	margin-left: auto;
	margin-right: auto
}

.comm-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap
}

.btn-w {
	background: #fff;
	color: var(--ink);
	border-radius: 24px;
	padding: 14px 30px;
	font-size: 14px;
	font-weight: 700;
	transition: all .2s
}

.btn-w:hover {
	background: var(--pink);
	transform: translateY(-2px)
}

.btn-gh {
	background: rgba(255, 255, 255, .1);
	border: 1.5px solid rgba(255, 255, 255, .3);
	color: #fff;
	border-radius: 24px;
	padding: 13px 26px;
	font-size: 14px;
	font-weight: 600;
	transition: all .2s
}

.btn-gh:hover {
	background: rgba(255, 255, 255, .2)
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
	width: 4px;
	height: 4px
}

::-webkit-scrollbar-track {
	background: transparent
}

::-webkit-scrollbar-thumb {
	background: var(--pink-m);
	border-radius: 2px
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
	.tgrid {
		grid-template-columns: repeat(2, 1fr)
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.gal-grid {
		grid-template-columns: repeat(4, 1fr)
	}
}

@media(max-width:900px) {
	.dest-row2 {
		grid-template-columns: repeat(3, 1fr)
	}

	.trust-inner {
		grid-template-columns: repeat(2, 1fr)
	}

	.about {
		grid-template-columns: 1fr;
		height: auto;
		overflow: visible
	}

	.about-img {
		height: 280px;
		max-height: 280px
	}

	.about-copy {
		height: auto;
		padding: 32px 28px
	}
}

@media(max-width:768px) {

	.nlinks {
		display: none
	}

	.nham {
		display: flex
	}

	.hero-cnt {
		padding: 0 24px 56px
	}

	.hero-trust {
		display: none
	}

	.hero-search {
		flex-direction: column;
		border-radius: 14px
	}

	.hs-field {
		border-right: none;
		border-bottom: 1px solid var(--bdr);
		padding: 12px 16px
	}

	.hs-field:last-of-type {
		border-bottom: none
	}

	.hs-btn {
		padding: 16px;
		width: 100%
	}

	.dest-sec,
	.trips-sec,
	.gal-sec,
	.why-sec,
	.rev-sec,
	.ugc-sec {
		padding: 48px 20px
	}

	.vf {
		padding: 12px 20px
	}

	.dest-grid {
		grid-template-columns: 1fr
	}

	.dest-row2 {
		grid-template-columns: repeat(2, 1fr)
	}

	.tgrid {
		grid-template-columns: 1fr
	}

	.why-grid {
		grid-template-columns: 1fr
	}

	.gal-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.trust-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px
	}

	.about {
		grid-template-columns: 1fr;
		height: auto;
		overflow: visible
	}

	.about-img {
		height: 260px;
		max-height: 260px
	}

	.about-copy {
		height: auto;
		padding: 28px 24px
	}
}

@media(max-width:480px) {
	.dest-row2 {
		grid-template-columns: 1fr 1fr
	}

	.gal-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.trust-inner {
		grid-template-columns: 1fr 1fr
	}
}

/* ------------ Original - Filter Page Styling ------------ */
/* ── MAIN LAYOUT ── */
.page-wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 48px 40px 80px;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 36px;
	align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
	position: sticky;
	top: 84px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sb-toggle {
	display: none;
	width: 100%;
	padding: 13px 18px;
	background: var(--pink);
	border: 1.5px solid var(--bdr);
	border-radius: 12px;
	cursor: pointer;
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--ink);
	align-items: center;
	justify-content: space-between;
}

.sb-toggle svg {
	width: 16px;
	height: 16px;
	stroke: var(--ink);
	stroke-width: 2;
	fill: none;
	transition: transform .25s;
}

.sb-toggle.open svg {
	transform: rotate(180deg);
}

.sb-panels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sb-card {
	background: var(--white);
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--bdr);
}

.sb-head {
	padding: 13px 16px;
	background: var(--pink);
	border-bottom: 1px solid var(--bdr);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

.sb-head h3 {
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--ink);
}

.sb-head-r {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sb-clr {
	font-size: 11px;
	color: var(--red);
	font-weight: 700;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
}

.sb-chev {
	width: 14px;
	height: 14px;
	stroke: var(--ink);
	stroke-width: 2.5;
	fill: none;
	transition: transform .25s;
	flex-shrink: 0;
}

.sb-card.col .sb-chev {
	transform: rotate(-90deg);
}

.sb-body {
	padding: 13px 16px 15px;
}

.sb-card.col .sb-body {
	display: none;
}

.sale-card {
	background: var(--pink);
	border-radius: 14px;
	border: 1.5px solid var(--bdr);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: border-color .15s;
}

.sale-card.on {
	border-color: var(--red);
}

.sale-lbl {
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	color: var(--ink);
}

.sale-sub {
	font-size: 12px;
	color: var(--mut);
	margin-top: 2px;
}

.tog-t {
	width: 38px;
	height: 22px;
	border-radius: 11px;
	background: #d0c8c8;
	position: relative;
	transition: background .2s;
	flex-shrink: 0;
}

.sale-card.on .tog-t {
	background: var(--red);
}

.tog-k {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 3px;
	left: 3px;
	transition: transform .2s;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.sale-card.on .tog-k {
	transform: translateX(16px);
}

/* Region chips */
.region-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.rchip {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border-radius: 10px;
	border: 1.5px solid var(--bdr);
	background: var(--white);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	transition: all .15s;
}

.rchip:hover {
	border-color: var(--red);
	background: var(--red-pale);
}

.rchip.on {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.rchip .ri {
	font-size: 15px;
}

/* Vibe tiles */
.vibe-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}

.vtile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 10px 6px;
	border-radius: 10px;
	border: 1.5px solid var(--bdr);
	background: var(--white);
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	color: var(--mut);
	text-align: center;
	transition: all .15s;
}

.vtile:hover {
	border-color: var(--red);
	color: var(--red);
}

.vtile.on {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.vtile-icon {
	font-size: 19px;
}

/* Duration slider */
.range-wrap {
	padding: 4px 0;
}

.range-lbls {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--mut);
	margin-bottom: 10px;
}

.range-v {
	font-weight: 700;
	color: var(--ink);
}

/* single range removed - dual range used instead */
/* Price opts */
.price-opts {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.popt {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border-radius: 10px;
	border: 1.5px solid var(--bdr);
	background: var(--white);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	transition: all .15s;
}

.popt:hover {
	border-color: var(--red);
}

.popt.on {
	background: var(--pink);
	border-color: var(--red);
}

.popt input[type="checkbox"] {
	accent-color: var(--red);
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	cursor: pointer;
}

/* Dual range */
.dur-range-wrap {
	position: relative;
	height: 22px;
	margin: 8px 0 4px;
}

.dur-fill {
	top: 9px;
}

.dur-track {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	height: 4px;
	background: var(--bdr);
	border-radius: 2px;
	pointer-events: none;
}

.dur-fill {
	position: absolute;
	height: 4px;
	background: var(--red);
	border-radius: 2px;
	pointer-events: none;
}

.dur-range-wrap input[type="range"] {
	position: absolute;
	width: 100%;
	height: 4px;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	pointer-events: none;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
}

.dur-range-wrap input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--red);
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(232, 24, 10, .3);
	pointer-events: all;
	cursor: pointer;
}

.dur-range-wrap input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--red);
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(232, 24, 10, .3);
	pointer-events: all;
	cursor: pointer;
	border: 3px solid #fff;
}

.dur-range-wrap input[type="range"]::-webkit-slider-track {
	background: transparent;
}

/* Date inputs */
.date-inputs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.date-lbl {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--mut);
	display: block;
	margin-bottom: 4px;
}

.date-inp {
	width: 100%;
	padding: 9px 11px;
	border: 1.5px solid var(--bdr);
	border-radius: 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--ink);
	background: var(--white);
	cursor: pointer;
	outline: none;
}

.date-inp:focus {
	border-color: var(--red);
}

/* ── RESULTS ── */
.results {
	min-width: 0;
}

.results-hdr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.results-hdr h2 {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 400;
	color: var(--ink);
}

.results-hdr h2 em {
	font-style: italic;
	color: var(--red);
}

.results-r {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.rcount {
	font-size: 13px;
	color: var(--mut);
}

.rcount strong {
	color: var(--ink);
}

.sort-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--mut);
}

.sort-wrap select {
	border: 1.5px solid var(--bdr);
	border-radius: 8px;
	padding: 7px 11px;
	background: var(--white);
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--ink);
	cursor: pointer;
	outline: none;
}

.sort-wrap select:focus {
	border-color: var(--red);
}

.active-pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	min-height: 2px;
}

.apill {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--pink);
	border: 1px solid var(--bdr);
	color: var(--ink);
	border-radius: 50px;
	padding: 4px 10px 4px 12px;
	font-size: 12px;
	font-weight: 600;
}

.apill button {
	background: var(--red);
	border: none;
	cursor: pointer;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	color: #fff;
	flex-shrink: 0;
}

/* ── TOUR CARDS — EXACT HOMEPAGE STYLE ── */
.tgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tcard {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--bdr);
	transition: transform .22s, box-shadow .22s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.tcard:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(232, 24, 10, .1);
}

.tcard:hover .tcph {
	transform: scale(1.06);
}

.tcard:hover .tc-arrow {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.tcard.hidden {
	display: none;
}

.tc-img {
	height: 210px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}

.tcph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
	display: block;
}

.tcfade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .65) 0%, transparent 55%);
}

.tcbadges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 5px;
}

.bdg {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 9px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.bdg.br {
	background: var(--red);
	color: #fff;
}

.bdg.bg {
	background: #2D7A4A;
	color: #fff;
}

.bdg.bp {
	background: var(--pink-m);
	color: #7A0804;
}

.tcbot {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tcroute {
	font-size: 11px;
	color: rgba(255, 255, 255, .72);
	font-weight: 500;
}

.tc-body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tc-days {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--mut);
	margin-bottom: 4px;
}

.tc-title {
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	color: var(--ink);
	margin-bottom: 6px;
	line-height: 1.2;
	font-weight: 400;
}

.tc-desc {
	font-size: 13px;
	color: var(--mut);
	line-height: 1.55;
	margin-bottom: 14px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tc-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.tc-price .fr {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--mut);
}

.tc-price .was {
	font-size: 13px;
	color: var(--mut);
	text-decoration: line-through;
	margin-right: 4px;
}

.tc-price .now {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	color: var(--red);
	line-height: 1;
	font-style: italic;
}

.tc-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--bdr);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--ink);
	transition: all .2s;
	flex-shrink: 0;
}

/* Date pills (shown only when date filter active) */
.dep-pills {
	display: none;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.dep-pills.show {
	display: flex;
}

.dep-pill {
	background: var(--pink);
	color: var(--ink-2);
	border-radius: 50px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
}

/* No results */
.no-results {
	text-align: center;
	padding: 64px 20px;
	display: none;
}

.no-results.show {
	display: block;
}

.no-results h3 {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	color: var(--ink);
	margin-bottom: 10px;
}

.no-results p {
	font-size: 15px;
	color: var(--mut);
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
	.tgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:900px) {
	.page-wrap {
		grid-template-columns: 1fr;
		padding: 32px 24px 60px;
	}

	.sidebar {
		position: static;
	}

	.sb-toggle {
		display: flex;
		margin-bottom: 8px;
	}

	.sb-panels {
		display: none;
	}

	.sb-panels.open {
		display: flex;
	}
}

@media(max-width:600px) {
	.hero-inner {
		padding: 56px 20px;
	}

	.hero h1 {
		font-size: clamp(40px, 9vw, 56px);
	}

	.page-wrap {
		padding: 24px 16px 48px;
	}

	.tgrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hero h1 {
		font-size: 34px;
	}
}

@media screen and (max-width: 480px) {
	.vtrack {
		margin: 0;
		justify-content: unset;
	}
}

/* ------------ Original - Blog page Styling ------------ */
/* styling moved from file - Y:\sites\galswhotravel\templates\news_article.php */
.art-hero {
	position: relative;
	height: 520px;
	overflow: hidden
}

.art-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.art-hero-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 2, 2, .88) 0%, rgba(10, 2, 2, .1) 55%, transparent 100%)
}

.art-hero-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 48px 40px;
	max-width: 900px;
	margin: 0 auto
}

.art-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 12px
}

.art-breadcrumb a {
	color: rgba(255, 255, 255, .55);
	transition: color .15s
}

.art-breadcrumb a:hover {
	color: var(--pink-m)
}

.art-cat {
	display: inline-flex;
	background: var(--red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 14px
}

.art-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(28px, 5vw, 52px);
	color: #fff;
	font-weight: 400;
	line-height: 1.08;
	margin-bottom: 16px
}

.art-title em {
	font-style: italic;
	color: var(--pink-m)
}

.art-meta {
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	display: flex;
	align-items: center;
	gap: 16px
}

.art-meta span {
	display: flex;
	align-items: center;
	gap: 5px
}

.art-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 40px
}

.art-excerpt {
	font-size: 18px;
	color: var(--mut);
	line-height: 1.75;
	margin-bottom: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--bdr);
	font-weight: 300
}

.art-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--ink-2)
}

.art-content h2 {
	/* font-family: 'Instrument Serif', serif; */
	font-size: 28px;
	font-weight: 400;
	color: var(--ink);
	margin: 36px 0 14px;
	line-height: 1.2
}

.art-content h2 em {
	font-style: italic;
	color: var(--red)
}

.art-content h3 {
	/* font-family: 'Instrument Serif', serif; */
	font-size: 22px;
	font-weight: 400;
	color: var(--ink);
	margin: 28px 0 10px
}

.art-content p {
	margin-bottom: 18px
}

.art-content blockquote {
	border-left: 3px solid var(--red);
	padding-left: 20px;
	margin: 24px 0;
	color: var(--mut);
	font-style: italic;
	font-size: 17px;
	line-height: 1.7
}

.art-share {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid var(--bdr);
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap
}

.art-share span {
	font-size: 13px;
	font-weight: 600;
	color: var(--mut)
}

.share-btn {
	border: 1.5px solid var(--bdr);
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	background: var(--white);
	cursor: pointer;
	transition: all .15s
}

.share-btn:hover {
	border-color: var(--red);
	color: var(--red)
}

.author-box {
	background: var(--sand);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	gap: 18px;
	align-items: center;
	margin-top: 40px
}

.author-av {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--pink-m);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Instrument Serif', serif;
	font-size: 22px;
	color: var(--red-d);
	flex-shrink: 0
}

.author-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 3px
}

.author-bio {
	font-size: 13px;
	color: var(--mut);
	line-height: 1.6
}

.art-cta {
	background: var(--ink);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin: 48px 0 0
}

.art-cta h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 26px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 8px
}

.art-cta h3 em {
	font-style: italic;
	color: var(--pink-m)
}

.art-cta p {
	font-size: 14px;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 20px
}

.art-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--red);
	color: #fff;
	border-radius: 24px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	transition: background .2s
}

.art-cta a:hover {
	background: var(--red-d)
}

.related-sec {
	padding: 56px 40px;
	max-width: 1200px;
	margin: 0 auto
}

.rel-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 24px
}

.rel-card {
	border-radius: 14px;
	transition: transform .2s
}

.rel-card:hover {
	transform: translateY(-4px)
}

.rel-img {
	height: 160px
}

.rel-img img {
	transition: transform .3s
}

.rel-card:hover .rel-img img {
	transform: scale(1.06)
}

.rel-body {
	padding: 16px
}

.rel-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--red);
	letter-spacing: .08em;
	margin-bottom: 5px
}

.rel-title {
	font-family: 'Instrument Serif', serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--ink);
	line-height: 1.3
}

#read-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--red);
	z-index: 999;
	transition: width .1s linear;
	width: 0
}

@media(max-width:768px) {

	.art-hero {
		height: 360px
	}

	.art-hero-body {
		padding: 28px 20px
	}

	.art-wrap {
		padding: 36px 20px
	}

	.related-sec {
		padding: 36px 20px
	}

	.rel-grid {
		grid-template-columns: 1fr
	}
}

/*  Original - Footer (on beige background) */
/* ── OPTION B FOOTER ── */
a {
	text-decoration: none;
	color: inherit;
}

.fs-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	flex-shrink: 0;
}

.fs-icon svg {
	width: 17px;
	height: 17px;
}

.footer-b {
	background: #FAF6F1;
}

.fb-cta {
	background: #E8180A;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

.fb-cta::after {
	content: '';
	position: absolute;
	right: 320px;
	top: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
}

.fb-cta-sticker {
	width: 90px;
	height: 90px;
	object-fit: contain;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2));
}

.fb-cta-text h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 400;
	color: #fff;
	margin-bottom: 6px;
}

.fb-cta-text h2 em {
	font-style: italic;
	color: #FFC5CB;
}

.fb-cta-text p {
	font-size: 13px;
	color: rgba(255, 255, 255, .75);
}

.fb-cta-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	width: 320px;
}

.fb-cta-name-row {
	display: flex;
	gap: 8px;
}

.fb-cta-name-row input {
	flex: 1;
	min-width: 0;
}

.fb-cta-email-row {
	display: flex;
	gap: 8px;
}

.fb-cta-form input {
	background: rgba(255, 255, 255, .15);
	border: 1.5px solid rgba(255, 255, 255, .3);
	border-radius: 50px;
	padding: 12px 18px;
	color: #fff;
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	outline: none;
	transition: border-color .2s;
	width: 100%;
}

.fb-cta-form input::placeholder {
	color: rgba(255, 255, 255, .45);
}

.fb-cta-form input:focus {
	border-color: #fff;
}

.fb-cta-email-row input {
	flex: 1;
	min-width: 0;
}

.fb-cta-form button {
	background: #fff;
	color: #E8180A;
	border: none;
	border-radius: 50px;
	padding: 12px 22px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	font-family: 'DM Sans', sans-serif;
	transition: all .2s;
	flex-shrink: 0;
}

.fb-cta-form button:hover {
	background: #FFE3E6;
}

.fb-cta-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.fb-cta-consent input[type="checkbox"] {
	appearance: none;
	width: 16px;
	height: 16px;
	min-width: 16px;
	margin-top: 1px;
	border: 1.5px solid rgba(255, 255, 255, .5);
	border-radius: 4px;
	background: rgba(255, 255, 255, .12);
	cursor: pointer;
	flex-shrink: 0;
}

.fb-cta-consent input[type="checkbox"]:checked {
	background: #fff;
	border-color: #fff;
}

.fb-cta-consent label {
	font-size: 11px;
	line-height: 1.4;
	color: rgba(255, 255, 255, .75);
}

.fb-cta-consent a {
	color: #fff;
	text-decoration: underline;
}

.fb-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 24px 0;
}

.fb-grid {
	display: grid;
	grid-template-columns: 200px 1fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 36px;
	border-bottom: 2px solid #f5d0d5;
}

.fb-brand img {
	height: 60px;
	width: auto;
	border-radius: 8px;
	margin-bottom: 14px;
	display: block;
}

.fb-tagline {
	font-size: 12px;
	color: #6b5a60;
	line-height: 1.7;
	margin-bottom: 18px;
	max-width: 190px;
}

.fb-socials {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.fb-socials .fs-icon {
	border: 1.5px solid #f5d0d5;
	color: #6b5a60;
	background: #fff;
}

.fb-socials .fs-icon:hover {
	border-color: #E8180A;
	color: #E8180A;
}

.fb-col h4 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #6b5a60;
	margin-bottom: 16px;
	opacity: .6;
}

.fb-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fb-col a {
	font-size: 13px;
	color: #0B213E;
	transition: color .15s;
}

.fb-col a:hover {
	color: #E8180A;
}

.fb-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0 28px;
	flex-wrap: wrap;
	gap: 12px;
}

.fb-stickers {
	display: flex;
	gap: 12px;
	align-items: center;
}

.fb-stickers img {
	height: 44px;
	width: auto;
	object-fit: contain;
}

.fb-copy {
	font-size: 11px;
	color: rgba(11, 33, 62, .35);
}

.fb-legal {
	display: flex;
	gap: 16px;
}

.fb-legal a {
	font-size: 11px;
	color: rgba(11, 33, 62, .4);
	transition: color .15s;
}

.fb-legal a:hover {
	color: #E8180A;
}

@media(max-width:768px) {
	.fb-cta {
		flex-direction: column;
		padding: 20px 18px;
	}

	.fb-cta-form {
		width: 100%;
	}

	.fb-cta-form input {
		width: 100%;
		flex: 1;
	}

	.fb-grid {
		grid-template-columns: 1fr 1fr;
	}

	.fb-main {
		padding: 24px 20px 0;
	}
}

@media(max-width:480px) {
	.fb-grid {
		grid-template-columns: 1fr;
	}
}


/* Tour Page - original & Custom style */

  /* *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;} */

.tour_page body {
	font-family:var(--font-b);
	background:var(--page);
	color:var(--navy);
}

/* ── HERO SLIDESHOW ── */
.tour_page .hero {
	position: relative;
	height: 70vh;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.hero-slides {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 40%;
	opacity: 0;
	transition: opacity .8s ease;
}

.hero-slide.active {
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .0) 40%, rgba(0, 0, 0, .45) 75%, rgba(0, 0, 0, .62) 100%);
}

.hero-content {
	position: relative;
	z-index: 4;
	padding: 0 40px 100px;
	width: 100%;
}

.tour_page .chip {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .03em;
	font-family: var(--font-b);
}

.tour_page .chip-red {
	background: var(--red);
	color: #fff;
}

.tour_page .chip-pink {
	background: var(--pink);
	color: var(--navy);
}

.tour_page .chip-navy {
	background: var(--navy);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .3);
}

.tour_page .chip-green {
	background: #1a9c5e;
	color: #fff;
}

.tour_page .hero h1 {
	font-family: var(--font-h);
	font-size: clamp(44px, 7vw, 86px);
	font-weight: 400;
	color: #fff;
	line-height: 1.0;
	margin-bottom: 14px;
}

.tour_page .hero h1 em {
	font-style: italic;
	color: var(--pink);
}

.tour_page .hero-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .8);
	max-width: 560px;
	line-height: 1.65;
}

/* Arrows */
.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(4px);
	border: 1.5px solid rgba(255, 255, 255, .3);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.hero-arrow:hover {
	background: rgba(255, 255, 255, .32);
}

.hero-prev {
	left: 20px;
}

.hero-next {
	right: 20px;
}

/* Dots */
.hero-dots {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	border: none;
	cursor: pointer;
	transition: all .2s;
	padding: 0;
}

.hero-dot.active {
	background: #fff;
	width: 22px;
	border-radius: 4px;
}

/* Thumbs */
.hero-thumbs {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.hero-thumb {
	width: 52px;
	height: 36px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, .25);
	cursor: pointer;
	padding: 0;
	transition: border-color .2s, transform .2s;
	flex-shrink: 0;
}

.hero-thumb:hover {
	border-color: rgba(255, 255, 255, .7);
	transform: scale(1.05);
}

.hero-thumb.active {
	border-color: #fff;
	box-shadow: 0 0 0 2px var(--red);
}

.hero-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@keyframes bob {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(6px);
	}
}

@media(max-width:480px) {
	.hero-thumbs {
		display: none;
	}

	.hero-dots {
		bottom: 20px;
	}
}

/* ── STICKY BOOKING BAR ── */
.tour_page .sticky-bar {
	position: sticky;
	/* top: 68px; */
	top: 0px;
	z-index: 200;
	background: #FF1717;
	border-bottom: none;
	padding: 11px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	box-shadow: 0 4px 20px rgba(232, 24, 10, .25);
}

.sb-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	flex-shrink: 1;
	min-width: 0;
}

.sb-left::-webkit-scrollbar {
	display: none;
}

.sb-stat {
	flex-shrink: 0;
}

.sb-stat strong {
	font-family: var(--font-b);
	font-size: 17px;
	font-weight: 700;
	color: #fff;
}

.sb-stat span {
	display: block;
	font-size: 10px;
	color: rgba(255, 255, 255, .75);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.sb-stat.price strong {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.sb-stat.dep strong {
	color: #fff;
}

.sb-stars {
	font-size: 15px;
	color: #fff;
	letter-spacing: 2px;
}

.sb-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.btn-primary {
	background: #fff;
	color: #FF1717;
	border: none;
	border-radius: 50px;
	padding: 12px 28px;
	font-family: var(--font-b);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s, transform .15s;
	white-space: nowrap;
	display: inline-block;
}

.btn-primary:hover {
	background: #FFE3E6;
	transform: translateY(-1px);
}

.btn-outline {
	background: #FFE3E6;
	color: #FF1717;
	border: none;
	border-radius: 50px;
	padding: 10px 20px;
	font-family: var(--font-b);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s, color .2s;
	white-space: nowrap;
}

.btn-outline:hover {
	background: #FFC5CB;
}

/* ── PINK TABS ── */
.tabs {
	background: var(--pink);
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 0 40px;
	border-bottom: 2px solid var(--border);
}

.tabs::-webkit-scrollbar {
	display: none;
}

.tab {
	padding: 14px 22px;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	transition: all .2s;
	display: block;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	cursor: pointer;
	font-family: var(--font-b);
}

.tab:hover,
.tab.active {
	color: var(--red);
	border-bottom-color: var(--red);
}

/* ── LAYOUT ── */
.tour_page .page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 36px 40px 56px;
	display: block;
	background:var(--page);
}

.sec-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--red);
	margin-bottom: 8px;
	display: block;
}

.sec-title {
	font-family: var(--font-h);
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 400;
	color: var(--navy);
	line-height: 1.1;
	margin-bottom: 8px;
}

.sec-title em {
	font-style: italic;
	color: var(--red);
}

.sec-sub {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.65;
	margin-bottom: 20px;
	max-width: 620px;
}

.sec-divider {
	height: 1px;
	background: var(--border);
	margin: 32px 0;
}

/* ── HIGHLIGHT CARDS — swipeable carousel ── */
.hl-carousel-wrap {
	position: relative;
}

.hl-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.hl-track::-webkit-scrollbar {
	display: none;
}

.hl-card {
	flex: 0 0 calc(25% - 12px);
	scroll-snap-align: start;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 3/4;
	cursor: pointer;
	min-width: 220px;
}

.hl-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s;
	display: block;
}

.hl-card:hover img {
	transform: scale(1.06);
}

.hl-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 55%, rgba(0, 0, 0, .55) 100%);
}

.hl-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 16px;
}

.hl-label strong {
	font-family: var(--font-h);
	font-size: 16px;
	color: #fff;
	display: block;
	margin-bottom: 2px;
}

.hl-label span {
	font-size: 12px;
	color: rgba(255, 255, 255, .68);
}

.hl-card .chip {
	position: absolute;
	top: 12px;
	left: 12px;
}

/* Arrow buttons */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: all .15s;
	font-size: 18px;
	color: var(--navy);
}

.carousel-btn:hover {
	background: var(--red);
	color: #fff;
	border-color: var(--red);
}

.carousel-btn.prev {
	left: -20px;
}

.carousel-btn.next {
	right: -20px;
}

@media(max-width:768px) {
	.carousel-btn {
		display: none;
	}

	.hl-card {
		flex: 0 0 calc(70vw);
	}
	
	.tour_page .carousel-btn {
		display: block;
	}
	.tour_page .carousel-btn.next,
	.tour_page .carousel-btn.prev {
		width: 30px;
		height: 30px;
	}
	.tour_page .carousel-btn.prev {
		left: -14px;
	}
	.tour_page .carousel-btn.next {
		right: -15px;
	}
}

@media(min-width:769px) and (max-width:1060px) {
	.hl-card {
		flex: 0 0 calc(33% - 10px);
	}
}

/* ── INCLUSIONS ── */
.inc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.inc-card {
	background: #fff;
	border-radius: 16px;
	padding: 22px 20px;
	border: 2px solid var(--border);
	box-shadow: 0 2px 12px rgba(232, 24, 10, .04);
}

.inc-card.excl {
	grid-column: 1/-1;
	border-color: var(--red);
	background: var(--light);
}

.inc-head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-h);
	font-size: 16px;
	color: var(--navy);
	margin-bottom: 14px;
}

.inc-head span {
	font-size: 22px;
}

.inc-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.inc-item {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: 13px;
	color: var(--mid);
	line-height: 1.45;
}

.inc-item::before {
	content: "✓";
	color: var(--red);
	font-weight: 700;
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 1px;
}

.inc-overflow {
	display: none;
	flex-direction: column;
	gap: 6px;
	margin-top: 0;
}

.inc-overflow.open {
	display: flex;
}

.inc-more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--red);
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	font-family: var(--font-b);
}

.inc-more svg {
	width: 13px;
	height: 13px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2.5;
	transition: transform .25s;
}

.inc-more.open svg {
	transform: rotate(180deg);
}

/* ── ROUTE — timeline style (screenshot 2) ── */
.route-card {
	background: var(--sand);
	border: 1.5px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
}

.route-card-inner {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: stretch;
}

.route-map-col {
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
}

.route-map-col img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.route-right {
	padding: 20px 24px;
	display: flex;
	align-items: center;
}

.route-card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--mid);
	margin-bottom: 20px;
}

.route-timeline {
	position: relative;
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	gap: 0;
	padding-bottom: 4px;
	width: 100%;
}

.route-timeline::-webkit-scrollbar {
	display: none;
}

.rt-stop {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	min-width: 72px;
	position: relative;
}

.rt-connector {
	display: flex;
	align-items: center;
	flex-shrink: 1;
	padding-top: 6px;
	flex: 1;
}

.rt-line {
	height: 1.5px;
	width: 100%;
	min-width: 12px;
	background: var(--red);
	opacity: .35;
}

.rt-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid var(--red);
	background: var(--white);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.rt-dot.filled {
	background: var(--red);
}

.rt-info {
	text-align: center;
	padding-top: 8px;
	padding-left: 2px;
	padding-right: 2px;
}

.rt-name {
	font-family: var(--font-h);
	font-size: 12px;
	font-weight: 400;
	color: var(--navy);
	white-space: nowrap;
}

.rt-days {
	font-size: 10px;
	color: var(--mid);
	margin-top: 2px;
	white-space: nowrap;
}

@media(max-width:700px) {
	.route-card-inner {
		grid-template-columns: 1fr;
	}

	.route-map-col {
		height: 180px;
		position: relative;
	}

	.route-right {
		padding: 14px 12px;
		align-items: center;
		overflow: hidden;
	}

	/* Swipeable horizontal timeline */
	.route-timeline {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		flex-wrap: nowrap;
		min-width: 0;
		cursor: grab;
	}

	.route-timeline::-webkit-scrollbar {
		display: none;
	}

	.rt-stop {
		min-width: 72px;
		flex-shrink: 0;
	}

	.rt-connector {
		flex-shrink: 0;
	}

	.rt-line {
		min-width: 20px;
		width: 20px;
	}
}
@media(max-width:600px) {
	.tour_page .route-right {
		display: none;
	}
}
@media(max-width: 360px) {
	.tour_page .sb-stat.duration {
		display: none;
	}
	.tour_page .inc-grid {
		display: flex;
		flex-wrap: wrap;
	}
	.tour_page .inc-card {
		width: 100%;
	}
}
@media(max-width: 290px) {
	.tour_page .sb-stat.dep {
		display: none;
	}
}
@media(max-width: 250px) {
	.tour_page .sb-stat {
		display: none;
	}
}

/* ── ITINERARY ── */
.itin-day-btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.day-btn {
	padding: 9px 18px;
	border-radius: 50px;
	border: 2px solid var(--border);
	background: #fff;
	font-family: var(--font-b);
	font-size: 13px;
	font-weight: 600;
	color: var(--mid);
	cursor: pointer;
	transition: all .18s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.day-btn:hover {
	border-color: var(--red);
	color: var(--red);
}

.day-btn.active {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.day-panel {
	display: none;
}

.day-panel.active {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: start;
}

/* desktop: img right (order 2), info left (order 1) */
.day-panel.active .day-img-wrap {
	order: 2;
}

.day-panel.active .day-info {
	order: 1;
}

.day-info {}

.day-num {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--red);
	margin-bottom: 8px;
}

.day-title {
	font-family: var(--font-h);
	font-size: 26px;
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 6px;
}

.day-loc {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: var(--mid);
	margin-bottom: 14px;
}

.day-loc svg {
	width: 13px;
	height: 13px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2;
}

.day-desc {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.7;
}

.day-pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.day-img-wrap {
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.day-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.day-acc-hdr {
	display: none;
}

/* accordion header — mobile only */

/* ── STAYS ── */
.acc-loc-btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.acc-loc-btn {
	padding: 9px 18px;
	border-radius: 50px;
	border: 2px solid var(--border);
	background: #fff;
	font-family: var(--font-b);
	font-size: 13px;
	font-weight: 600;
	color: var(--mid);
	cursor: pointer;
	transition: all .18s;
}

.acc-loc-btn:hover {
	border-color: var(--red);
	color: var(--red);
}

.acc-loc-btn.active {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.acc-panel {
	display: none;
}

.acc-panel.active {
	display: grid;
	grid-template-columns: 280px 1fr;
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid var(--border);
	box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.acc-panel-img {
	overflow: hidden;
	min-height: 220px;
}

.acc-panel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.acc-panel-info {
	padding: 24px 26px;
	background: #fff;
}

.acc-panel-loc {
	font-size: 11px;
	font-weight: 700;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 5px;
}

.acc-panel-name {
	font-family: var(--font-h);
	font-size: 20px;
	color: var(--navy);
	margin-bottom: 10px;
}

.acc-panel-desc {
	font-size: 13px;
	color: var(--mid);
	line-height: 1.65;
}

.acc-panel-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.acc-tag {
	font-size: 11px;
	font-weight: 600;
	background: var(--pink);
	color: var(--navy);
	border-radius: 50px;
	padding: 3px 10px;
	border: 1px solid var(--border);
}

/* ── DATES ── */
.dates-tbl-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dates-tbl {
	width: 100%;
	border-collapse: collapse;
	min-width: 400px;
}

.dates-tbl th {
	padding: 12px 16px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--mid);
	background: var(--pink);
	border-bottom: 2px solid var(--border);
}

.dates-tbl td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
	color: var(--navy);
	vertical-align: middle;
}

.dates-tbl tr:last-child td {
	border-bottom: none;
}

.dates-tbl tr:hover td {
	background: var(--light);
}

.sold-out {
	color: #bbb;
	text-decoration: line-through;
}

.spaces-low {
	color: var(--red);
	font-weight: 700;
	font-size: 12px;
}

.book-btn {
	background: var(--red);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 8px 16px;
	font-family: var(--font-b);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s;
	white-space: nowrap;
}

.book-btn:hover {
	background: var(--red-d);
}

.book-btn:disabled {
	background: #ddd;
	cursor: not-allowed;
}

/* ── REVIEWS ── */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.rev-card {
	background: #fff;
	border-radius: 16px;
	padding: 22px 20px;
	border: 2px solid var(--border);
}

.rev-stars {
	font-size: 16px;
	color: var(--red);
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.rev-text {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.65;
	font-style: italic;
	margin-bottom: 14px;
}

.rev-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rev-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--pink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-h);
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	flex-shrink: 0;
}

.rev-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
}

.rev-trip {
	font-size: 11px;
	color: var(--mid);
}

/* ── FAQs ── */
.faqs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq {
	border: 2px solid var(--border);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
	color: var(--navy);
}

.faq-q svg {
	width: 18px;
	height: 18px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2.5;
	transition: transform .25s;
	flex-shrink: 0;
}

.faq.open .faq-q svg {
	transform: rotate(180deg);
}

.faq-a {
	display: none;
	padding: 0 20px 18px;
	font-size: 14px;
	color: var(--mid);
	line-height: 1.7;
}

.faq.open .faq-a {
	display: block;
}

/* ── YOU MIGHT ALSO LOVE — swipeable tour cards ── */
.also-love {
	background: #fff;
	padding: 52px 0 60px;
}

.also-love-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.also-track-wrap {
	position: relative;
	margin-top: 28px;
}

.also-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.also-track::-webkit-scrollbar {
	display: none;
}

.also-card {
	flex: 0 0 calc(33.333% - 14px);
	scroll-snap-align: start;
	border-radius: 20px;
	overflow: hidden;
	border: 1.5px solid var(--border);
	background: #fff;
	transition: box-shadow .2s, transform .2s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.also-card:hover {
	box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}

.also-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.also-card-body {
	padding: 18px 18px 20px;
}

.also-card-title {
	font-family: var(--font-h);
	font-size: 18px;
	color: var(--navy);
	margin-bottom: 4px;
}

.also-card-meta {
	font-size: 13px;
	color: var(--mid);
	margin-bottom: 10px;
}

.also-card-price {
	font-family: var(--font-h);
	font-size: 20px;
	font-style: italic;
	color: var(--red);
}

@media(max-width:900px) {
	.also-card {
		flex: 0 0 calc(70vw);
	}
	.tour_page .carousel-btn.next {
		right: -14px;
	}
}

@media(max-width:600px) {
	.also-card {
		flex: 0 0 calc(80vw);
	}

	.also-love-inner {
		padding: 0 20px;
	}
}

/* ── CTA STRIP ── */
.cta-strip {
	background: var(--navy);
	padding: 64px 40px;
	text-align: center;
}

.cta-strip h2 {
	font-family: var(--font-h);
	font-size: clamp(32px, 5vw, 46px);
	color: #fff;
	margin-bottom: 12px;
}

.cta-strip h2 em {
	font-style: italic;
	color: var(--pink-m);
}

.cta-strip p {
	font-size: 16px;
	color: rgba(255, 255, 255, .72);
	margin-bottom: 30px;
}

/* ── FOMO SOCIAL PROOF POPUP (base / desktop) ── */
.fomo-popup {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 700;
	display: flex;
	align-items: center;
	gap: 11px;
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: 0 8px 28px rgba(10, 2, 2, .14);
	max-width: 300px;
	transform: translateY(20px);
	opacity: 0;
	pointer-events: none;
	transition: transform .35s ease, opacity .35s ease;
}

.fomo-popup.show {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.fomo-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--red-pale);
	color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fomo-icon svg {
	width: 18px;
	height: 18px;
}

.fomo-text {
	flex: 1;
	min-width: 0;
}

.fomo-text strong {
	display: block;
	font-family: var(--font-b);
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.3;
}

.fomo-text span {
	display: block;
	font-size: 11px;
	color: var(--mid);
	margin-top: 2px;
}

.fomo-close {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border: none;
	background: none;
	color: var(--mid);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-tap-highlight-color: transparent;
}

.fomo-close:hover {
	background: var(--sand);
	color: var(--navy);
}

/* ================================================================
	 MOBILE OVERRIDES — "What's Included" downward  (≤768px only)
	 Desktop is completely untouched above this block.
	 ================================================================ */
@media(max-width:768px) {

	/* ── MOBILE: sticky-bar keeps desktop red design, just tightened spacing ── */
	.sticky-bar {
		padding: 10px 16px;
		gap: 10px;
	}

	.sb-left {
		gap: 14px;
	}

	.sb-stat strong {
		font-size: 15px;
	}

	.sb-stat span {
		font-size: 9px;
	}

	.sb-stat.price strong {
		font-size: 17px;
	}

	.btn-primary {
		padding: 9px 18px;
		font-size: 13px;
	}

	/* ── MOBILE: page-wrap tighter ── */
	.page-wrap {
		padding: 20px 16px 56px;
	}

	/* ── MOBILE: sec dividers smaller ── */
	.sec-divider {
		margin: 20px 0;
	}
	
	/* ── MOBILE: sec titles ── */
	.sec-title {
		font-size: clamp(20px, 6vw, 28px);
	}

	.sec-sub {
		font-size: 13px;
	}
	
	/* ── MOBILE: INCLUSIONS ── */
	.inc-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.inc-card {
		background: var(--sand);
		border-radius: 14px;
		padding: 14px;
		border: 1.5px solid var(--bdr);
	}

	.inc-card.excl {
		grid-column: 1/-1;
		border-color: var(--pink-m);
		background: var(--light);
	}

	.inc-card.excl .inc-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}

	.inc-head {
		font-size: 13px;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.inc-item {
		font-size: 12px;
		color: rgba(11, 33, 62, .7);
		padding: 3px 0 3px 14px;
		position: relative;
		line-height: 1.4;
	}

	.inc-item::before {
		content: '✓';
		position: absolute;
		left: 0;
		color: var(--red);
		font-weight: 700;
		font-size: 10px;
		top: 4px;
	}

	/* keep "show more" toggle working on mobile (same as desktop) */
	.inc-more {
		display: inline-flex !important;
	}

	/* ── MOBILE: ROUTE MAP ── */
	.route-card {
		border-radius: 14px;
	}

	.route-card-inner {
		grid-template-columns: 1fr;
	}

	.route-map-col {
		height: 220px;
		cursor: pointer;
	}

	.route-right {
		padding: 14px 12px;
	}

	.route-timeline {
		overflow-x: auto;
		flex-wrap: nowrap;
		cursor: grab;
	}

	.rt-stop {
		min-width: 72px;
		flex-shrink: 0;
	}

	.rt-connector {
		flex-shrink: 0;
	}

	.rt-line {
		min-width: 20px;
		width: 20px;
	}

	/* ── MOBILE: ITINERARY — collapsible accordion ── */
	.itin-day-btns {
		display: none !important;
	}

	/* hide desktop day pill selector */

	.day-panel {
		display: block !important;
		/* every day is a visible accordion row */
		margin-bottom: 10px;
		border: none;
		border-bottom: 1px solid var(--bdr);
		border-radius: 0;
		outline: none;
		overflow: hidden;
		background: #fff;
		-webkit-tap-highlight-color: transparent;
	}

	.day-panel:last-child {
		margin-bottom: 0;
		border-bottom: none;
	}

	.day-panel.active {
		display: block !important;
	}

	/* don't let desktop .active grid kick in */
	.day-panel:focus,
	.day-panel:focus-within {
		outline: none;
		box-shadow: none;
	}

	/* accordion header — visible only on mobile */
	.day-acc-hdr {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
		padding: 14px 16px;
		background: #fff;
		text-align: left;
		border: none;
		outline: none;
		-webkit-tap-highlight-color: transparent;
		-webkit-appearance: none;
		appearance: none;
	}

	.day-acc-hdr:focus,
	.day-acc-hdr:active {
		outline: none;
		border: none;
		box-shadow: none;
	}

	.day-acc-hdr-text {
		display: flex;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
	}

	.day-acc-num {
		font-size: 10px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .08em;
		color: var(--red);
	}

	.day-acc-title {
		font-family: var(--font-h);
		font-size: 15px;
		color: var(--navy);
		line-height: 1.2;
	}

	.day-acc-chev {
		width: 16px;
		height: 16px;
		stroke: var(--red);
		flex-shrink: 0;
		transition: transform .25s;
	}

	.day-panel.open .day-acc-chev {
		transform: rotate(180deg);
	}

	/* content collapses/expands — day-img-wrap and day-info are the real
	   direct children of .day-panel (no wrapper div), so target them directly */
	.day-panel .day-img-wrap,
	.day-panel .day-info {
		display: none;
	}

	.day-panel.open .day-img-wrap,
	.day-panel.open .day-info {
		display: block;
	}

	.day-panel.open .day-img-wrap {
		order: 1 !important;
		border-radius: 12px;
		aspect-ratio: 16/9;
		margin: 0 16px 12px;
		width: calc(100% - 32px);
	}

	.day-panel.open .day-info {
		order: 2 !important;
		padding: 0 16px 16px;
	}

	/* hide the duplicate heading inside the body — already shown in the header */
	.day-panel .day-title,
	.day-panel .day-num {
		display: none;
	}

	/* ── MOBILE: WHERE WE STAY ── */
	.acc-loc-btns {
		display: flex;
		gap: 6px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.acc-loc-btns::-webkit-scrollbar {
		display: none;
	}

	.acc-loc-btn {
		flex-shrink: 0;
		padding: 7px 12px;
		border-radius: 20px;
		font-size: 12px;
	}

	.acc-panel.active {
		display: block !important;
		grid-template-columns: 1fr !important;
		border-radius: 14px;
		border: none !important;
		box-shadow: none !important;
	}

	.acc-panel-img {
		min-height: unset;
		height: 180px;
	}

	.acc-panel-info {
		padding: 14px 16px;
	}

	.acc-panel-name {
		font-size: 16px;
	}

	.acc-panel-desc {
		font-size: 13px;
	}

	/* ── MOBILE: DATES TABLE ── */
	/* Replace table with card-style rows */
	.dates-tbl-wrap {
		overflow-x: unset;
	}

	.dates-tbl {
		min-width: unset;
		width: 100%;
		display: block;
	}

	.dates-tbl thead {
		display: none;
	}

	.dates-tbl tbody {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.dates-tbl tr {
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: var(--sand);
		border: 1.5px solid var(--bdr);
		border-radius: 14px;
		padding: 16px 14px;
		/* bigger tap target, was 12px */
		min-height: 64px;
		border-bottom: 1.5px solid var(--bdr) !important;
		cursor: pointer;
		/* whole row is a tap target now */
		-webkit-tap-highlight-color: transparent;
		transition: background .15s, border-color .15s;
	}

	.dates-tbl tr:active {
		background: var(--light);
		border-color: var(--pink-m);
	}

	.dates-tbl tr:hover td {
		background: none;
	}

	.dates-tbl td {
		display: block;
		border-bottom: none !important;
		padding: 0;
		font-size: 13px;
	}

	.dates-tbl td:nth-child(1) {
		flex: 1;
	}

	.dates-tbl td:nth-child(1) strong {
		font-size: 14px;
	}

	.dates-tbl td:nth-child(2) {
		display: none;
	}

	/* hide return date col to save space */
	.dates-tbl td:nth-child(3) {
		font-size: 14px;
		font-weight: 700;
		color: var(--navy);
		margin-right: 10px;
	}

	.dates-tbl td:nth-child(4) {
		flex-shrink: 0;
	}

	/* Deposit note */
	.sec-sub {
		margin-bottom: 14px;
	}


	/* ── MOBILE: REVIEWS ── */
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.rev-card {
		border-radius: 14px;
		padding: 16px;
	}

	.rev-text {
		font-size: 13px;
	}

	/* ── MOBILE: FAQs ── */
	.faq {
		border-radius: 12px;
		border: 1.5px solid var(--bdr) !important;
	}

	.faq-q {
		padding: 14px 16px;
		font-size: 14px;
	}

	.faq-a {
		padding: 0 16px 14px;
		font-size: 13px;
	}

	/* ── MOBILE: YOU MIGHT ALSO LOVE ── */
	.also-love-inner {
		padding: 0 16px;
	}

	.also-card {
		flex: 0 0 calc(72vw);
	}

	.also-card-body {
		padding: 14px;
	}

	.also-card-title {
		font-size: 16px;
	}

	/* ── MOBILE: CTA STRIP ── */
	/* .cta-strip{padding:40px 20px;} */


	/* ── MOBILE: PERSISTENT BOTTOM BOOKING BAR ── */
	.mobile-bottom-bar {
		display: flex !important;
	}

	.mbb-gap {
		display: block !important;
	}

	/* ── MOBILE: FOMO popup sits above the fixed bottom booking bar ── */
	.fomo-popup {
		left: 12px;
		right: 12px;
		bottom: 88px;
		/* clears the ~76px bottom bar + breathing room */
		max-width: none;
	}

}

/* end @media ≤768px */

/* Mobile bottom bar — hidden on desktop */
.mobile-bottom-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 800;
	background: #fff;
	border-top: 1px solid var(--bdr);
	padding: 10px 16px;
	align-items: center;
	gap: 10px;
	box-shadow: 0 -4px 20px rgba(10, 2, 2, .08);
}

.mbb-price {
	flex: 1;
}

.mbb-price strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
}

.mbb-price span {
	font-size: 11px;
	color: rgba(11, 33, 62, .45);
}

.mbb-btn {
	background: var(--red);
	color: #fff;
	border-radius: 22px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
	text-decoration: none;
}

.mbb-gap {
	display: none;
	height: 76px;
}

.fomo-close:hover {
	background: var(--sand);
	color: var(--navy);
}