/* =============================================================================
   ShuttleRezdy — design system
   One shared system, three accent variants (body.shuttle-variant-*).
   Mobile-first. No framework. Uses a fast system font stack.
   ============================================================================= */


/* ---- Tokens ----------------------------------------------------------- */
:root {
	--sh-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--sh-ink: #101828;
	--sh-body: #3d4757;
	--sh-muted: #667085;
	--sh-line: #e4e7ec;
	--sh-surface: #f5f7fa;
	--sh-white: #fff;
	--sh-go: #12805c;              /* reassurance only: cancellation, "included" */
	--sh-no: #b42318;              /* "not included" */

	/* Accent set — overridden per site below */
	--sh-accent: #1d5fd6;
	--sh-accent-hover: #174dae;
	--sh-accent-ink: #fff;
	--sh-accent-soft: #e8f0ff;
	--sh-accent-2: #6fb6ff;        /* route line + secondary marks */
	--sh-deep: #0b2a4a;            /* hero + footer base */
	--sh-hero-a: #0b2a4a;
	--sh-hero-b: #1d5fd6;

	--sh-radius: 14px;
	--sh-radius-sm: 10px;
	--sh-maxw: 1140px;
	--sh-narrow: 780px;
	--sh-topbar-h: 34px;
	--sh-nav-h: 64px;
	--sh-header-h: calc(var(--sh-topbar-h) + var(--sh-nav-h));
	--sh-shadow: 0 18px 48px rgba(16, 24, 40, .12);
	--sh-shadow-sm: 0 6px 20px rgba(16, 24, 40, .08);
}

/* Pearl Harbor — navy / blue / white */
body.shuttle-variant-pearl-harbor {
	--sh-accent: #1d5fd6; --sh-accent-hover: #174dae; --sh-accent-soft: #e8f0ff; --sh-accent-2: #7cc0ff;
	--sh-deep: #0b2a4a; --sh-hero-a: #08203a; --sh-hero-b: #1d5fd6;
}

/* Waikele — purple / black / shopping accent */
body.shuttle-variant-waikele {
	--sh-accent: #7a2fd1; --sh-accent-hover: #6324ad; --sh-accent-soft: #f1e9fb; --sh-accent-2: #e2b34a;
	--sh-deep: #17121f; --sh-hero-a: #17121f; --sh-hero-b: #4b1f8f;
}

/* Swap Meet — blue / green outdoor market */
body.shuttle-variant-swap-meet {
	--sh-accent: #0f6fb5; --sh-accent-hover: #0c5a93; --sh-accent-soft: #e5f1fa; --sh-accent-2: #3fbf7f;
	--sh-deep: #0a3d63; --sh-hero-a: #0a3d63; --sh-hero-b: #1f8f5a;
}

/* ---- Base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sh-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--sh-body);
	background: var(--sh-white);
	-webkit-font-smoothing: antialiased;
	padding-top: var(--sh-header-h);
}
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--sh-accent); text-decoration-thickness: from-font; text-underline-offset: .15em; }
h1, h2, h3, h4 { color: var(--sh-ink); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 1.35rem + 2.8vw, 3.25rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.125rem); }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--sh-accent); outline-offset: 3px; border-radius: 4px; }
[id] { scroll-margin-top: calc(var(--sh-header-h) + 16px); }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 1000; width: auto; height: auto; clip: auto; padding: .6rem 1rem; background: var(--sh-ink); color: #fff; border-radius: 8px; }

.shuttle-wrap { width: 100%; max-width: var(--sh-maxw); margin: 0 auto; padding: 0 20px; }
.shuttle-wrap--narrow { max-width: var(--sh-narrow); }
.shuttle-icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.shuttle-muted { color: var(--sh-muted); }

/* ---- Buttons ---------------------------------------------------------- */
.shuttle-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	padding: .85rem 1.35rem; border-radius: 999px; border: 2px solid transparent;
	font-weight: 700; font-size: 1rem; line-height: 1.1; text-decoration: none; cursor: pointer;
	touch-action: manipulation; transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.shuttle-btn .shuttle-icon { width: 1.1em; height: 1.1em; }
