/* ACRUN Transport */
:root {
	--acrun-green: #0b3d2e;
	--acrun-green-light: #14624a;
	--acrun-sand: #f4f1ea;
	--acrun-border: #e2ded4;
	--acrun-text: #1c1c1c;
	--acrun-radius: 12px;
}

/* --- Bloc transfert aéroport --- */
.acrun-airport {
	max-width: 760px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--acrun-text);
}
.acrun-airport__photo img,
.acrun-airport__photo {
	width: 100%;
	border-radius: var(--acrun-radius);
	overflow: hidden;
	display: block;
}
.acrun-airport__photo--placeholder {
	background: var(--acrun-sand);
	border: 1px dashed var(--acrun-border);
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	text-align: center;
	padding: 20px;
}
.acrun-airport__title {
	margin: 22px 0 12px;
	font-size: 1.6rem;
}
.acrun-airport__prices {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--acrun-border);
	border-radius: var(--acrun-radius);
	overflow: hidden;
}
.acrun-airport__prices li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--acrun-border);
}
.acrun-airport__prices li:last-child { border-bottom: none; }
.acrun-airport__price strong { color: var(--acrun-green); font-size: 1.15rem; }
.acrun-airport__note {
	margin-top: 12px;
	font-size: .9rem;
	color: #555;
}

/* --- Formulaire --- */
.acrun-form {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--acrun-border);
	border-radius: var(--acrun-radius);
	padding: 18px 20px;
}
.acrun-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.acrun-form__row--full { grid-column: 1 / -1; }
.acrun-form__row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: .92rem;
}
.acrun-field {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--acrun-border);
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box;
}
.acrun-field:focus {
	outline: none;
	border-color: var(--acrun-green-light);
	box-shadow: 0 0 0 3px rgba(20, 98, 74, .12);
}
.acrun-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}
.acrun-checkbox input { width: auto; }

/* Onglets (2 choix) */
.acrun-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 14px;
}
.acrun-tab { cursor: pointer; }
.acrun-tab input { position: absolute; opacity: 0; }
.acrun-tab__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 12px;
	border: 2px solid var(--acrun-border);
	border-radius: 10px;
	font-weight: 700;
	font-size: .92rem;
	transition: border-color .15s, background .15s, color .15s;
}
.acrun-tab__icon { font-size: 1.1rem; }
.acrun-tab input:checked + .acrun-tab__inner {
	border-color: var(--acrun-green);
	background: var(--acrun-green);
	color: #fff;
}
.acrun-tab input:focus-visible + .acrun-tab__inner {
	box-shadow: 0 0 0 3px rgba(20, 98, 74, .18);
}

/* Section trajet au km : champs empilés */
.acrun-section--km { display: block; }

