/*
 * Single-tour layout blocks.
 * ---------------------------------------------------------------------------
 * Palette is the site's own, not the mockup's: #0CA860 is the green already on
 * all eight buttons in template 7502, #00875A its heading green, #F2295B the
 * pink already in use (and the colour of the mockup's "Get Quote"), #DC2626 the
 * Elementor global "Red".
 *
 * Two hard-won rules are load-bearing here and must not be "tidied up":
 *
 *  1. Every element reset is wrapped in :where() so it scores (0,0,1) and loses
 *     to the component rules below it. Written flat, `.ql-tour-card a {}` is
 *     (0,1,1) and outguns `.ql-tour-btn` (0,1,0) — which is how this site once
 *     shipped invisible primary buttons and vanishing sidebar links.
 *
 *  2. Nothing is hidden with the `hidden` attribute. `[hidden]` is (0,1,0) and
 *     loses to any class rule that sets `display`, which silently broke the
 *     account tabs and Show Details here before.
 */

.ql-tour-card,
.ql-tour-chips,
.ql-tour-price,
.ql-tour-rating,
.ql-tour-subtitle,
.ql-tour-gal,
.ql-tour-sticky {
	--ql-green: #0ca860;
	--ql-green-dk: #00875a;
	--ql-green-sf: #e7f7ef;
	--ql-pink: #f2295b;
	--ql-red: #dc2626;
	--ql-red-sf: #fdeced;
	--ql-gold: #ffb400;
	--ql-ink: #14202e;
	--ql-body: #47566a;
	--ql-muted: #7b8a9e;
	--ql-line: #e6ebf1;
	--ql-card: #ffffff;
	--ql-radius: 14px;

	box-sizing: border-box;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ql-body);
}

:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) *,
:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) *::before,
:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) *::after {
	box-sizing: border-box;
}

:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) ul,
:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) ol,
:where(.ql-tour-card, .ql-tour-chips, .ql-tour-price, .ql-tour-rating, .ql-tour-gal, .ql-tour-sticky) li,
:where(.ql-tour-card) dl,
:where(.ql-tour-card) dt,
:where(.ql-tour-card) dd,
:where(.ql-tour-card) p {
	margin: 0;
	padding: 0;
	list-style: none;
}

:where(.ql-tour-card, .ql-tour-sticky) a {
	text-decoration: none;
}

:where(.ql-tour-card, .ql-tour-gal) button {
	font: inherit;
	cursor: pointer;
}

.ql-tour-i {
	flex: 0 0 auto;
	display: inline-block;
	vertical-align: middle;
}

/* ---------------------------------------------------------------- card shell */

.ql-tour-card {
	background: var(--ql-card);
	border: 1px solid var(--ql-line);
	border-radius: var(--ql-radius);
	padding: 18px 20px 20px;
	margin: 0 0 18px;
}

/*
 * Elementor already puts 20px between widgets, and each card IS one widget,
 * so our own bottom margin stacked on top of it and produced a 38px gutter
 * where the design shows about 20. Kept for standalone shortcode use, zeroed
 * inside Elementor.
 */
.elementor-widget-container > .ql-tour-card {
	margin-bottom: 0;
}

.ql-tour-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 14px;
}

.ql-tour-card__title {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--ql-ink);
	letter-spacing: -0.01em;
}

.ql-tour-card__title .ql-tour-i {
	color: var(--ql-green);
}

.ql-tour-more {
	border: 0;
	background: none;
	padding: 0;
	color: var(--ql-green);
	font-size: 13px;
	font-weight: 600;
}

.ql-tour-editor-note {
	border: 1px dashed #c3ccd8;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 13px;
	color: #7b8a9e;
	background: #f8fafc;
}

/* ------------------------------------------------------------------- buttons */

.ql-tour-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid transparent;
	border-radius: 9px;
	padding: 11px 18px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.ql-tour-btn--solid {
	background: var(--ql-green);
	border-color: var(--ql-green);
	color: #fff;
}

.ql-tour-btn--solid:hover,
.ql-tour-btn--solid:focus {
	background: var(--ql-green-dk);
	border-color: var(--ql-green-dk);
	color: #fff;
}

