/*
Theme Name: Women Connect
Theme URI: https://womenconnect.fr
Author: Women Connect
Description: Thème WordPress sur-mesure pour Women Connect, service de VTC avec chauffeures femmes (Yvelines / région parisienne).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: women-connect
*/

/* ==========================================================================
   0. Variables & reset
   ========================================================================== */

:root {
	--wc-plum: #4A1942;
	--wc-plum-dark: #2E0F2A;
	--wc-gold: #C9A876;
	--wc-gold-light: #E8C99B;
	--wc-cream: #FDFBF8;

	--wc-text: #2A1F27;
	--wc-text-soft: #6B5A66;
	--wc-text-softer: #8B7A86;
	--wc-text-strong: #4A3A46;
	--wc-border: rgba(74, 25, 66, 0.08);
	--wc-border-strong: rgba(74, 25, 66, 0.1);
	--wc-negative: #C4736B;

	--wc-font-title: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--wc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--wc-font-logo: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.wc-body {
	margin: 0;
}

.wc-page {
	min-height: 100vh;
	background: var(--wc-cream);
	color: var(--wc-text);
	font-family: var(--wc-font-body);
	position: relative;
	overflow-x: hidden;
}

.wc-page ul {
	list-style: none;
}

.wc-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

.wc-icon-white { color: #fff; }
.wc-icon-gold { color: var(--wc-gold); }
.wc-icon-gold-light { color: var(--wc-gold-light); }
.wc-icon-negative { color: var(--wc-negative); }
.wc-star { color: var(--wc-gold); }

/* ==========================================================================
   1. Header
   ========================================================================== */

.wc-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 20px;
}

.wc-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	line-height: 1;
}

.wc-logo-img {
	height: 20px;
	width: auto;
	display: block;
}

.wc-logo-word {
	font-family: var(--wc-font-logo);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--wc-plum);
}

.wc-logo-word-light {
	font-family: var(--wc-font-logo);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.01em;
	color: var(--wc-plum);
}

.wc-logo-dot {
	font-family: var(--wc-font-logo);
	font-size: 15px;
	font-weight: 800;
	color: var(--wc-gold);
}

.wc-nav-desktop {
	display: none;
	gap: 24px;
}

.wc-nav-link {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	text-decoration: none;
	font-weight: 500;
}

.wc-nav-link:hover {
	color: #fff;
}

.wc-menu-btn {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 4px;
	display: flex;
}

.wc-mobile-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 20px;
	right: 20px;
	z-index: 6;
	background: rgba(20, 8, 18, 0.96);
	border-radius: 14px;
	padding: 6px 14px;
	backdrop-filter: blur(8px);
}

.wc-mobile-menu.is-open {
	display: flex;
}

.wc-mobile-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	padding: 12px 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
}

.wc-mobile-link:last-child {
	border-bottom: none;
}

/* ==========================================================================
   2. Hero
   ========================================================================== */

.wc-hero {
	position: relative;
	padding: 0 20px 6px;
	overflow: visible;
}

.wc-hero-media {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 620px;
	transform: translateX(-50%);
	overflow: hidden;
	z-index: 0;
}

.wc-hero-bg {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 55% 0%;
}

.wc-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(46, 15, 42, 0.35) 0%,
		rgba(20, 8, 18, 0.55) 45%,
		rgba(12, 5, 10, 0.92) 100%
	);
}

.wc-hero-content {
	position: relative;
	/* Higher than .wc-hero-trust below it (z-index: 2) — otherwise, since
	   they're siblings with the same z-index, .wc-hero-trust paints on
	   top in DOM order and swallows anything the booking card opens that
	   extends past its own box (e.g. the time picker dropdown). */
	z-index: 3;
	padding-top: 84px;
}

.wc-h1 {
	font-family: var(--wc-font-logo);
	font-size: clamp(28px, 7.5vw, 38px);
	line-height: 1.18;
	font-weight: 700;
	color: #fff;
	margin: 0 0 22px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.wc-trust-list-compact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 20px;
	padding: 0;
	margin: 16px 0 0;
}

