/* OW Agenda — widget de réservation (mobile-first, palette du site). */
.owag-booking { max-width: 640px; margin: 0 auto; font-size: 16px; color: #1a1a1a; min-height: max(320px, 45vh); }
.owag-booking * { box-sizing: border-box; }
.owag-loading, .owag-note { color: #5a6b76; font-size: 15px; }
.owag-title { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.owag-sub { color: #5a6b76; margin: 0 0 18px; font-size: 15px; }
.owag-step { font-size: 15px; font-weight: 600; margin: 22px 0 10px; }

.owag-days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: thin; }
.owag-day {
	flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
	min-width: 62px; padding: 10px 8px; border-radius: 14px; border: 2px solid #dbe7ee;
	background: #fff; cursor: pointer; font: inherit; transition: border-color .15s, background .15s;
}
.owag-day__dow { font-size: 12px; color: #5a6b76; text-transform: lowercase; }
.owag-day__num { font-size: 20px; font-weight: 700; line-height: 1.2; }
.owag-day__mon { font-size: 12px; color: #5a6b76; }
.owag-day.is-active { border-color: #2BBBDF; background: #e8f8fd; }
.owag-day.is-off { opacity: .35; cursor: default; }
.owag-more { background: none; border: none; color: #0a5068; font-size: 14px; cursor: pointer; padding: 4px 0; text-decoration: underline; }

.owag-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.owag-slot {
	padding: 10px 16px; border-radius: 30px; border: 2px solid #dbe7ee; background: #fff;
	font: inherit; font-weight: 600; cursor: pointer; transition: border-color .15s, background .15s;
}
.owag-slot.is-active { border-color: #2BBBDF; background: #2BBBDF; color: #0a0a0a; }

.owag-form { margin-top: 8px; }
.owag-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .owag-grid { grid-template-columns: 1fr 1fr; } .owag-grid label:nth-child(4) { grid-column: 1 / -1; } }
.owag-form label { display: block; font-size: 14px; font-weight: 600; color: #33454f; }
.owag-form input[type="text"], .owag-form input[type="tel"], .owag-form input[type="email"], .owag-form textarea {
	width: 100%; margin-top: 4px; padding: 12px 14px; border: 2px solid #dbe7ee; border-radius: 12px;
	font: inherit; background: #fff;
}
.owag-form input:focus, .owag-form textarea:focus { outline: none; border-color: #2BBBDF; }
.owag-consent { margin: 14px 0; font-size: 13px !important; font-weight: 400 !important; color: #5a6b76 !important; display: flex !important; gap: 8px; align-items: flex-start; }
.owag-consent input { margin-top: 3px; }
.owag-error { color: #b42318; background: #fef1f0; border-radius: 10px; padding: 10px 14px; font-size: 14px; }
.owag-submit {
	display: inline-block; width: 100%; padding: 16px 24px; border: none; border-radius: 30px;
	background: #2BBBDF; color: #0a0a0a; font: inherit; font-size: 16px; font-weight: 700; cursor: pointer;
}
.owag-submit:disabled { opacity: .6; }
.owag-success { text-align: center; background: #eefaf3; border-radius: 16px; padding: 28px 20px; }