.ql-tour-btn--ghost {
	background: #fff;
	border-color: var(--ql-green);
	color: var(--ql-green);
}

.ql-tour-btn--ghost:hover,
.ql-tour-btn--ghost:focus {
	background: var(--ql-green-sf);
	color: var(--ql-green-dk);
}

.ql-tour-btn--pink {
	background: var(--ql-pink);
	border-color: var(--ql-pink);
	color: #fff;
}

.ql-tour-btn--pink:hover,
.ql-tour-btn--pink:focus {
	background: #d21a4a;
	border-color: #d21a4a;
	color: #fff;
}

/* ---------------------------------------------------------- hero: gallery */

.ql-tour-gal__main {
	position: relative;
	border-radius: var(--ql-radius);
	overflow: hidden;
	background: #eef2f6;
}

/*
 * Two-class selector on purpose. Elementor core ships `.elementor img{height:auto}`
 * at specificity (0,1,1), which outguns a single class (0,1,0) — so a one-class
 * rule here silently loses and the image renders at its natural aspect ratio
 * (a square source became a 740x740 hero). `.ql-tour-gal .ql-tour-gal__img` is
 * (0,2,0) and wins cleanly, with no !important to unpick later. Every image
 * dimension in this file is written the same way for the same reason.
 */
.ql-tour-gal .ql-tour-gal__img {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.ql-tour-gal__ribbon {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--ql-green);
	color: #fff;
	border-radius: 6px;
	padding: 5px 11px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .01em;
}

.ql-tour-gal__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--ql-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(20, 32, 46, .18);
}

.ql-tour-gal__nav--prev {
	left: 14px;
}

.ql-tour-gal__nav--prev .ql-tour-i {
	transform: rotate(90deg);
}

.ql-tour-gal__nav--next {
	right: 14px;
}

.ql-tour-gal__nav--next .ql-tour-i {
	transform: rotate(-90deg);
}

.ql-tour-gal__count {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(20, 32, 46, .72);
	color: #fff;
	border-radius: 7px;
	padding: 6px 11px;
	font-size: 12.5px;
	font-weight: 500;
}

.ql-tour-gal__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	overflow-x: auto;
	scrollbar-width: thin;
	padding-bottom: 2px;
}

.ql-tour-gal__thumbs li {
	flex: 0 0 auto;
}

.ql-tour-gal__thumb {
	display: block;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 9px;
	overflow: hidden;
	background: none;
	line-height: 0;
}

.ql-tour-gal .ql-tour-gal__thumb img {
	display: block;
	width: 92px;
	height: 62px;
	object-fit: cover;
}

.ql-tour-gal__thumb.is-active {
	border-color: var(--ql-green);
}

/* ------------------------------------------------------------- hero: CTAs */

/*
 * The three hero CTAs live in a nested one-column inner section, and this is
 * what puts them on one row. Elementor stacks widgets in a column by default,
 * so the row has to be declared on the column's own widget-wrap.
 *
 * `gap` rather than margin-right on the first button: same result, and the
 * buttons then wrap and re-space themselves on a narrow screen with no
 * breakpoint override to remember.
 */
.ql-tour-ctas > .elementor-widget-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	align-content: flex-start;
}

.ql-tour-ctas > .elementor-widget-wrap > .elementor-widget {
	width: auto;
	max-width: 100%;
	margin-bottom: 0;
}

/* The round WhatsApp button: square box, no text, icon centred. */
.ql-tour-wa .elementor-button {
	width: 46px;
	height: 46px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ql-tour-wa .elementor-button-content-wrapper {
	justify-content: center;
}

.ql-tour-wa .elementor-button-icon {
	font-size: 20px;
	margin: 0;
}

.ql-tour-wa .elementor-button-text {
	display: none;
}

@media (max-width: 767px) {
	/* Phones get full-width stacked CTAs, as the mockup shows, with the
	   WhatsApp circle staying on the same row as Enquire Now. */
	.ql-tour-ctas > .elementor-widget-wrap > .elementor-widget-button:first-child {
		width: 100%;
	}

	.ql-tour-ctas > .elementor-widget-wrap > .elementor-widget-button:first-child .elementor-button {
		width: 100%;
	}
}

/* --------------------------------------------------------- hero: subtitle */

.ql-tour-subtitle {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--ql-body);
}