.wc-trust-compact-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--wc-text-soft);
}

.wc-hero-trust {
	position: relative;
	z-index: 2;
	padding-top: 28px;
	text-align: center;
}

/* Two small contact buttons under the trust list: WhatsApp and e-mail. */
.wc-hero-contact-text {
	margin: 18px 0 10px;
	font-size: 13px;
	color: var(--wc-text-soft);
}

.wc-hero-contact {
	display: flex;
	gap: 10px;
	max-width: 360px;
	margin: 0 auto;
}

.wc-contact-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	border-radius: 22px;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
}

.wc-contact-whatsapp {
	background: #25d366;
	color: #073b1c;
}

.wc-contact-mail {
	border: 1.5px solid var(--wc-plum);
	color: var(--wc-plum);
}

.wc-hero-trust .wc-rating-badge {
	justify-content: center;
	margin-bottom: 0;
}

.wc-rating-badge {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 26px;
}

.wc-rating-word {
	font-size: 13px;
	font-weight: 700;
	color: var(--wc-plum-dark);
}

.wc-stars {
	display: flex;
	gap: 1px;
}

.wc-rating-count {
	font-size: 11.5px;
	color: var(--wc-text-softer);
}

/* ==========================================================================
   3. Booking card (visuel uniquement)
   ========================================================================== */

.wc-booking-card {
	background: #fff;
	border: 1px solid rgba(201, 168, 118, 0.35);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 25px 60px rgba(12, 5, 10, 0.45);
}

.wc-booking-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.wc-booking-icon-circle {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: var(--wc-plum);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wc-booking-card-title {
	font-family: var(--wc-font-title);
	font-size: 17px;
	color: var(--wc-plum-dark);
	font-weight: 600;
}

/*
 * Intro animation, first load only: one letter of the hero headline at a time turns plum,
 * and the booking card's fields rise in one after the other. The classes come
 * from a tiny script in the page head (wc_print_intro_flag in functions.php)
 * that skips them when the visitor asks for reduced motion.
 */
.wc-anim .wc-h1:not(.wc-tw-ready) {
	visibility: hidden;
	animation: wc-reveal-failsafe 0s 2.5s forwards; /* never leave the headline hidden if the script fails */
}

@keyframes wc-reveal-failsafe {
	to {
		visibility: visible;
	}
}

/* The headline is white; one letter at a time turns plum, then goes back to white, as if being read. */
.wc-tw-ch {
	transition: color 0.12s ease;
}

.wc-tw-ch.is-on {
	color: var(--wc-plum);
}

@keyframes wc-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
}

/* "backwards" only: nothing is left applied afterwards, so no stray stacking context for the address dropdowns. */
.wc-intro .wc-booking-card {
	animation: wc-rise 0.55s ease-out 0.15s backwards;
}

.wc-intro .wc-booking-card > * {
	animation: wc-rise 0.5s ease-out backwards;
	animation-delay: 0.9s;
}

.wc-intro .wc-booking-card > :nth-child(1) { animation-delay: 0.35s; }
.wc-intro .wc-booking-card > :nth-child(2) { animation-delay: 0.45s; }
.wc-intro .wc-booking-card > :nth-child(3) { animation-delay: 0.55s; }
.wc-intro .wc-booking-card > :nth-child(4) { animation-delay: 0.65s; }
.wc-intro .wc-booking-card > :nth-child(5) { animation-delay: 0.75s; }
.wc-intro .wc-booking-card > :nth-child(6) { animation-delay: 0.85s; }
.wc-intro .wc-booking-card > :nth-child(7) { animation-delay: 0.95s; }
.wc-intro .wc-booking-card > :nth-child(8) { animation-delay: 1.05s; }

/* Scroll reveal: main blocks fade and rise into place the first time they scroll into view.
   The class is added by main.js only (and only without reduced-motion), so nothing is ever hidden without JS. */
.wc-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.wc-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Reassurance line at the top of the booking card: what happens after booking. */
.wc-booking-reassure {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 16px;
	padding: 11px 13px;
	border-radius: 12px;
	background: rgba(74, 25, 66, 0.06);
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--wc-text-strong);
}