.shuttle-btn--primary { background: var(--sh-accent); color: var(--sh-accent-ink); border-color: var(--sh-accent); box-shadow: 0 10px 24px rgba(16, 24, 40, .14); }
.shuttle-btn--primary:hover { background: var(--sh-accent-hover); border-color: var(--sh-accent-hover); color: #fff; }
.shuttle-btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.shuttle-btn--ghost:hover { background: rgba(127, 127, 127, .12); }
.shuttle-btn--light { background: #fff; color: var(--sh-ink); border-color: #fff; }
.shuttle-btn--lg { padding: 1rem 1.6rem; font-size: 1.06rem; }
.shuttle-btn--sm { padding: .6rem 1rem; font-size: .92rem; }
.shuttle-btn:active { transform: translateY(1px); }

/* ---- Header ----------------------------------------------------------- */
.shuttle-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.shuttle-topbar { height: var(--sh-topbar-h); background: var(--sh-deep); color: rgba(255, 255, 255, .92); font-size: .82rem; font-weight: 500; }
.shuttle-topbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.shuttle-topbar__promise { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shuttle-topbar__phone { display: inline-flex; align-items: center; gap: .4rem; color: #fff; text-decoration: none; font-weight: 700; white-space: nowrap; }

.shuttle-nav { height: var(--sh-nav-h); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--sh-line); }
.shuttle-nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.shuttle-brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--sh-ink); min-width: 0; }
.shuttle-brand__logo { max-height: 44px; width: auto; }
.shuttle-brand__mark { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--sh-accent-soft); color: var(--sh-accent); }
.shuttle-brand__mark .shuttle-icon { width: 24px; height: 24px; }
.shuttle-brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.shuttle-brand__name { font-weight: 700; font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shuttle-brand__tag { font-size: .74rem; color: var(--sh-muted); font-weight: 500; margin-top: .18rem; }

.shuttle-nav__actions { display: flex; align-items: center; gap: .6rem; }
.shuttle-nav__phone { display: none; align-items: center; gap: .4rem; color: var(--sh-ink); text-decoration: none; font-weight: 700; white-space: nowrap; }
.shuttle-nav__toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--sh-surface); color: var(--sh-ink); cursor: pointer; }
.shuttle-nav__toggle .shuttle-icon { width: 24px; height: 24px; }

/* Mobile panel */
.shuttle-nav__menu {
	position: fixed; top: var(--sh-header-h); left: 0; right: 0; bottom: 0; z-index: 99;
	background: #fff; padding: 1rem 20px 2rem; overflow-y: auto;
	transform: translateX(100%); transition: transform .22s ease; visibility: hidden;
}
.shuttle-nav__menu.is-open { transform: none; visibility: visible; }
.shuttle-menu li a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--sh-line); color: var(--sh-ink); text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.shuttle-nav__mobile-extras { margin-top: 1.25rem; }
.shuttle-nav__mobile-extras .shuttle-nav__phone { display: inline-flex; margin-bottom: 1rem; color: var(--sh-accent); }
.shuttle-nav__label { font-size: .85rem; color: var(--sh-muted); margin: 0 0 .25rem; }
.shuttle-menu--sisters li a { font-weight: 500; font-size: .98rem; }
body.shuttle-menu-open { overflow: hidden; }

@media (min-width: 900px) {
	.shuttle-nav__menu { position: static; transform: none; visibility: visible; padding: 0; background: transparent; overflow: visible; display: flex; align-items: center; }
	.shuttle-menu { display: flex; gap: .15rem; }
	.shuttle-menu li a { padding: .5rem .8rem; border: 0; border-radius: 999px; font-size: .94rem; font-weight: 600; }
	.shuttle-menu li a:hover { background: var(--sh-accent-soft); color: var(--sh-accent); }
	.shuttle-nav__mobile-extras { display: none; }
	.shuttle-nav__actions .shuttle-nav__phone { display: inline-flex; }
	.shuttle-nav__toggle { display: none; }
}
@media (max-width: 480px) {
	.shuttle-topbar__phone span { display: none; }
	.shuttle-nav__actions .shuttle-btn { padding: .55rem .85rem; }
	.shuttle-brand__tag { display: none; }
}

/* ---- Sections --------------------------------------------------------- */
.shuttle-section { padding: 3rem 0; }
.shuttle-section__head { max-width: 62ch; margin-bottom: 1.5rem; }
.shuttle-section__title { margin-bottom: .4em; }
.shuttle-section__intro { font-size: 1.05rem; color: var(--sh-body); margin: 0; }
@media (min-width: 768px) { .shuttle-section { padding: 4.5rem 0; } }