/* ----------------------------------------------------------- hero: rating */

.ql-tour-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
}

.ql-tour-rating__star {
	display: inline-flex;
	color: var(--ql-gold);
	fill: var(--ql-gold);
}

.ql-tour-rating__star .ql-tour-i {
	fill: var(--ql-gold);
}

.ql-tour-rating__avg {
	font-size: 15px;
	font-weight: 700;
	color: var(--ql-ink);
}

.ql-tour-rating__count {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--ql-body);
}

.ql-tour-rating__count:hover {
	color: var(--ql-green);
}

.ql-tour-rating__src {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--ql-line);
	border-radius: 7px;
	padding: 4px 11px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ql-ink);
}

/* ------------------------------------------------------------- hero: chips */

.ql-tour-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.ql-tour-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid var(--ql-line);
	border-radius: 8px;
	padding: 7px 12px;
	font-size: 13px;
	line-height: 1.25;
	color: var(--ql-body);
	background: #fff;
}

.ql-tour-chip .ql-tour-i {
	color: var(--ql-green);
}

.ql-tour-chip strong {
	color: var(--ql-ink);
	font-weight: 600;
}

.ql-tour-chip--agency {
	background: var(--ql-green-sf);
	border-color: transparent;
}

.ql-tour-chip--trust {
	background: var(--ql-green-sf);
	border-color: transparent;
	color: var(--ql-green-dk);
	font-weight: 600;
}

/* ------------------------------------------------------------- hero: price */

.ql-tour-price__label {
	display: block;
	font-size: 13px;
	color: var(--ql-muted);
	margin-bottom: 2px;
}

.ql-tour-price__row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

.ql-tour-price__now {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--ql-ink);
	letter-spacing: -0.02em;
}

.ql-tour-price__unit {
	font-size: 13px;
	color: var(--ql-body);
}

.ql-tour-price__was {
	font-size: 15px;
	color: var(--ql-muted);
	text-decoration: line-through;
}

.ql-tour-price__off {
	background: var(--ql-green-sf);
	color: var(--ql-green-dk);
	border-radius: 6px;
	padding: 3px 8px;
	font-size: 12px;
	font-weight: 700;
}

.ql-tour-price__note {
	margin: 7px 0 0;
	font-size: 12.5px;
	color: var(--ql-muted);
}

/* --------------------------------------------------------------- itinerary */

.ql-tour-itin__list {
	position: relative;
}

.ql-tour-itin__day {
	position: relative;
	display: grid;
	grid-template-columns: 62px 1fr;
	gap: 14px;
	padding: 0 0 10px;
}

/* The rail. Drawn on the day rather than the list so it stops cleanly at the
   last item instead of overshooting past it. */
.ql-tour-itin__day::before {
	content: "";
	position: absolute;
	left: 31px;
	top: 26px;
	bottom: 0;
	width: 1px;
	background: var(--ql-line);
}

.ql-tour-itin__day:last-child::before {
	display: none;
}

.ql-tour-itin__badge {
	position: relative;
	z-index: 1;
	align-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--ql-green-sf);
	color: var(--ql-green-dk);
	border-radius: 20px;
	padding: 5px 0;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.ql-tour-itin__d {
	border: 1px solid var(--ql-line);
	border-radius: 11px;
	padding: 0;
	margin: 0 0 4px;
	background: #fff;
}

.ql-tour-itin__sum {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 15px;
	cursor: pointer;
	list-style: none;
}

.ql-tour-itin__sum::-webkit-details-marker {
	display: none;
}

.ql-tour-itin__head {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ql-ink);
	line-height: 1.4;
}

.ql-tour-itin__chev {
	display: inline-flex;
	color: var(--ql-muted);
	transition: transform .18s ease;
}

.ql-tour-itin__d[open] .ql-tour-itin__chev {
	transform: rotate(180deg);
}