.wc-reassure-icon {
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--wc-plum);
}

.wc-field {
	display: flex;
	align-items: center;
	gap: 9px;
	background: #FAF7F3;
	border: 1px solid var(--wc-border-strong);
	border-radius: 11px;
	padding: 12px 13px;
	margin-bottom: 12px;
}

.wc-field-wrap {
	position: relative;
}

.wc-autocomplete-list[hidden] {
	display: none;
}

.wc-autocomplete-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 20;
	margin: -6px 0 0;
	padding: 6px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--wc-border-strong);
	border-radius: 11px;
	box-shadow: 0 12px 28px rgba(12, 5, 10, 0.18);
	max-height: 220px;
	overflow-y: auto;
}

.wc-autocomplete-item {
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 13px;
	color: var(--wc-text-strong);
	cursor: pointer;
}

.wc-autocomplete-item:hover {
	background: rgba(201, 168, 118, 0.16);
	color: var(--wc-plum-dark);
}

.wc-field-icon {
	color: var(--wc-gold);
	flex-shrink: 0;
}

.wc-field-row {
	display: flex;
	gap: 10px;
}

.wc-field-row .wc-field,
.wc-field-row .wc-field-wrap {
	flex: 1;
}

.wc-input {
	border: none;
	background: transparent;
	outline: none;
	font-size: 13.5px;
	color: var(--wc-text);
	font-family: inherit;
	width: 100%;
}

/* iOS Safari auto-zooms the page when focusing any input/select whose
   font-size is under 16px — bump it just on mobile so tapping a field
   (address, date, time) doesn't zoom the page in. */
@media (max-width: 899px) {
	.wc-input {
		font-size: 16px;
	}
}

.wc-trip-toggle {
	display: inline-flex;
	gap: 4px;
	margin-bottom: 20px;
	padding: 4px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

.wc-trip-btn {
	font-size: 12.5px;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: 999px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}

.wc-trip-btn.is-active {
	background: linear-gradient(135deg, var(--wc-gold), var(--wc-gold-light));
	color: var(--wc-plum-dark);
}

.wc-checkbox-row {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 6px 0 16px;
	cursor: pointer;
}

.wc-checkbox {
	width: 16px;
	height: 16px;
	accent-color: var(--wc-plum);
}

.wc-checkbox-text {
	font-size: 13px;
	color: var(--wc-text-strong);
}

.wc-fare-error {
	font-size: 12.5px;
	color: #b3261e;
	margin: 0 0 12px;
}

.wc-fare-result[hidden],
.wc-fare-error[hidden],
.wc-fare-whatsapp[hidden] {
	display: none;
}

/* Shown only when someone asks for a departure less than 2 hours away. */
.wc-fare-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 700;
	padding: 14px;
	border-radius: 12px;
	margin: 0 0 12px;
}

.wc-fare-result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #FAF7F3;
	border: 1px solid var(--wc-border-strong);
	border-radius: 11px;
	padding: 12px 13px;
	margin-bottom: 12px;
}

.wc-fare-distance {
	font-size: 12.5px;
	color: var(--wc-text-softer);
}

.wc-fare-amount {
	font-family: var(--wc-font-title);
	font-size: 17px;
	font-weight: 700;
	color: var(--wc-plum-dark);
}

/* Return leg of an "Aller-retour" (same day as the outbound ride). */
.wc-return-block[hidden] {
	display: none;
}

.wc-return-block {
	margin: 2px 0 12px;
	padding-top: 14px;
	border-top: 1px dashed var(--wc-border-strong);
}

.wc-return-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 10px;
}

.wc-return-title {
	font-family: var(--wc-font-title);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--wc-plum-dark);
}

.wc-return-day {
	font-size: 11.5px;
	color: var(--wc-text-softer);
}

.wc-checkout-recap-row[hidden] {
	display: none;
}

.wc-comfort-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--wc-plum), var(--wc-plum-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 15px;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
}

.wc-reserve-btn {
	margin-top: 0;
}

