/* Loc Boat Azur — réservation & flotte */
:root {
	--lba-navy: #0b2b4a;
	--lba-blue: #1173b8;
	--lba-azur: #2ea3e0;
	--lba-sand: #f5f8fb;
	--lba-ink: #17252f;
	--lba-line: #dfe8f0;
	--lba-ok: #1a7f37;
	--lba-ko: #cf222e;
}

/* ---------- Widget de réservation ---------- */
.lba-booking {
	background: #fff;
	border: 1px solid var(--lba-line);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(11, 43, 74, .08);
	max-width: 520px;
}
.lba-booking__title {
	margin: 0 0 16px;
	color: var(--lba-navy);
	font-size: 1.3rem;
}
.lba-booking__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 12px;
}
.lba-field { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; color: var(--lba-ink); }
.lba-field span { font-weight: 600; }
.lba-field input,
.lba-field select,
.lba-field textarea {
	padding: 10px 12px;
	border: 1px solid var(--lba-line);
	border-radius: 10px;
	font-size: 1rem;
	background: var(--lba-sand);
}
.lba-field input:focus,
.lba-field select:focus,
.lba-field textarea:focus { outline: 2px solid var(--lba-azur); background: #fff; }

.lba-dispo { margin: 14px 0; font-weight: 600; min-height: 1.2em; }
.lba-dispo--ok { color: var(--lba-ok); }
.lba-dispo--ko { color: var(--lba-ko); }

.lba-check, .lba-radio { display: flex; align-items: center; gap: 8px; margin: 10px 0; cursor: pointer; }
.lba-check small { color: var(--lba-blue); }
.lba-options { border: 1px solid var(--lba-line); border-radius: 12px; padding: 12px 16px; margin: 14px 0; }
.lba-options legend { font-weight: 700; color: var(--lba-navy); padding: 0 6px; }

.lba-quote { margin: 16px 0; }
.lba-quote__lines { list-style: none; margin: 0 0 10px; padding: 0; }
.lba-quote__lines li { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--lba-line); font-size: .95rem; }
.lba-quote__total, .lba-quote__acompte, .lba-quote__solde, .lba-quote__caution {
	display: flex; justify-content: space-between; padding: 4px 0;
}
.lba-quote__total { font-weight: 800; color: var(--lba-navy); font-size: 1.1rem; border-top: 2px solid var(--lba-navy); margin-top: 6px; padding-top: 8px; }
.lba-quote__acompte { color: var(--lba-blue); font-weight: 700; }
.lba-quote__solde, .lba-quote__caution { color: #556; font-size: .9rem; }

.lba-pay { display: flex; align-items: center; gap: 16px; margin: 12px 0; flex-wrap: wrap; }
.lba-pay__label { font-weight: 600; }

.lba-btn {
	display: inline-block;
	background: var(--lba-blue);
	color: #fff !important;
	border: 0;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s, transform .1s;
}
.lba-btn:hover { background: var(--lba-navy); transform: translateY(-1px); }
.lba-submit { width: 100%; margin-top: 8px; }
.lba-secure { text-align: center; color: #667; font-size: .85rem; margin: 10px 0 0; }
.lba-error { color: var(--lba-ko); font-weight: 600; margin-top: 10px; min-height: 1em; }

/* ---------- Grille flotte ---------- */
.lba-fleet { display: grid; gap: 28px; }
.lba-cols-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.lba-cols-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.lba-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--lba-line);
	box-shadow: 0 8px 24px rgba(11, 43, 74, .07);
	display: flex; flex-direction: column;
	transition: transform .2s, box-shadow .2s;
}
.lba-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(11, 43, 74, .14); }
.lba-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--lba-sand); }
.lba-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lba-noimg { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; }
.lba-card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lba-card__title { margin: 0; font-size: 1.25rem; color: var(--lba-navy); }
.lba-card__title a { color: inherit; text-decoration: none; }
.lba-card__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; color: #556; font-size: .9rem; }
.lba-card__price { margin: 0; color: var(--lba-ink); }
.lba-card__price strong { color: var(--lba-blue); font-size: 1.2rem; }
.lba-card .lba-btn { margin-top: auto; text-align: center; }

/* ---------- Confirmation ---------- */
.lba-confirm { max-width: 620px; margin: 40px auto; background: #fff; border: 1px solid var(--lba-line); border-radius: 16px; padding: 40px; text-align: center; }
.lba-confirm__check { width: 64px; height: 64px; border-radius: 50%; background: var(--lba-ok); color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lba-confirm--cancel .lba-confirm__check { background: var(--lba-ko); }
.lba-confirm__table { width: 100%; margin: 20px 0; border-collapse: collapse; text-align: left; }
.lba-confirm__table th, .lba-confirm__table td { padding: 10px 8px; border-bottom: 1px solid var(--lba-line); }
.lba-confirm__table th { color: var(--lba-navy); width: 40%; }

@media (max-width: 600px) {
	.lba-booking { padding: 18px; }
}