/* Prix mis en avant */
.acrun-price {
	margin: 18px 0;
	padding: 18px 20px;
	background: var(--acrun-sand);
	border-radius: var(--acrun-radius);
	text-align: center;
}
.acrun-price__main {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.acrun-price__label { font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: #666; }
.acrun-price__value { font-size: 2rem; font-weight: 800; color: var(--acrun-green); line-height: 1.1; }
.acrun-price__deposit { margin-top: 8px; font-size: .9rem; color: #555; }
.acrun-price__night {
	display: inline-block;
	font-size: .78rem;
	font-weight: 600;
	color: #6a4a00;
	background: #fff4d6;
	padding: 2px 9px;
	border-radius: 999px;
	margin: 4px 0;
}
.acrun-price__roundtrip {
	display: inline-block;
	font-size: .78rem;
	font-weight: 600;
	color: #0b3d2e;
	background: #e2f0e9;
	padding: 2px 9px;
	border-radius: 999px;
	margin: 4px 0 4px 4px;
}

/* ---------- Layout horizontal ---------- */
.acrun-form--horizontal .acrun-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	align-items: flex-end;
}
.acrun-group {
	flex: 1 1 180px;
	min-width: 150px;
	display: flex;
	flex-direction: column;
}
.acrun-group--wide { flex: 2 1 240px; }
.acrun-group--sm { flex: 0 1 110px; min-width: 90px; }
.acrun-group--full { flex: 1 1 100%; }
.acrun-group label {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: .8rem;
}
.acrun-form--horizontal .acrun-field {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--acrun-border);
	border-radius: 8px;
	font-size: .94rem;
	box-sizing: border-box;
	background: #fff;
}
.acrun-form--horizontal .acrun-field:focus {
	outline: none;
	border-color: var(--acrun-green-light);
	box-shadow: 0 0 0 3px rgba(20, 98, 74, .12);
}
.acrun-manual-distance { margin-bottom: 10px; }

/* ---------- Barre du bas : prix + bouton ---------- */
.acrun-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	padding: 12px 16px;
	background: var(--acrun-sand);
	border-radius: 10px;
	border: 1px solid var(--acrun-border);
}
.acrun-bottom__price { display: flex; flex-direction: column; gap: 2px; }
.acrun-bottom .acrun-price__label {
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #666;
}
.acrun-bottom .acrun-price__value {
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--acrun-green);
	line-height: 1.05;
}
.acrun-bottom .acrun-price__deposit { font-size: .9rem; color: #555; }
.acrun-bottom .acrun-submit {
	width: auto;
	flex: 0 0 auto;
	padding: 11px 20px;
	font-size: .95rem;
	margin: 0;
}

/* ---------- Étapes ---------- */
.acrun-steps-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.acrun-step-dot {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .82rem;
	font-weight: 600;
	color: #999;
}
.acrun-step-dot span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e6e2d8;
	color: #888;
	font-size: .75rem;
}
.acrun-step-dot.is-active { color: var(--acrun-green); }
.acrun-step-dot.is-active span { background: var(--acrun-green); color: #fff; }
.acrun-step-sep { flex: 1; height: 2px; background: var(--acrun-border); border-radius: 2px; max-width: 60px; }

/* Boutons de la barre du bas */
.acrun-bottom__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.acrun-next {
	background: var(--acrun-green);
	color: #fff;
	border: none;
	padding: 11px 20px;
	font-size: .95rem;
	font-weight: 600;
	border-radius: 9px;
	cursor: pointer;
	transition: background .2s;
}
.acrun-next:hover { background: var(--acrun-green-light); }
.acrun-back {
	background: transparent;
	border: 1px solid var(--acrun-border);
	color: #555;
	padding: 10px 14px;
	font-size: .88rem;
	border-radius: 9px;
	cursor: pointer;
}
.acrun-back:hover { background: #f4f1ea; }

/* Récap en étape 2 */
.acrun-recap {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	background: #eef4f1;
	border: 1px solid #cfe0d8;
	border-radius: 9px;
	margin-bottom: 10px;
	font-size: .85rem;
}
.acrun-recap__icon { font-style: normal; }
.acrun-recap__text { font-weight: 600; color: var(--acrun-green); }

/* Phrase d'aide sous la liste des destinations */
.acrun-hint {
	margin: 6px 0 0;
	font-size: .8rem;
	color: #777;
	line-height: 1.4;
}
.acrun-link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	font-weight: 600;
	color: var(--acrun-green);
	text-decoration: underline;
	cursor: pointer;
}
.acrun-link:hover { color: #14624a; }

/* Aller / retour */
.acrun-roundtrip { margin: 0 0 10px; }
.acrun-roundtrip__label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid var(--acrun-border);
	border-radius: 10px;
	background: #fcfbf8;
	cursor: pointer;
	transition: border-color .15s, background .15s;
}
.acrun-roundtrip__label:hover { border-color: var(--acrun-green); }
.acrun-roundtrip input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--acrun-green);
	flex: 0 0 auto;
	cursor: pointer;
}
.acrun-roundtrip__text { display: flex; flex-direction: column; gap: 2px; }
.acrun-roundtrip__text strong { font-size: .92rem; color: #1c1c1c; }
.acrun-roundtrip__text small { font-size: .78rem; color: #777; }
.acrun-roundtrip__promo { font-size: .78rem; color: #0b3d2e !important; font-weight: 600; }

/* Suggestions d'adresse (menu déroulant) */
.acrun-address-wrap { position: relative; }
.acrun-suggestions {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 40;
	background: #fff;
	border: 1px solid var(--acrun-border);
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0,0,0,.1);
	max-height: 220px;
	overflow-y: auto;
}
.acrun-suggestion {
	padding: 8px 12px;
	font-size: .88rem;
	cursor: pointer;
	border-bottom: 1px solid #f1efe8;
}
.acrun-suggestion:last-child { border-bottom: none; }
.acrun-suggestion:hover { background: #f4f1ea; }

/* Distance calculée automatiquement */
.acrun-auto-distance__box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	background: #eef4f1;
	border: 1px solid #cfe0d8;
	border-radius: 9px;
	font-size: .88rem;
}
.acrun-auto-distance__label { font-weight: 600; }
.acrun-auto-distance__value { color: var(--acrun-green); font-weight: 700; }
.acrun-auto-distance__zone {
	margin-left: auto;
	font-size: .85rem;
	padding: 3px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--acrun-border);
}
.acrun-auto-distance__zone.is-fixed { color: #14624a; border-color: #b6d9c9; }
.acrun-auto-distance__zone.is-km { color: #8a5300; border-color: #f0d9a8; }

/* Estimation */
.acrun-estimate {
	margin: 20px 0;
	padding: 16px 18px;
	background: var(--acrun-sand);
	border-radius: var(--acrun-radius);
}
.acrun-estimate__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1.1rem;
}
.acrun-estimate__row--sub { font-size: .95rem; color: #555; margin-top: 4px; }
.acrun-estimate__total { color: var(--acrun-green); font-size: 1.4rem; }
.acrun-estimate__hint { margin: 8px 0 0; font-size: .82rem; color: #777; }

/* Bouton */
.acrun-submit {
	background: var(--acrun-green);
	color: #fff;
	border: none;
	padding: 14px 22px;
	font-size: 1.05rem;
	border-radius: 10px;
	cursor: pointer;
	width: 100%;
	transition: background .2s;
}
.acrun-submit:hover { background: var(--acrun-green-light); }
.acrun-submit.is-loading { opacity: .7; cursor: wait; }

.acrun-form__legal {
	margin-top: 8px;
	font-size: .72rem;
	color: #888;
	text-align: center;
	line-height: 1.4;
}

/* Notices */
.acrun-notice {
	padding: 9px 12px;
	border-radius: 8px;
	margin: 6px 0;
	font-size: .88rem;
}
.acrun-notice--info    { background: #eef4ff; color: #24406b; }
.acrun-notice--warning { background: #fff4e0; color: #8a5300; }
.acrun-notice--error   { background: #fdeaea; color: #9b1c1c; }
.acrun-notice--success { background: #e8f6ee; color: #14624a; }
.acrun-wa {
	display: inline-block;
	margin-top: 6px;
	background: #25d366;
	color: #fff !important;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
}

@media (max-width: 600px) {
	.acrun-form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.acrun-tabs { grid-template-columns: 1fr; }
	.acrun-group, .acrun-group--wide, .acrun-group--sm { flex: 1 1 100%; }
	.acrun-bottom { flex-direction: column; align-items: stretch; text-align: center; }
	.acrun-bottom .acrun-submit { width: 100%; }
	.acrun-form { padding: 14px 16px; }
}