/* ==========================================================================
   3d. Checkout modal (customer info + Stripe redirect — see booking.js /
   functions.php) and the post-payment success/cancel banners above the hero.
   ========================================================================== */

.wc-booking-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.wc-booking-banner-success {
	background: rgba(74, 25, 66, 0.08);
	color: var(--wc-plum-dark);
}

.wc-booking-banner-cancel {
	background: rgba(196, 115, 107, 0.14);
	color: var(--wc-negative);
}

.wc-checkout-overlay[hidden] {
	display: none;
}

.wc-checkout-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(12, 5, 10, 0.55);
}

.wc-checkout-modal {
	position: relative;
	width: 100%;
	max-width: 380px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 20px;
	padding: 26px 20px 20px;
	box-shadow: 0 25px 60px rgba(12, 5, 10, 0.45);
}

.wc-checkout-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: transparent;
	border: none;
	color: var(--wc-text-softer);
	cursor: pointer;
	padding: 4px;
	display: flex;
}

.wc-checkout-title {
	font-family: var(--wc-font-title);
	font-size: 18px;
	font-weight: 600;
	color: var(--wc-plum-dark);
	margin: 0 0 16px;
}

.wc-checkout-recap {
	background: #FAF7F3;
	border: 1px solid var(--wc-border-strong);
	border-radius: 11px;
	padding: 12px 13px;
	margin-bottom: 16px;
}

.wc-checkout-recap-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 12.5px;
	color: var(--wc-text-strong);
	padding: 4px 0;
}

.wc-checkout-recap-total {
	border-top: 1px solid var(--wc-border-strong);
	margin-top: 4px;
	padding-top: 8px;
	font-weight: 700;
	font-size: 15px;
	color: var(--wc-plum-dark);
}

.wc-checkout-secure-note {
	text-align: center;
	font-size: 11px;
	color: var(--wc-text-softer);
	margin: 10px 0 0;
}

/* Booking confirmation page (shown after a verified Stripe payment). */

.wc-confirm {
	/* Brand plum page. The photo (its data URI lives in confirm-bg.css, loaded only
	   on this page) is zoomed out and cropped so the standing driver shows from
	   the top, then fades into the plum under a thick violet veil. */
	--wc-w: min(100vw, 720px);
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--wc-plum), var(--wc-plum-dark));
	min-height: 100vh;
	padding: 94px 20px 64px;
}

.wc-confirm::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--wc-w);
	aspect-ratio: 1116 / 2000;
	margin-left: calc(var(--wc-w) / -2);
	margin-top: calc(var(--wc-w) * -0.34);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 97%);
	mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 97%);
}

.wc-confirm::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(74, 25, 66, 0.66) 0%, rgba(46, 15, 42, 0.8) 30%, rgba(46, 15, 42, 0.93) 55%, rgba(46, 15, 42, 0.5) 100%);
	pointer-events: none;
}

/* Wide screens: push the photo to the right so the white card doesn't hide it. */
@media (min-width: 900px) {
	.wc-confirm::before {
		left: auto;
		right: 0;
		margin-left: 0;
	}
}

.wc-confirm-inner {
	position: relative;
	z-index: 2;
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.wc-confirm-title,
.wc-confirm-sub,
.wc-confirm-note {
	text-shadow: 0 1px 14px rgba(20, 6, 18, 0.55);
}

.wc-confirm-badge {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(46, 15, 42, 0.7);
	border: 1.5px solid rgba(232, 201, 155, 0.6);
	color: var(--wc-gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-confirm-title {
	font-family: var(--wc-font-title);
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 10px;
}

.wc-confirm-sub {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
}

.wc-confirm-sub strong {
	color: #fff;
	word-break: break-all;
}

.wc-confirm-card {
	background: #fff;
	color: var(--wc-text);
	border-radius: 20px;
	padding: 6px 20px 18px;
	text-align: left;
	box-shadow: 0 25px 60px rgba(12, 5, 10, 0.45);
}

.wc-confirm-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--wc-border-strong);
}

.wc-confirm-row .wc-icon {
	margin-top: 2px;
}

.wc-confirm-label {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wc-text-softer);
	margin-bottom: 3px;
}