.ql-tour-itin__body {
	padding: 0 15px 15px;
	font-size: 13.5px;
	line-height: 1.65;
}

.ql-tour-itin__body p {
	margin: 0 0 8px;
}

.ql-tour-itin__acts li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 5px;
}

.ql-tour-itin__acts li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 9px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ql-muted);
}

.ql-tour-itin__amen {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--ql-line);
}

.ql-tour-itin__amen li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--ql-body);
}

.ql-tour-itin__amen .ql-tour-i {
	color: var(--ql-green);
}

.ql-tour-itin__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
}

.ql-tour-itin__metaitem {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--ql-body);
}

.ql-tour-itin__metaitem .ql-tour-i {
	color: var(--ql-green);
}

/* ------------------------------------------------------------ stay & meals */

.ql-tour-stay__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid var(--ql-line);
	border-radius: 11px;
	padding: 14px 15px;
	margin-bottom: 10px;
}

.ql-tour-stay__head {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ql-ink);
	text-transform: uppercase;
	letter-spacing: .03em;
}

.ql-tour-stay__nights {
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ql-body);
}

.ql-tour-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ql-muted);
	display: inline-block;
}

.ql-tour-stay__hotel {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 5px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ql-ink);
}

.ql-tour-stay__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--ql-gold);
	font-weight: 700;
}

.ql-tour-stay__stars .ql-tour-i {
	fill: var(--ql-gold);
}

.ql-tour-stay__meals {
	display: inline-block;
	margin-top: 7px;
	background: var(--ql-green-sf);
	color: var(--ql-green-dk);
	border-radius: 6px;
	padding: 4px 9px;
	font-size: 12px;
	font-weight: 600;
}

.ql-tour-stay__img {
	flex: 0 0 116px;
	width: 116px;
}

.ql-tour-stay .ql-tour-stay__img img {
	display: block;
	width: 100%;
	height: 78px;
	object-fit: cover;
	border-radius: 9px;
}

.ql-tour-stay__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	padding: 14px 0 0;
	border-top: 1px solid var(--ql-line);
	margin-top: 4px;
}

.ql-tour-stay__plabel {
	display: block;
	font-size: 12.5px;
	color: var(--ql-muted);
	margin-bottom: 3px;
}

.ql-tour-stay__price .ql-tour-price__now {
	font-size: 22px;
}

/* ------------------------------------------------------------- trust strip */

.ql-tour-trust {
	display: flex;
	flex-wrap: wrap;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--ql-line);
}

.ql-tour-trust li {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 1 1 0;
	min-width: 150px;
	padding: 0 12px;
	border-left: 1px solid var(--ql-line);
}

.ql-tour-trust li:first-child {
	padding-left: 0;
	border-left: 0;
}

.ql-tour-trust__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ql-green-sf);
	color: var(--ql-green-dk);
}

.ql-tour-trust__t {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	font-weight: 600;
	color: var(--ql-ink);
	line-height: 1.35;
}

.ql-tour-trust__t small {
	font-size: 11.5px;
	font-weight: 400;
	color: var(--ql-muted);
}

/* ------------------------------------------------ inclusions / exclusions */

.ql-tour-list__items li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	line-height: 1.55;
	margin-bottom: 9px;
}

.ql-tour-list__items li:last-child {
	margin-bottom: 0;
}

.ql-tour-list__items .ql-tour-i {
	margin-top: 2px;
}

.ql-tour-list__items--inc .ql-tour-i {
	color: var(--ql-green);
}

.ql-tour-list__items--exc .ql-tour-i {
	color: var(--ql-red);
}

/* Collapsed overflow. A class rule, deliberately — see the header note. */
.ql-tour-list__items[data-ql-collapsed] .ql-tour-list__over {
	display: none;
}

/* --------------------------------------------------------- trip information */

.ql-tour-info__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--ql-line);
}

.ql-tour-info__row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ql-tour-info__row:first-child {
	padding-top: 0;
}

.ql-tour-info__row dt {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	color: var(--ql-body);
}

.ql-tour-info__row dt .ql-tour-i {
	color: var(--ql-green);
}