/* ---- Hero ------------------------------------------------------------- */
.shuttle-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--sh-hero-a), var(--sh-hero-b)); }
.shuttle-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shuttle-hero__tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 20, 40, .35) 0%, rgba(8, 20, 40, .62) 55%, rgba(8, 20, 40, .82) 100%); }
.shuttle-hero:not(.shuttle-hero--photo) .shuttle-hero__tint { background: radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, .14), transparent 55%); }
.shuttle-hero__inner { position: relative; padding-top: 2.25rem; padding-bottom: 2.5rem; display: grid; gap: 1.75rem; }
.shuttle-hero__copy { max-width: 640px; }
.shuttle-hero__kicker { display: inline-block; font-size: .9rem; font-weight: 600; color: rgba(255, 255, 255, .86); margin: 0 0 .75rem; padding: .3rem .7rem; border-radius: 999px; background: rgba(255, 255, 255, .14); }
.shuttle-hero__title { color: #fff; margin-bottom: .45em; text-wrap: balance; }
.shuttle-hero__sub { font-size: clamp(1.05rem, .95rem + .5vw, 1.25rem); font-weight: 500; color: rgba(255, 255, 255, .9); margin-bottom: 1rem; }
.shuttle-hero__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; font-size: 1.02rem; color: rgba(255, 255, 255, .92); margin-bottom: 1.25rem; }
.shuttle-hero__price strong { font-size: 1.35rem; color: #fff; }
.shuttle-hero__dot { opacity: .6; }
.shuttle-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.25rem; }
.shuttle-hero__actions .shuttle-btn--ghost { color: #fff; }
.shuttle-hero__actions .shuttle-btn--primary { box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }
@media (max-width: 480px) { .shuttle-hero__actions .shuttle-btn { flex: 1 1 100%; } }

/* Trust chips */
.shuttle-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.shuttle-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .8rem; border-radius: 999px; font-size: .86rem; font-weight: 600; background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .22); }
.shuttle-chip .shuttle-icon { width: 1.05em; height: 1.05em; color: var(--sh-accent-2); }
.shuttle-chip:last-child .shuttle-icon { color: #8ee0b0; }

/* Route strip (hero, desktop) + full timeline (pickup section) */
.shuttle-route { position: relative; display: grid; gap: 1rem; }
.shuttle-route__stop { position: relative; padding-left: 2rem; }
.shuttle-route__stop::before { content: ""; position: absolute; left: .45rem; top: .35rem; width: .9rem; height: .9rem; border-radius: 50%; background: var(--sh-accent-2); box-shadow: 0 0 0 4px rgba(255, 255, 255, .18); }
.shuttle-route__stop::after { content: ""; position: absolute; left: .85rem; top: 1.4rem; bottom: -1.1rem; border-left: 2px dashed rgba(255, 255, 255, .35); }
.shuttle-route__stop:last-child::after { display: none; }
.shuttle-route__stop--dest::before { background: #fff; }
.shuttle-route__time { display: block; font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1.2; }
.shuttle-route__name { display: block; font-size: .92rem; color: rgba(255, 255, 255, .82); }
.shuttle-route__note { margin: 1rem 0 0; font-size: .85rem; color: rgba(255, 255, 255, .7); }

.shuttle-hero__strip { display: none; }
@media (min-width: 900px) {
	.shuttle-hero__inner { grid-template-columns: minmax(0, 1fr) 300px; align-items: end; padding-top: 3.5rem; padding-bottom: 3.5rem; }
	.shuttle-hero__strip { display: block; padding: 1.4rem 1.5rem 1.2rem; border-radius: var(--sh-radius); background: rgba(6, 14, 28, .42); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, .16); }
}

/* Full timeline (light background) */
.shuttle-route--full { gap: 1.25rem; margin-bottom: 2.5rem; }
.shuttle-route--full .shuttle-route__stop::before { box-shadow: 0 0 0 4px var(--sh-accent-soft); background: var(--sh-accent); }
.shuttle-route--full .shuttle-route__stop--dest::before { background: var(--sh-accent-2); }
.shuttle-route--full .shuttle-route__stop::after { border-left-color: var(--sh-line); border-left-style: solid; }
.shuttle-route__label { display: block; font-size: .8rem; font-weight: 600; color: var(--sh-muted); }
.shuttle-route--full .shuttle-route__time { color: var(--sh-ink); font-size: 1.25rem; }
.shuttle-route--full .shuttle-route__name { color: var(--sh-body); font-weight: 500; }
.shuttle-route__meta { display: block; font-size: .88rem; color: var(--sh-muted); margin-top: .15rem; }
@media (min-width: 768px) {
	.shuttle-route--full { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
	.shuttle-route--full .shuttle-route__stop { padding-left: 0; padding-top: 1.75rem; }
	.shuttle-route--full .shuttle-route__stop::before { left: 0; top: .1rem; }
	.shuttle-route--full .shuttle-route__stop::after { left: 1.4rem; right: -1.5rem; top: .5rem; bottom: auto; border-left: 0; border-top: 2px solid var(--sh-line); }
}

/* ---- Booking section -------------------------------------------------- */
.shuttle-booking-section { background: var(--sh-surface); padding-top: 2rem; }
.shuttle-booking-grid { display: grid; gap: 1.5rem; }
.shuttle-media { position: relative; border-radius: var(--sh-radius); overflow: hidden; background: var(--sh-line); aspect-ratio: 4 / 3; }
/* Single-image slider: one frame, one <img>; JS swaps src/alt. No track/transform/scroll-snap. */
.shuttle-media__frame { position: relative; width: 100%; height: 100%; display: block; }
.shuttle-media__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shuttle-media__dots { position: absolute; z-index: 10; left: 0; right: 0; bottom: .75rem; display: flex; justify-content: center; gap: .4rem; pointer-events: auto; }
.shuttle-media__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255, 255, 255, .55); cursor: pointer; appearance: none; -webkit-appearance: none; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.shuttle-media__dot.is-active { background: #fff; transform: scale(1.2); }

.shuttle-media--static .shuttle-media__count { position: absolute; right: .85rem; bottom: .85rem; z-index: 4; display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .65rem; border-radius: 999px; background: rgba(15, 23, 42, .72); color: #fff; font-weight: 700; font-size: .85rem; box-shadow: 0 8px 20px rgba(0,0,0,.18); }

.shuttle-book-card { background: #fff; border-radius: var(--sh-radius); box-shadow: var(--sh-shadow-sm); border: 1px solid var(--sh-line); padding: 1.25rem; }
.shuttle-book-card__head { border-bottom: 1px solid var(--sh-line); padding-bottom: 1rem; margin-bottom: 1rem; }
.shuttle-book-card__title { font-size: 1.35rem; margin-bottom: .15em; }
.shuttle-book-card__product { margin: 0; color: var(--sh-muted); font-weight: 500; }
.shuttle-book-card__price { margin: .5rem 0 0; font-size: 1.4rem; font-weight: 700; color: var(--sh-ink); }
.shuttle-facts { display: grid; gap: .55rem; margin-bottom: 1.1rem; font-size: .95rem; }
.shuttle-facts li { display: flex; align-items: flex-start; gap: .6rem; }
.shuttle-facts .shuttle-icon { color: var(--sh-accent); margin-top: .1em; }
.shuttle-facts li:last-child .shuttle-icon { color: var(--sh-go); }
.shuttle-booking iframe.rezdy, .shuttle-weekly iframe.rezdy, .shuttle-calendar iframe.rezdy { display: block; width: 100%; border: 0; }
.shuttle-booking { border-radius: var(--sh-radius-sm); overflow: hidden; }
.shuttle-booking--button, .shuttle-booking--phone { text-align: center; padding: 1rem 0; }
.shuttle-booking--button .shuttle-btn, .shuttle-booking--phone .shuttle-btn { width: 100%; }
.shuttle-booking--empty { padding: 1rem; background: #fff7e6; border: 1px dashed #e0a82e; border-radius: var(--sh-radius-sm); font-size: .92rem; }
.shuttle-book-card__note { margin: 1rem 0 0; font-size: .86rem; color: var(--sh-muted); }

@media (min-width: 900px) {
	.shuttle-booking-section { padding-top: 3rem; }
	.shuttle-booking-grid { grid-template-columns: minmax(0, 1fr) 440px; gap: 2.5rem; align-items: start; }
	.shuttle-booking-grid--no-media { grid-template-columns: minmax(0, 720px); justify-content: center; }
	.shuttle-media { aspect-ratio: auto; height: 100%; min-height: 480px; position: sticky; top: calc(var(--sh-header-h) + 16px); }
	.shuttle-media__frame { min-height: 480px; }
	.shuttle-media__img { position: absolute; inset: 0; }
	.shuttle-book-card { padding: 1.5rem; }
}

/* ---- Checklists / tags ----------------------------------------------- */
.shuttle-checklist { display: grid; gap: .6rem; }
.shuttle-checklist li { display: flex; align-items: flex-start; gap: .6rem; }
.shuttle-checklist .shuttle-icon { color: var(--sh-accent); margin-top: .15em; }
.shuttle-checklist--yes .shuttle-icon { color: var(--sh-go); }
.shuttle-checklist--no .shuttle-icon { color: var(--sh-no); }
.shuttle-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.shuttle-tags li { padding: .35rem .7rem; border-radius: 999px; background: var(--sh-accent-soft); color: var(--sh-accent); font-size: .86rem; font-weight: 600; }

/* ---- Pickup ----------------------------------------------------------- */
.shuttle-pickup__grid { display: grid; gap: 1.5rem; }
.shuttle-pickup__subtitle { margin-bottom: .75rem; }
.shuttle-pickup__confirm { margin-top: 1rem; font-size: .92rem; color: var(--sh-muted); }
.shuttle-pickup__map { border-radius: var(--sh-radius); overflow: hidden; border: 1px solid var(--sh-line); background: var(--sh-surface); }
.shuttle-pickup__map iframe { display: block; width: 100%; height: 360px; border: 0; }
@media (min-width: 900px) {
	.shuttle-pickup__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
	.shuttle-pickup__map iframe { height: 420px; }
}

/* ---- Why book --------------------------------------------------------- */
.shuttle-why { background: var(--sh-surface); }
.shuttle-why__grid { display: grid; gap: 1.5rem; }
.shuttle-why__item { padding-left: 3rem; position: relative; }
.shuttle-why__icon { position: absolute; left: 0; top: .1rem; width: 2.25rem; height: 2.25rem; padding: .45rem; border-radius: 10px; background: #fff; color: var(--sh-accent); box-shadow: var(--sh-shadow-sm); }
.shuttle-why__title { font-size: 1.05rem; margin-bottom: .2em; }
.shuttle-why__text { margin: 0; font-size: .95rem; }
@media (min-width: 640px) { .shuttle-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .shuttle-why__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem; } }

/* ---- Included --------------------------------------------------------- */
.shuttle-included__grid { display: grid; gap: 2rem; }
.shuttle-included__subtitle { margin-bottom: .75rem; }
@media (min-width: 768px) { .shuttle-included__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }

/* ---- Experience ------------------------------------------------------- */
.shuttle-experience { background: var(--sh-surface); }
.shuttle-experience__grid { display: grid; gap: 2rem; }
.shuttle-experience__subtitle { margin: 0 0 .75rem; }
.shuttle-experience__aside > h3 + ul + h3 { margin-top: 1.5rem; }
.shuttle-prose { max-width: 62ch; }
.shuttle-prose p { font-size: 1.05rem; }
.shuttle-prose h2, .shuttle-prose h3 { margin-top: 1.5em; }
.shuttle-prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1em; }
.shuttle-prose ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 1em; }
.shuttle-prose img { border-radius: var(--sh-radius-sm); }
@media (min-width: 900px) { .shuttle-experience__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 3rem; } }

.shuttle-brands { column-count: 2; column-gap: 2rem; font-size: .95rem; }
.shuttle-brands li { break-inside: avoid; padding: .3rem 0; border-bottom: 1px solid var(--sh-line); }
@media (min-width: 640px) { .shuttle-brands { column-count: 3; } }
@media (min-width: 900px) { .shuttle-brands { column-count: 4; } }
.shuttle-accordion--brands { margin-top: 2rem; }

/* ---- Accordion / FAQ -------------------------------------------------- */
.shuttle-accordion { border: 1px solid var(--sh-line); border-radius: var(--sh-radius-sm); background: #fff; }
.shuttle-accordion + .shuttle-accordion { margin-top: .6rem; }
.shuttle-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; cursor: pointer; font-weight: 700; color: var(--sh-ink); list-style: none; }
.shuttle-accordion summary::-webkit-details-marker { display: none; }
.shuttle-accordion summary .shuttle-icon { color: var(--sh-muted); transition: transform .2s ease; }
.shuttle-accordion[open] summary .shuttle-icon { transform: rotate(180deg); }
.shuttle-accordion__body { padding: 0 1.1rem 1.1rem; }
.shuttle-accordion__body p:last-child { margin-bottom: 0; }

/* ---- Weekly schedule -------------------------------------------------- */
.shuttle-weekly { background: var(--sh-surface); }
.shuttle-weekly__widget { background: #fff; border-radius: var(--sh-radius); border: 1px solid var(--sh-line); padding: .5rem; }
@media (max-width: 640px) { .shuttle-weekly__widget { margin: 0 -20px; border-radius: 0; border-left: 0; border-right: 0; padding: .25rem 0; } }

/* ---- Related shuttles ------------------------------------------------- */
.shuttle-related__grid { display: grid; gap: 1.25rem; }
.shuttle-card__link { display: grid; grid-template-columns: 96px 1fr; gap: 1rem; align-items: center; padding: .85rem; border: 1px solid var(--sh-line); border-radius: var(--sh-radius); text-decoration: none; color: inherit; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.shuttle-card__link:hover { border-color: var(--sh-accent); box-shadow: var(--sh-shadow-sm); }
.shuttle-card__img { width: 96px; height: 72px; object-fit: cover; border-radius: var(--sh-radius-sm); }
.shuttle-card__img--placeholder { display: grid; place-items: center; background: var(--sh-accent-soft); color: var(--sh-accent); }
.shuttle-card__img--placeholder .shuttle-icon { width: 28px; height: 28px; }
.shuttle-card__body { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.shuttle-card__title { font-weight: 700; color: var(--sh-ink); }
.shuttle-card__blurb { font-size: .9rem; color: var(--sh-body); }
.shuttle-card__cta { display: inline-flex; align-items: center; gap: .3rem; font-size: .88rem; font-weight: 700; color: var(--sh-accent); margin-top: .2rem; }
.shuttle-card__cta .shuttle-icon { width: 1em; height: 1em; }
@media (min-width: 768px) {
	.shuttle-related__grid { grid-template-columns: repeat(3, 1fr); }
	.shuttle-card__link { grid-template-columns: 1fr; align-items: start; padding: 0; overflow: hidden; height: 100%; }
	.shuttle-card__img { width: 100%; height: 150px; border-radius: 0; }
	.shuttle-card__body { padding: 1rem 1.1rem 1.2rem; }
}

/* ---- Footer ----------------------------------------------------------- */
.shuttle-footer { background: var(--sh-deep); color: rgba(255, 255, 255, .82); padding: 3rem 0 1.5rem; }
.shuttle-footer a { color: #fff; text-decoration: none; }
.shuttle-footer a:hover { text-decoration: underline; }
.shuttle-footer__grid { display: grid; gap: 2rem; }
.shuttle-footer__name { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: .4rem; }
.shuttle-footer__blurb { font-size: .92rem; max-width: 40ch; }
.shuttle-footer__heading { font-weight: 700; color: #fff; margin-bottom: .6rem; }
.shuttle-footer__list { display: grid; gap: .5rem; font-size: .95rem; }
.shuttle-footer__list li { display: flex; align-items: flex-start; gap: .5rem; }
.shuttle-footer__list .shuttle-icon { color: var(--sh-accent-2); margin-top: .2em; }
.shuttle-footer__social { display: flex; gap: .75rem; margin-top: .75rem; }
.shuttle-footer__social a { padding: .35rem .7rem; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; font-size: .85rem; }
.shuttle-footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .85rem; color: rgba(255, 255, 255, .6); }
.shuttle-footer__bottom p { margin: 0; }
@media (min-width: 768px) { .shuttle-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }

/* ---- Sticky mobile CTA ------------------------------------------------ */
.shuttle-stickybar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: .65rem 16px calc(.65rem + env(safe-area-inset-bottom));
	background: #fff; border-top: 1px solid var(--sh-line); box-shadow: 0 -10px 30px rgba(16, 24, 40, .12);
	transform: translateY(110%); transition: transform .22s ease;
}
.shuttle-stickybar.is-visible { transform: none; }
.shuttle-stickybar__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.shuttle-stickybar__text strong { color: var(--sh-ink); font-size: 1.02rem; }
.shuttle-stickybar__text span { font-size: .8rem; color: var(--sh-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shuttle-stickybar .shuttle-btn { flex: 0 0 auto; }
body.shuttle-sticky-visible { padding-bottom: 76px; }
@media (min-width: 768px) { .shuttle-stickybar { display: none; } body.shuttle-sticky-visible { padding-bottom: 0; } }

/* ---- Standard pages / blog ------------------------------------------- */
.shuttle-page__head { background: var(--sh-surface); padding: 2.5rem 0; border-bottom: 1px solid var(--sh-line); }
.shuttle-page__title { margin: 0; font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem); }
.shuttle-page__body { padding: 2.5rem 20px; max-width: var(--sh-narrow); }
.shuttle-page__body > * { max-width: 68ch; }
.shuttle-page__body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1em; }
.shuttle-page__body ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 1em; }
.shuttle-page__cta { padding: 0 20px 3rem; max-width: var(--sh-narrow); }
.shuttle-entry { padding: 1.25rem 0; border-bottom: 1px solid var(--sh-line); }
.shuttle-entry__title { margin: 0 0 .25em; }
.shuttle-entry__title a { color: var(--sh-ink); text-decoration: none; }
.alignwide, .alignfull { max-width: none; }
.wp-block-image img { border-radius: var(--sh-radius-sm); }

/* ---- Motion ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.shuttle-nav__menu, .shuttle-stickybar, .shuttle-btn, .shuttle-accordion summary .shuttle-icon, .shuttle-card__link { transition: none; }
}

/* Mobile/tablet cleanup: avoid repeating the hero image above the booking widget. */
@media (max-width: 899px) {
	.shuttle-booking-grid .shuttle-media {
		display: none !important;
	}

	.shuttle-booking-section {
		padding-top: 1.25rem;
	}
}

/* ---- MDB-style product carousel fix -----------------------------------
 * Uses MDB carousel markup/data attrs, with ShuttleRezdy fallback CSS/JS.
 * Keep this scoped so it does not disturb Rezdy widgets or page layout.
 */
.shuttle-media--mdb {
	position: relative;
	border-radius: var(--sh-radius);
	overflow: hidden;
	background: var(--sh-line);
	box-shadow: var(--sh-shadow-sm);
}

.shuttle-product-carousel,
.shuttle-product-carousel .carousel-inner,
.shuttle-product-carousel .carousel-item {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
	border-radius: inherit;
}

.shuttle-product-carousel .carousel-inner {
	overflow: hidden;
}

.shuttle-product-carousel .carousel-item {
	display: none;
}

.shuttle-product-carousel .carousel-item.active {
	display: block !important;
}

.shuttle-product-carousel .carousel-item img,
.shuttle-product-carousel img.d-block.w-100 {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: inherit;
}

.shuttle-product-carousel__indicators,
.shuttle-product-carousel .carousel-indicators {
	position: absolute;
	left: 0;
	right: 0;
	bottom: .8rem;
	z-index: 8;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	pointer-events: auto;
}

.shuttle-product-carousel__indicators button,
.shuttle-product-carousel .carousel-indicators button {
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	min-width: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .62);
	box-shadow: 0 1px 6px rgba(15, 23, 42, .28);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.shuttle-product-carousel__indicators button.active,
.shuttle-product-carousel .carousel-indicators button.active {
	background: #fff;
	transform: scale(1.22);
}

.shuttle-product-carousel__control,
.shuttle-product-carousel .carousel-control-prev,
.shuttle-product-carousel .carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 7;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14%;
	min-width: 54px;
	padding: 0;
	border: 0;
	background: linear-gradient(90deg, rgba(15,23,42,.34), transparent);
	color: #fff;
	cursor: pointer;
	opacity: .88;
}

.shuttle-product-carousel .carousel-control-prev,
.shuttle-product-carousel__control--prev {
	left: 0;
}

.shuttle-product-carousel .carousel-control-next,
.shuttle-product-carousel__control--next {
	right: 0;
	background: linear-gradient(270deg, rgba(15,23,42,.34), transparent);
}

.shuttle-product-carousel .carousel-control-prev-icon,
.shuttle-product-carousel .carousel-control-next-icon {
	display: inline-block;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(15, 23, 42, .72);
	position: relative;
}

.shuttle-product-carousel .carousel-control-prev-icon::before,
.shuttle-product-carousel .carousel-control-next-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.shuttle-product-carousel .carousel-control-prev-icon::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.shuttle-product-carousel .carousel-control-next-icon::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.shuttle-media--mdb .shuttle-media__count {
	position: absolute;
	right: .85rem;
	bottom: .85rem;
	z-index: 9;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .4rem .65rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, .72);
	color: #fff;
	font-weight: 700;
	font-size: .85rem;
	box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

@media (max-width: 899px) {
	.shuttle-product-carousel .carousel-item img,
	.shuttle-product-carousel img.d-block.w-100 {
		aspect-ratio: 16 / 10;
		height: auto !important;
	}
}

/* ---- MDB carousel polish: spacing + no blue focus rail ------------------
 * Keeps the booking card beside the carousel while forcing the carousel into
 * a clean landscape frame. Also prevents the full-height carousel controls
 * from showing a browser focus outline as a vertical blue line.
 */
@media (min-width: 900px) {
	.shuttle-booking-grid {
		grid-template-columns: minmax(0, 620px) minmax(360px, 420px) !important;
		gap: clamp(1.5rem, 2.75vw, 2.25rem) !important;
		justify-content: center;
		align-items: start;
	}

	.shuttle-media.shuttle-media--mdb {
		width: 100%;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 16 / 10;
		position: sticky;
		top: calc(var(--sh-header-h) + 16px);
	}

	.shuttle-media.shuttle-media--mdb .shuttle-product-carousel,
	.shuttle-media.shuttle-media--mdb .carousel-inner,
	.shuttle-media.shuttle-media--mdb .carousel-item {
		height: 100% !important;
		min-height: 0 !important;
	}

	.shuttle-media.shuttle-media--mdb .carousel-item img,
	.shuttle-media.shuttle-media--mdb img.d-block.w-100 {
		width: 100% !important;
		height: 100% !important;
		aspect-ratio: 16 / 10;
		object-fit: cover;
	}
}

.shuttle-product-carousel .carousel-control-prev,
.shuttle-product-carousel .carousel-control-next,
.shuttle-product-carousel .carousel-control-prev:focus,
.shuttle-product-carousel .carousel-control-next:focus,
.shuttle-product-carousel .carousel-control-prev:focus-visible,
.shuttle-product-carousel .carousel-control-next:focus-visible,
.shuttle-product-carousel .carousel-indicators button,
.shuttle-product-carousel .carousel-indicators button:focus,
.shuttle-product-carousel .carousel-indicators button:focus-visible {
	outline: 0 !important;
	box-shadow: none !important;
	border: 0 !important;
}

.shuttle-product-carousel .carousel-control-prev:focus-visible .carousel-control-prev-icon,
.shuttle-product-carousel .carousel-control-next:focus-visible .carousel-control-next-icon {
	box-shadow: 0 0 0 3px rgba(255,255,255,.88), 0 0 0 6px rgba(29,95,214,.55) !important;
}

.shuttle-product-carousel .carousel-indicators button:focus-visible {
	outline: 2px solid rgba(255,255,255,.9) !important;
	outline-offset: 3px !important;
}

/* ---- Slider vertical tune ---------------------------------------------
 * Make the desktop product carousel taller / less panoramic.
 * Keeps the booking card beside the carousel and preserves mobile hide rule.
 */
@media (min-width: 900px) {
	.shuttle-booking-grid {
		grid-template-columns: minmax(0, 580px) minmax(360px, 420px) !important;
		gap: clamp(1.25rem, 2.25vw, 2rem) !important;
	}

	.shuttle-media.shuttle-media--mdb {
		aspect-ratio: 4 / 3 !important;
		max-width: 580px;
	}

	.shuttle-media.shuttle-media--mdb .carousel-item img,
	.shuttle-media.shuttle-media--mdb img.d-block.w-100 {
		aspect-ratio: 4 / 3 !important;
		object-fit: cover;
	}
}

/* ---- Hardcoded desktop vertical carousel sizing -------------------------
 * Copied from the working Customizer CSS test.
 * Keeps desktop booking layout as a tall product-poster carousel beside Rezdy.
 */
@media (min-width: 900px) {
  .shuttle-booking-grid {
    grid-template-columns: minmax(0, 540px) minmax(360px, 420px) !important;
    gap: clamp(1.5rem, 2.5vw, 2.25rem) !important;
    align-items: start !important;
  }

  .shuttle-media.shuttle-media--mdb,
  .shuttle-product-carousel {
    width: 100% !important;
    max-width: 540px !important;
    aspect-ratio: 4 / 5 !important;
    height: clamp(760px, 68vw, 987px) !important;
    min-height: 760px !important;
  }

  .shuttle-product-carousel .carousel-inner,
  .shuttle-product-carousel .carousel-item {
    height: 100% !important;
  }

  .shuttle-product-carousel .carousel-item img,
  .shuttle-product-carousel img.d-block.w-100 {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* ---- Waikele slider controls: hard-visible MDB-compatible arrows -------
 * MDB5 intentionally ships its carousel prev/next icon background images as
 * none in this package. Use explicit inline SVG arrows so the controls remain
 * visible regardless of MDB/Bootstrap icon CSS or theme cache order.
 */
.shuttle-product-carousel .carousel-control-prev,
.shuttle-product-carousel .carousel-control-next {
  top: 50% !important;
  bottom: auto !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  transform: translateY(-50%);
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, .78) !important;
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .28) !important;
  cursor: pointer !important;
}

.shuttle-product-carousel .carousel-control-prev {
  left: 14px !important;
}

.shuttle-product-carousel .carousel-control-next {
  right: 14px !important;
}

.shuttle-product-carousel .carousel-control-prev:hover,
.shuttle-product-carousel .carousel-control-next:hover,
.shuttle-product-carousel .carousel-control-prev:focus,
.shuttle-product-carousel .carousel-control-next:focus {
  background: rgba(15, 23, 42, .94) !important;
  color: #fff !important;
  opacity: 1 !important;
}

.shuttle-product-carousel .carousel-control-prev-icon.shuttle-carousel-arrow,
.shuttle-product-carousel .carousel-control-next-icon.shuttle-carousel-arrow {
  display: grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  background-image: none !important;
  color: #fff !important;
}

.shuttle-product-carousel .shuttle-carousel-arrow::before,
.shuttle-product-carousel .shuttle-carousel-arrow::after {
  content: none !important;
  display: none !important;
}

.shuttle-product-carousel .shuttle-carousel-arrow svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  overflow: visible;
  color: #fff !important;
  pointer-events: none;
}

@media (max-width: 899px) {
  .shuttle-product-carousel .carousel-control-prev,
  .shuttle-product-carousel .carousel-control-next {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
  .shuttle-product-carousel .carousel-control-prev { left: 10px !important; }
  .shuttle-product-carousel .carousel-control-next { right: 10px !important; }
}