.wc-confirm-value {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: var(--wc-text-strong);
}

.wc-confirm-total {
	display: flex;
	justify-content: space-between;
	padding: 16px 0 4px;
	font-family: var(--wc-font-title);
	font-size: 18px;
	font-weight: 700;
	color: var(--wc-plum-dark);
}

.wc-confirm-ref {
	margin: 8px 0 0;
	font-size: 11.5px;
	color: var(--wc-text-softer);
}

.wc-confirm-note {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 22px 0;
}

.wc-confirm-note strong {
	color: #fff;
}

.wc-confirm-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	padding: 15px;
	border-radius: 12px;
	margin-bottom: 14px;
}

.wc-confirm-mail {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--wc-gold-light);
	border: 1.5px solid rgba(232, 201, 155, 0.55);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	padding: 14px;
	border-radius: 12px;
	margin-bottom: 22px;
}

.wc-confirm-home {
	display: inline-block;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	text-decoration: underline;
}

#wc-date,
#wc-time {
	cursor: pointer;
}

/* ==========================================================================
   3b. Flatpickr theming (date picker, desktop only — see main.js)
   ========================================================================== */

.flatpickr-calendar {
	font-family: var(--wc-font-body);
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(12, 5, 10, 0.25);
	border: 1px solid var(--wc-border-strong);
}

.flatpickr-months {
	border-radius: 14px 14px 0 0;
	overflow: hidden;
}

/* `.flatpickr-calendar` prefix on all of these (matching the fix below
   for the day grid) so they reliably beat flatpickr's own same-specificity
   rules, which — loaded after our stylesheet — would otherwise win the
   cascade and leave the month/year text black-on-plum and unreadable. */
.flatpickr-calendar .flatpickr-months .flatpickr-month,
.flatpickr-calendar .flatpickr-current-month {
	background: var(--wc-plum-dark);
	color: #fff;
	fill: #fff;
}

.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-calendar .flatpickr-current-month input.cur-year {
	color: #fff;
	font-weight: 600;
}

.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months option {
	color: var(--wc-text);
}

.flatpickr-calendar .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-next-month {
	fill: #fff;
	color: #fff;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
	fill: var(--wc-gold-light);
}

.flatpickr-weekdays {
	background: var(--wc-plum-dark);
}

span.flatpickr-weekday {
	background: var(--wc-plum-dark);
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
	background: var(--wc-plum);
	border-color: var(--wc-plum);
}

.flatpickr-day.today {
	border-color: var(--wc-gold);
}

.flatpickr-day:hover {
	background: rgba(201, 168, 118, 0.18);
}

/* Flatpickr dims "adjacent month" filler days (the tail of last month /
   start of next month shown to fill out the grid) by default, which reads
   as "not bookable" — but every one of those days past today is bookable
   exactly like any other. Only genuinely past/disabled days (further
   below) should look unavailable. The extra `.flatpickr-calendar` prefix
   bumps specificity above flatpickr's own rule, which — loaded after our
   stylesheet, same specificity otherwise — would win the cascade and
   keep dimming these regardless of source order. */
.flatpickr-calendar .flatpickr-day.nextMonthDay,
.flatpickr-calendar .flatpickr-day.prevMonthDay {
	color: var(--wc-text);
}

/* Same specificity as the nextMonthDay/prevMonthDay rule above (and after
   it in source order) so a day that's both — e.g. a genuinely past date
   shown as prevMonthDay filler — still ends up looking disabled. */
.flatpickr-calendar .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
	color: rgba(42, 31, 39, 0.25);
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
	color: var(--wc-text);
	font-weight: 600;
}

.flatpickr-time .numInputWrapper:hover,
.flatpickr-time .flatpickr-am-pm:hover {
	background: rgba(201, 168, 118, 0.18);
}

.numInputWrapper span.arrowUp:after {
	border-bottom-color: var(--wc-plum);
}

.numInputWrapper span.arrowDown:after {
	border-top-color: var(--wc-plum);
}