.ql-tour-info__row dd {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ql-ink);
	text-align: right;
}

/* --------------------------------------------------------------- sticky bar */

.ql-tour-sticky {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 998;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: #fff;
	border-top: 1px solid var(--ql-line);
	box-shadow: 0 -4px 18px rgba(20, 32, 46, .1);
}

.ql-tour-sticky__price {
	flex: 0 0 auto;
	line-height: 1.15;
}

.ql-tour-sticky__price .ql-tour-price__now {
	font-size: 18px;
}

.ql-tour-sticky__price .ql-tour-price__was {
	font-size: 13px;
}

.ql-tour-sticky__price .ql-tour-price__off {
	font-size: 11px;
	padding: 2px 6px;
}

.ql-tour-sticky__price .ql-tour-price__row {
	gap: 6px;
}

.ql-tour-sticky__price small {
	display: block;
	font-size: 11px;
	color: var(--ql-muted);
}

.ql-tour-sticky .ql-tour-btn {
	flex: 1 1 0;
	padding: 11px 10px;
	font-size: 13.5px;
}

/* ============================================================== responsive */

@media (max-width: 1024px) {
	.ql-tour-sticky {
		display: flex;
	}

	/* Clears the bar so it never covers the last row of the footer. */
	body.single-trip {
		padding-bottom: 72px;
	}
}

@media (max-width: 767px) {
	.ql-tour-card {
		padding: 16px 14px 18px;
		margin-bottom: 14px;
	}

	.ql-tour-card__title {
		font-size: 16px;
	}

	.ql-tour-itin__day {
		grid-template-columns: 54px 1fr;
		gap: 10px;
	}

	.ql-tour-itin__day::before {
		left: 27px;
	}

	.ql-tour-price__now {
		font-size: 24px;
	}

	.ql-tour-gal .ql-tour-gal__img {
		height: 250px;
	}

	.ql-tour-gal .ql-tour-gal__thumb img {
		width: 74px;
		height: 52px;
	}

	/* The design puts the room photo first on phones and the text beside it. */
	.ql-tour-stay__row {
		align-items: flex-start;
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.ql-tour-stay__img {
		flex: 0 0 92px;
		width: 92px;
	}

	.ql-tour-stay .ql-tour-stay__img img {
		height: 92px;
	}

	/* Inclusions become the three-across grid the phone mockup shows. */
	.ql-tour-list__items {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px 12px;
	}

	.ql-tour-list__items li {
		margin-bottom: 0;
		font-size: 11.5px;
		line-height: 1.4;
	}

	.ql-tour-list__items .ql-tour-i {
		width: 14px;
		height: 14px;
	}

	.ql-tour-trust li {
		flex: 1 1 100%;
		border-left: 0;
		padding: 6px 0;
	}
}

@media (max-width: 430px) {
	/* Three columns of body copy stops being readable somewhere around here. */
	.ql-tour-list__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	/*
	 * The sticky bar is the one row on the page with no slack: a price, a
	 * strike-through, a discount pill and two buttons. At 375px the price block
	 * was sized by its content (`flex: 0 0 auto`), so it took whatever it liked
	 * and pushed "Get Offers" off the right edge.
	 *
	 * `flex: 0 1 auto` plus `min-width: 0` lets it give way instead, and the
	 * price row wraps the strike/discount onto a second line rather than
	 * dropping either — both are the reason the bar converts.
	 */
	.ql-tour-sticky {
		gap: 8px;
		padding: 9px 10px;
	}

	.ql-tour-sticky__price {
		flex: 0 1 auto;
		min-width: 0;
	}

	.ql-tour-sticky__price .ql-tour-price__row {
		flex-wrap: wrap;
		gap: 3px 5px;
	}

	.ql-tour-sticky__price .ql-tour-price__now {
		font-size: 16px;
	}

	.ql-tour-sticky__price .ql-tour-price__was,
	.ql-tour-sticky__price .ql-tour-price__off {
		font-size: 10.5px;
	}

	.ql-tour-sticky .ql-tour-btn {
		padding: 10px 7px;
		font-size: 12.5px;
		gap: 4px;
	}
}