/* ==========================================================================
   3c. Desktop time-of-day picker (every hour / 5-minute mark shown at
   once as a grid — see main.js). Phones use native <input type="time">.
   ========================================================================== */

.wc-time-picker[hidden] {
	display: none;
}

.wc-time-picker {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	margin: -6px 0 0;
	padding: 14px;
	width: 240px;
	background: #fff;
	border: 1px solid var(--wc-border-strong);
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(12, 5, 10, 0.25);
}

.wc-time-picker-section {
	margin-bottom: 12px;
}

.wc-time-picker-label {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wc-text-softer);
	margin-bottom: 6px;
}

.wc-time-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4px;
}

.wc-time-item {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12.5px;
	color: var(--wc-text-strong);
	background: #FAF7F3;
	cursor: pointer;
	border-radius: 7px;
}

.wc-time-item:hover {
	background: rgba(201, 168, 118, 0.25);
}

.wc-time-item.is-selected {
	background: var(--wc-plum);
	color: #fff;
	font-weight: 700;
}

.wc-time-picker-save {
	width: 100%;
	background: linear-gradient(135deg, var(--wc-plum), var(--wc-plum-dark));
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 10px;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
}

/* ==========================================================================
   4. Audience
   ========================================================================== */

.wc-audience-row {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 22px 20px;
	flex-wrap: wrap;
}

.wc-audience-pill {
	font-size: 12px;
	color: var(--wc-plum);
	background: rgba(201, 168, 118, 0.14);
	border: 1px solid rgba(201, 168, 118, 0.4);
	border-radius: 20px;
	padding: 6px 16px;
	font-weight: 600;
}

/* ==========================================================================
   5. Sections generic
   ========================================================================== */

.wc-section {
	padding: 40px 20px;
}

/* First block under the hero (the steps): less empty space above it. */
#comment {
	padding-top: 24px;
}

.wc-section-alt {
	padding: 40px 20px;
	background: #FBF6F0;
}

.wc-h2 {
	font-family: var(--wc-font-title);
	font-size: 23px;
	font-weight: 600;
	color: var(--wc-plum-dark);
	margin: 0 0 14px;
}

.wc-h2-center {
	font-family: var(--wc-font-title);
	font-size: 23px;
	font-weight: 600;
	color: var(--wc-plum-dark);
	margin: 0 0 8px;
	text-align: center;
}

.wc-section-sub-center {
	font-size: 13px;
	color: var(--wc-text-softer);
	text-align: center;
	margin: 0 0 26px;
}

/* ==========================================================================
   6. Comment ça marche (steps)
   ========================================================================== */

.wc-steps-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Thin gold chevron between two steps (down on phones, right on desktop). */
.wc-step-arrow {
	flex: 0 0 auto;
	align-self: center;
	color: var(--wc-gold);
	stroke-width: 1.6;
	transform: rotate(90deg);
}

/* One photo card per step: the photo fades softly into plum at the bottom and a light caption sits on it. */
.wc-step-card {
	position: relative;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.1;
	border-radius: 16px;
	overflow: hidden;
	background: var(--wc-plum);
	box-shadow: 0 8px 22px rgba(46, 15, 42, 0.1);
	text-align: center;
}

.wc-step-photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wc-step-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 44px 20px 18px;
	background: linear-gradient(to bottom, rgba(74, 25, 66, 0) 0%, rgba(74, 25, 66, 0.78) 55%, rgba(74, 25, 66, 0.92) 100%);
}

.wc-step-eyebrow {
	display: block;
	font-size: 10px;
	letter-spacing: 0.16em;
	color: var(--wc-gold-light);
	font-weight: 600;
	text-transform: uppercase;
}

.wc-step-card-title {
	font-family: var(--wc-font-title);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 4px 0;
}

.wc-step-card-desc {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.86);
	margin: 0;
	line-height: 1.5;
}

/* ==========================================================================
   7. Bandeau réservation à l'avance
   ========================================================================== */

.wc-advance-banner {
	margin: 0 20px 40px;
	background: transparent;
	border: 2px solid var(--wc-plum);
	border-radius: 22px;
	padding: 20px 18px;
}

.wc-advance-text {
	margin-bottom: 18px;
}

.wc-advance-p {
	font-size: 13.5px;
	color: var(--wc-text-soft);
	line-height: 1.6;
	margin: 0 0 18px;
}

.wc-cta-secondary {
	text-decoration: none;
	background: linear-gradient(135deg, var(--wc-plum), var(--wc-plum-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.wc-advance-banner {
	text-align: center;
}

.wc-advance-banner .wc-h2 {
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 14px;
}

/* Plum block holding the text, fading into the square photo below it. */
.wc-advance-figure {
	max-width: 320px;
	margin: 0 auto 16px;
	background: var(--wc-plum);
	border-radius: 18px;
	overflow: hidden;
}

.wc-advance-figure .wc-advance-p {
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	padding: 16px 18px 4px;
}

/* Square crop, anchored at the bottom: the phone, its whole screen and the matcha stay visible. */
.wc-advance-photo {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.wc-advance-photo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 9%;
	background: linear-gradient(to bottom, var(--wc-plum) 0%, rgba(74, 25, 66, 0) 100%);
	pointer-events: none;
}

.wc-advance-image-small {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

/* ==========================================================================
   8. Comparatif
   ========================================================================== */

.wc-compare-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wc-compare-col {
	background: #fff;
	border: 1px solid var(--wc-border);
	border-radius: 18px;
	padding: 22px;
}

.wc-compare-col-active {
	background: linear-gradient(160deg, var(--wc-plum), var(--wc-plum-dark));
	border-radius: 18px;
	padding: 22px;
	color: #fff;
}

.wc-compare-col-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--wc-plum-dark);
	margin: 0 0 2px;
}

.wc-compare-col-title-active {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 2px;
}

.wc-compare-col-sub {
	font-size: 11.5px;
	color: var(--wc-text-softer);
}

.wc-compare-col-sub-active {
	font-size: 11.5px;
	color: var(--wc-gold-light);
}

.wc-compare-divider {
	height: 1px;
	background: rgba(74, 25, 66, 0.1);
	margin: 14px 0;
}

.wc-compare-divider-active {
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 14px 0;
}

.wc-compare-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #5A4A56;
	padding: 7px 0;
}

.wc-compare-row-active {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.92);
	padding: 7px 0;
}

/* ==========================================================================
   9. Aéroports / gares
   ========================================================================== */

.wc-airport-section {
	padding: 40px 20px;
	background: #FBF6F0;
}

.wc-airport-list {
	padding: 0;
	margin: 0 0 22px;
}

.wc-airport-li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: var(--wc-text-strong);
	padding: 8px 0;
}

.wc-cta-main {
	text-decoration: none;
	background: linear-gradient(135deg, var(--wc-plum), var(--wc-plum-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 22px;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
}

/* ==========================================================================
   10. Flotte
   ========================================================================== */

.wc-fleet-scroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 6px;
	margin-right: -20px;
}

.wc-fleet-card {
	flex: 0 0 180px;
	background: #fff;
	border: 1px solid var(--wc-border);
	border-radius: 16px;
	padding: 14px;
	scroll-snap-align: start;
	box-shadow: 0 6px 20px rgba(74, 25, 66, 0.05);
}

.wc-fleet-card-locked {
	opacity: 0.55;
}

.wc-fleet-image-wrap {
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
}

/* Two pixels wider than the card, clipped by the wrapper: hides the grey edge column of the photo. */
.wc-fleet-image {
	width: calc(100% + 4px);
	max-width: none;
	margin: 0 -2px;
	height: auto;
	display: block;
}

.wc-fleet-image-shadow {
	height: 12px;
	width: 78%;
	margin: -14px auto 0;
	background: radial-gradient(ellipse, rgba(74, 25, 66, 0.35) 0%, rgba(74, 25, 66, 0) 72%);
	border-radius: 50%;
}

.wc-fleet-placeholder {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D8C9D4;
}

.wc-coming-soon-badge {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--wc-plum);
	color: var(--wc-gold-light);
	font-size: 9px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 20px;
}

.wc-fleet-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.wc-fleet-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--wc-plum-dark);
}

.wc-fleet-capacity {
	display: flex;
	gap: 8px;
}

.wc-capacity-item {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 10.5px;
	color: var(--wc-text-softer);
}

.wc-fleet-models {
	font-size: 11px;
	color: var(--wc-text-softer);
	margin: 0;
}

/* ==========================================================================
   11. Témoignages
   ========================================================================== */

.wc-testimonial-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wc-testimonial-card {
	background: #fff;
	border: 1px solid var(--wc-border);
	border-radius: 16px;
	padding: 18px;
}

.wc-testimonial-text {
	font-size: 13.5px;
	color: var(--wc-text-strong);
	line-height: 1.55;
	margin: 10px 0;
	font-style: italic;
}

.wc-testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wc-testimonial-name {
	font-size: 12px;
	color: var(--wc-text-softer);
	font-weight: 700;
}

.wc-testimonial-type {
	font-size: 10.5px;
	color: var(--wc-plum);
	background: rgba(201, 168, 118, 0.15);
	border-radius: 20px;
	padding: 3px 10px;
	font-weight: 600;
}

/* ==========================================================================
   12. FAQ
   ========================================================================== */

.wc-faq-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wc-faq-item {
	background: #fff;
	border: 1px solid var(--wc-border);
	border-radius: 14px;
	overflow: hidden;
}

.wc-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	padding: 16px 16px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--wc-plum-dark);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
}

.wc-faq-chevron {
	transition: transform 0.2s;
	color: var(--wc-gold);
}

.wc-faq-item.is-open .wc-faq-chevron {
	transform: rotate(180deg);
}

.wc-faq-answer {
	font-size: 13px;
	color: var(--wc-text-soft);
	padding: 0 16px 16px;
	margin: 0;
	line-height: 1.55;
	display: none;
}

.wc-faq-item.is-open .wc-faq-answer {
	display: block;
}

.wc-faq-cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.wc-footer {
	padding: 26px 20px;
	border-top: 1px solid var(--wc-border);
}

.wc-footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.wc-footer-icons {
	display: flex;
	gap: 14px;
	color: var(--wc-text-softer);
}

.wc-footer-text {
	font-size: 11px;
	color: #A0909A;
	margin: 0;
}

/* ==========================================================================
   14. Desktop breakpoint
   ========================================================================== */

@media (min-width: 900px) {
	.wc-header,
	.wc-hero,
	.wc-audience-row,
	.wc-section,
	.wc-section-alt,
	.wc-airport-section,
	.wc-advance-banner,
	.wc-footer {
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}

	.wc-advance-figure {
		max-width: 340px;
	}

	.wc-advance-figure .wc-advance-p {
		font-size: 13px;
	}

	.wc-nav-desktop {
		display: flex;
	}

	.wc-menu-btn {
		display: none;
	}

	.wc-mobile-menu {
		display: none !important;
	}

	.wc-hero-media {
		height: 720px;
	}

	.wc-hero-content {
		padding-top: 116px;
		max-width: 600px;
	}

	.wc-logo-img {
		height: 24px;
	}

	.wc-h1 {
		font-size: 44px;
	}

	.wc-booking-card {
		max-width: 480px;
	}

	.wc-steps-row {
		flex-direction: row;
		align-items: stretch;
		gap: 10px;
	}

	.wc-step-arrow {
		transform: none;
	}

	.wc-step-card {
		flex: 1;
		max-width: none;
		margin: 0;
	}

	.wc-compare-grid {
		flex-direction: row;
	}

	.wc-compare-col,
	.wc-compare-col-active {
		flex: 1;
	}

	.wc-testimonial-col {
		flex-direction: row;
	}

	.wc-testimonial-card {
		flex: 1;
	}

	.wc-fleet-scroll {
		overflow-x: visible;
		flex-wrap: wrap;
		margin-right: 0;
	}

	.wc-fleet-card {
		flex: 1 1 220px;
	}
}
