/**
 * Paragon Bookings — public booking form.
 *
 * Two display modes:
 *   - Desktop (≥881px): inline form where the shortcode is embedded.
 *   - Mobile  (≤880px): slim "Book now" launcher pinned to viewport bottom;
 *                       tap it (or any #book-now anchor) → slide-up sheet
 *                       containing the full form.
 *
 * Brand tokens kept as CSS custom properties so the host theme can retint
 * them without touching this file.
 */

.paragon-booking-form-wrap {
	--pb-navy:   #1A3A5C;
	--pb-blue:   #2E75B6;
	--pb-teal:   #0E7C6E;
	--pb-light:  #D6E4F0;
	--pb-bg:     #F8F9FA;
	--pb-text:   #2C3E50;
	--pb-warn:   #C77800;
	--pb-danger: #B23A48;
	--pb-radius: 8px;
	--pb-shadow: 0 8px 28px rgba(26, 58, 92, 0.18);

	color: var(--pb-text);
	font-family: inherit;
	font-size: 16px;  /* 16px so iOS doesn't zoom on input focus */
	line-height: 1.5;
	box-sizing: border-box;
	/* Defensive horizontal padding: even if the host container is full-bleed
	   the form still has breathing room on small screens. */
	padding: 0 16px;
}

.paragon-booking-form-wrap *,
.paragon-booking-form-wrap *::before,
.paragon-booking-form-wrap *::after {
	box-sizing: border-box;
}

/* Anchor offset so #book-now lands above sticky headers on desktop. */
.paragon-anchor-target {
	display: block;
	position: relative;
	top: -80px;
	visibility: hidden;
}

/* Inline mount (desktop) -------------------------------------------- */
.paragon-booking-mount-inline {
	max-width: 720px;
	margin: 24px auto;
}

/* Loading skeleton --------------------------------------------------- */
.paragon-booking-skeleton {
	background: var(--pb-bg);
	border: 1px solid var(--pb-light);
	border-radius: var(--pb-radius);
	padding: 40px 20px;
	text-align: center;
	color: var(--pb-text);
	opacity: 0.7;
}

.paragon-booking-noscript {
	max-width: 720px;
	margin: 24px auto;
	background: var(--pb-bg);
	border: 1px solid var(--pb-light);
	border-radius: var(--pb-radius);
	padding: 20px;
}
.paragon-booking-noscript a { color: var(--pb-teal); font-weight: 600; }

/* Form container ----------------------------------------------------- */
.paragon-booking-form {
	background: #fff;
	border: 1px solid var(--pb-light);
	border-radius: var(--pb-radius);
	overflow: hidden;
}

.paragon-booking-form h1,
.paragon-booking-form h2,
.paragon-booking-form h3,
.paragon-booking-form h4 {
	color: var(--pb-navy);
	margin: 0;
	font-family: inherit;
}

/* Header ------------------------------------------------------------- */
.paragon-booking-header {
	background: var(--pb-navy);
	color: #fff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.paragon-booking-header-main {
	flex: 1 1 auto;
	min-width: 0;
}
.paragon-booking-header h2 {
	color: #fff;
	font-size: 1.15em;
	margin: 0;
}
.paragon-booking-header p {
	margin: 4px 0 0;
	font-size: 0.9em;
	opacity: 0.85;
}
/* v1.4.6: helper hint shown on transfer-mode forms — sets expectations
   that day tours will surface as add-ons once timings are entered. */
.paragon-booking-header-hint {
	margin: 6px 0 0 !important;
	font-size: 0.82em !important;
	opacity: 0.75 !important;
	font-style: italic;
}
/* v1.4.6: "Book a transfer instead" link shown on tour-page forms.
   Outlined pill, sits to the right of the header title block. */
.paragon-booking-header-switch {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font: inherit;
	font-size: 0.85em;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.paragon-booking-header-switch:hover,
.paragon-booking-header-switch:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.6);
	outline: none;
}
.paragon-booking-header-switch:active {
	transform: translateY(1px);
}
.paragon-booking-header-switch-arrow {
	font-size: 1.05em;
	line-height: 1;
}
/* Narrow viewports: drop the switch link below the title rather than
   forcing two columns at <380px. */
@media (max-width: 420px) {
	.paragon-booking-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.paragon-booking-header-switch {
		align-self: stretch;
		justify-content: center;
	}
}

/* Sections (collapsed/expanded) ------------------------------------- */
.paragon-section { border-bottom: 1px solid var(--pb-light); }
.paragon-section:last-of-type { border-bottom: none; }

.paragon-section-header {
	display: flex;
	align-items: center;
	width: 100%;
	background: transparent;
	border: none;
	padding: 16px 20px;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: var(--pb-text);
	gap: 12px;
}
.paragon-section-header:hover { background: var(--pb-bg); }
.paragon-section-header:focus-visible {
	outline: 2px solid var(--pb-blue);
	outline-offset: -2px;
}
.paragon-section[data-state="locked"] .paragon-section-header {
	cursor: not-allowed;
	opacity: 0.5;
}

.paragon-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--pb-light);
	color: var(--pb-navy);
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.85em;
	flex-shrink: 0;
}
.paragon-section[data-state="complete"] .paragon-section-number {
	background: var(--pb-teal);
	color: #fff;
}
.paragon-section[data-state="complete"] .paragon-section-number::before {
	content: "✓";
}
.paragon-section[data-state="complete"] .paragon-section-number span { display: none; }

.paragon-section-title {
	flex: 1;
	font-weight: 600;
	color: var(--pb-navy);
}
.paragon-section-summary {
	color: var(--pb-text);
	opacity: 0.7;
	font-size: 0.9em;
	margin-left: auto;
	text-align: right;
}
.paragon-section-chevron {
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--pb-text);
	border-bottom: 2px solid var(--pb-text);
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-left: 6px;
	opacity: 0.5;
}
.paragon-section[data-state="open"] .paragon-section-chevron {
	transform: rotate(225deg);
}

.paragon-section-body {
	display: none;
	/* Symmetric horizontal padding so wide inputs and labels don't overflow
	   on narrow screens, and side-by-side content (mode toggle) sits
	   visually centred. The earlier 60px left indent caused right-edge
	   overflow on mobile and pulled multi-column content off-centre. */
	padding: 0 20px 20px 20px;
}
.paragon-section[data-state="open"] .paragon-section-body { display: block; }

/* Fields ------------------------------------------------------------- */
.paragon-field { margin-bottom: 16px; }
.paragon-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--pb-navy);
	font-size: 0.95em;
}
.paragon-field-hint {
	display: block;
	font-size: 0.85em;
	opacity: 0.7;
	margin-bottom: 6px;
}

/* v1.4.13: add-on tour detail panel — shows admin's customer-facing notes
   plus tour duration and stop-off time underneath the add-on dropdown
   whenever a tour is selected. */
.paragon-addon-detail {
	margin: -4px 0 16px;
	padding: 12px 14px;
	background: rgba(46, 117, 182, 0.06);
	border-left: 3px solid var(--pb-blue);
	border-radius: 0 4px 4px 0;
}
.paragon-addon-detail-meta {
	margin: 0 0 6px;
	font-size: 0.88em;
	color: var(--pb-navy);
}
.paragon-addon-detail-meta:last-child {
	margin-bottom: 0;
}
.paragon-addon-detail-notes {
	margin: 0;
	font-size: 0.9em;
	line-height: 1.5;
	color: var(--pb-text);
}

/* v0.9.6: required / optional badges next to field labels. */
.paragon-required,
.paragon-optional {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 6px;
	vertical-align: middle;
}
.paragon-required {
	background: #FCE4E4;
	color: #B83232;
}
.paragon-optional {
	background: #EEE;
	color: #666;
}
/* v0.9.6: hint shown above Continue when contact step has missing fields. */
.paragon-required-hint {
	color: #B83232;
	font-size: 0.9em;
	margin: 8px 0 0;
	padding: 8px 12px;
	background: #FCE4E4;
	border-left: 3px solid #B83232;
	border-radius: 3px;
}
.paragon-field input[type="text"],
.paragon-field input[type="email"],
.paragon-field input[type="tel"],
.paragon-field input[type="number"],
.paragon-field input[type="date"],
.paragon-field input[type="time"],
.paragon-field input[type="datetime-local"],
.paragon-field select,
.paragon-field textarea {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #C7CED6;
	border-radius: 6px;
	background: #fff;
	color: var(--pb-text);
	font: inherit;
	font-size: 1em;
	line-height: 1.2;
}
/* iOS Safari adds intrinsic width to native date/time/datetime-local based on
   their formatted placeholder text, which can push the input wider than its
   container and overflow on narrow viewports. -webkit-appearance: none
   prevents that, and the explicit appearance keeps the field tappable.
   The min-height above ensures the input stays comfortably tappable even
   when iOS strips its native chrome. */
.paragon-field input[type="date"],
.paragon-field input[type="time"],
.paragon-field input[type="datetime-local"] {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	min-height: 44px;
}
/* The grid that holds two date/time fields side-by-side needs explicit
   min-width: 0 on its items, otherwise grid honours their intrinsic min-width
   and lets them push past the container. */
.paragon-field-row > .paragon-field { min-width: 0; }
.paragon-field input:focus,
.paragon-field select:focus,
.paragon-field textarea:focus {
	outline: none;
	border-color: var(--pb-blue);
	box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.15);
}
.paragon-field textarea { min-height: 80px; resize: vertical; }

.paragon-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 480px) {
	.paragon-field-row { grid-template-columns: 1fr; }
}

/* Mode toggle -------------------------------------------------------- */
.paragon-mode-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0 0 10px;
}
.paragon-mode-toggle button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 92px;
	padding: 16px 12px;
	border: 2px solid var(--pb-light);
	background: #fff;
	border-radius: var(--pb-radius);
	font: inherit;
	color: var(--pb-text);
	cursor: pointer;
	text-align: center;
	transition: transform 0.1s ease-out, box-shadow 0.15s, border-color 0.15s, background 0.15s;
}
.paragon-mode-toggle button:hover {
	border-color: var(--pb-blue);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(26, 58, 92, 0.08);
}
.paragon-mode-toggle button[aria-pressed="true"] {
	border-color: var(--pb-teal);
	background: var(--pb-teal);
	color: #fff;
}
.paragon-mode-toggle button[aria-pressed="true"]:hover {
	filter: brightness(0.96);
}
.paragon-mode-title {
	font-weight: 700;
	font-size: 1.2em;
	letter-spacing: 0.02em;
	line-height: 1.1;
	display: block;
}
.paragon-mode-hint {
	font-size: 0.85em;
	opacity: 0.8;
	font-weight: 400;
	line-height: 1.2;
	display: block;
}
.paragon-mode-toggle button[aria-pressed="true"] .paragon-mode-hint {
	opacity: 0.92;
}

/* Tour return estimate ---------------------------------------------- */
.paragon-tour-return-estimate {
	background: rgba(14, 124, 110, 0.06);
	border-left: 3px solid var(--pb-teal);
	padding: 10px 12px;
	margin: 0 0 16px;
	font-size: 0.95em;
	border-radius: 4px;
}

/* Inferred pickup/dropoff time helper (transfer mode, v0.7.4) ------- */
.paragon-inferred-time {
	background: rgba(46, 117, 182, 0.05);
	border-left: 3px solid var(--pb-blue);
	padding: 10px 12px;
	margin: 0 0 16px;
	font-size: 0.95em;
	border-radius: 4px;
}
.paragon-inferred-time-hint {
	opacity: 0.75;
	font-size: 0.9em;
}

/* Vehicle picker ----------------------------------------------------- */
.paragon-vehicles { display: grid; gap: 10px; }
.paragon-vehicle {
	display: flex;
	gap: 14px;
	align-items: center;
	border: 2px solid var(--pb-light);
	border-radius: var(--pb-radius);
	padding: 14px;
	cursor: pointer;
	background: #fff;
	transition: border-color 0.15s;
	width: 100%;
	font: inherit;
	color: inherit;
	text-align: left;
}
.paragon-vehicle:hover { border-color: var(--pb-blue); }
.paragon-vehicle[aria-pressed="true"] {
	border-color: var(--pb-teal);
	background: rgba(14, 124, 110, 0.04);
}
.paragon-vehicle-name { font-weight: 700; color: var(--pb-navy); }
.paragon-vehicle-meta { font-size: 0.85em; opacity: 0.75; }
.paragon-vehicle-price {
	margin-left: auto;
	font-weight: 700;
	color: var(--pb-teal);
	font-size: 1.15em;
	white-space: nowrap;
}
.paragon-vehicle-price small { font-size: 0.8em; opacity: 0.7; font-weight: 500; }
.paragon-vehicle[data-warning="true"] .paragon-vehicle-meta { color: var(--pb-warn); }
.paragon-vehicle[data-warning="true"] { border-color: var(--pb-warn); }

/* v0.8.3: callout shown above the vehicle picker when the customer's
   passenger + suitcase count exceeds every vehicle's capacity. */
.paragon-vehicle-hint {
	background: var(--pb-warn-bg, #FFF3E0);
	color: var(--pb-warn, #C97B22);
	border-left: 3px solid var(--pb-warn, #C97B22);
	padding: 10px 14px;
	border-radius: var(--pb-radius);
	margin-bottom: 12px;
	font-size: 0.95em;
	line-height: 1.5;
}
.paragon-vehicle-hint a { color: inherit; text-decoration: underline; font-weight: 700; }

/* Tour add-ons ------------------------------------------------------- */
.paragon-tour-addons { display: grid; gap: 8px; }
.paragon-tour-addon {
	display: flex;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--pb-light);
	border-radius: 6px;
	padding: 10px 14px;
	cursor: pointer;
	background: #fff;
}
.paragon-tour-addon input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; }
.paragon-tour-addon-name { flex: 1; font-weight: 600; color: var(--pb-navy); }
.paragon-tour-addon-price { color: var(--pb-teal); font-weight: 700; }
.paragon-tour-addon:has(input:checked) {
	border-color: var(--pb-teal);
	background: rgba(14, 124, 110, 0.04);
}

/* Review ------------------------------------------------------------- */
.paragon-review-summary {
	background: var(--pb-bg);
	border-radius: var(--pb-radius);
	padding: 14px 16px;
	margin-bottom: 12px;
}
.paragon-review-summary dl {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4px 12px;
	margin: 0;
}
.paragon-review-summary dt { font-weight: 600; color: var(--pb-navy); }
.paragon-review-summary dd { margin: 0; }

/* Step controls ------------------------------------------------------ */
.paragon-step-actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	flex-wrap: wrap;
}
.paragon-btn {
	padding: 12px 22px;
	border: none;
	border-radius: 6px;
	font: inherit;
	font-weight: 600;
	font-size: 1em;
	cursor: pointer;
	min-height: 48px;
	background: var(--pb-light);
	color: var(--pb-navy);
}
.paragon-btn:hover { filter: brightness(0.95); }
.paragon-btn-primary {
	background: var(--pb-teal);
	color: #fff;
}
.paragon-btn-back {
	background: transparent;
	color: var(--pb-text);
	text-decoration: underline;
}
.paragon-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Errors / warnings -------------------------------------------------- */
.paragon-error,
.paragon-warning {
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 12px;
	font-size: 0.9em;
}
.paragon-error {
	background: rgba(178, 58, 72, 0.08);
	border: 1px solid rgba(178, 58, 72, 0.3);
	color: var(--pb-danger);
}
.paragon-warning {
	background: rgba(199, 120, 0, 0.08);
	border: 1px solid rgba(199, 120, 0, 0.3);
	color: var(--pb-warn);
}
.paragon-error ul,
.paragon-warning ul { margin: 4px 0 0 18px; padding: 0; }

/* Inline price card (desktop, beneath the form) --------------------- */
.paragon-price-card {
	background: #fff;
	border: 1px solid var(--pb-light);
	border-top: 4px solid var(--pb-teal);
	border-radius: var(--pb-radius);
	padding: 16px 20px;
	margin-top: 18px;
}
.paragon-price-card-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}
.paragon-price-card-total-label {
	font-size: 0.95em;
	color: var(--pb-text);
	opacity: 0.7;
}
.paragon-price-card-total-value {
	font-size: 1.6em;
	font-weight: 700;
	color: var(--pb-teal);
}
.paragon-price-card-total-value.is-quote {
	font-size: 1em;
	color: var(--pb-warn);
}
.paragon-price-card-status {
	font-size: 0.85em;
	margin-top: 4px;
	color: var(--pb-warn);
}
.paragon-price-card-status.is-priced { color: var(--pb-teal); }
.paragon-price-card-breakdown {
	margin-top: 12px;
	border-top: 1px dashed var(--pb-light);
	padding-top: 10px;
}
.paragon-price-line {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 3px 0;
	font-size: 0.9em;
}
.paragon-price-line-label { color: var(--pb-text); }
.paragon-price-line-value { color: var(--pb-navy); font-weight: 600; }

/* Confirmation screen ------------------------------------------------ */
.paragon-confirmation {
	text-align: center;
	padding: 30px 20px;
}
.paragon-confirmation-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--pb-teal);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 18px;
}
.paragon-confirmation-icon.is-warn { background: var(--pb-warn); }
.paragon-confirmation h3 { font-size: 1.4em; margin-bottom: 8px; }
.paragon-confirmation-ref {
	display: inline-block;
	background: var(--pb-bg);
	padding: 6px 14px;
	border-radius: 4px;
	font-family: Menlo, Consolas, monospace;
	margin: 8px 0 18px;
	font-size: 1.05em;
	color: var(--pb-navy);
}

/* Launcher bar (mobile only) ---------------------------------------- */
.paragon-launcher {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid var(--pb-light);
	box-shadow: 0 -4px 18px rgba(26, 58, 92, 0.12);
	/* iOS safe-area: don't sit under the home indicator. */
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
}
.paragon-launcher-btn {
	display: block;
	width: 100%;
	padding: 14px 18px;
	background: var(--pb-teal);
	color: #fff;
	border: none;
	border-radius: var(--pb-radius);
	font: inherit;
	font-weight: 700;
	font-size: 1.05em;
	cursor: pointer;
	min-height: 52px;
}
.paragon-launcher-btn:hover { filter: brightness(0.95); }

/* Sheet (mobile only) ----------------------------------------------- */
.paragon-sheet {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	pointer-events: none;
}
/* Only intercept clicks when actively open. The `hidden` attribute handles
   the closed state too, but this is belt-and-braces in case `hidden` is
   stripped by another script. */
.paragon-sheet[data-state="open"] { pointer-events: auto; }

.paragon-sheet-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 58, 92, 0.45);
	opacity: 0;
	transition: opacity 0.25s;
}
.paragon-sheet[data-state="open"] .paragon-sheet-backdrop { opacity: 1; }

.paragon-sheet-panel {
	position: relative;
	background: #fff;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	max-height: 92vh;
	display: flex;
	flex-direction: column;
	transform: translateY(100%);
	transition: transform 0.28s ease-out;
	box-shadow: var(--pb-shadow);
}
.paragon-sheet[data-state="open"] .paragon-sheet-panel { transform: translateY(0); }
/* iOS native date/time pickers can't scroll-into-view through a transformed
   ancestor, which causes them to dismiss immediately on tap. Once the open
   animation has finished, remove the transform so the panel is a plain
   positioned block. The `data-anim-settled` flag is set by JS 300ms after
   open (matches the 280ms CSS transition + a small safety margin). */
.paragon-sheet[data-state="open"][data-anim-settled] .paragon-sheet-panel {
	transform: none;
}

.paragon-sheet-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-bottom: 1px solid var(--pb-light);
	flex-shrink: 0;
}
.paragon-sheet-title {
	font-weight: 700;
	color: var(--pb-navy);
	font-size: 1.05em;
}
.paragon-sheet-close {
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: var(--pb-text);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.paragon-sheet-close:hover { background: var(--pb-bg); }

.paragon-booking-mount-sheet {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0;
	/* iOS safe-area inside the scroller. */
	padding-bottom: calc(0px + env(safe-area-inset-bottom, 0));
}
.paragon-booking-mount-sheet .paragon-booking-form {
	border: none;
	border-radius: 0;
}
.paragon-booking-mount-sheet .paragon-price-card {
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-bottom: none;
	margin-top: 0;
}

/* lock body scroll when sheet open */
body.paragon-sheet-open { overflow: hidden; }

/* Responsive switches ----------------------------------------------- */
@media (min-width: 881px) {
	/* Desktop: hide launcher + sheet, use inline mount. */
	.paragon-launcher,
	.paragon-sheet { display: none !important; }
}

@media (max-width: 880px) {
	/* Mobile: hide inline mount entirely, form lives inside the sheet. */
	.paragon-booking-mount-inline { display: none; }

	/* Don't let the launcher cover content at the bottom of the page. */
	body.paragon-has-launcher { padding-bottom: 80px; }

	/* Inside the sheet, sections breathe a bit less. */
	.paragon-sheet .paragon-section-body { padding: 0 16px 18px 16px; }
	.paragon-sheet .paragon-section-header { padding: 14px 16px; }
}

/* Visually hidden but available to assistive tech */
.paragon-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* v1.4.0 — availability error displayed inline next to the date input when
   the selected pickup date is fully booked for the chosen vehicle. */
.paragon-field input[aria-invalid="true"] {
	border-color: #B32D2E;
	box-shadow: 0 0 0 1px rgba(179,45,46,0.18);
}
.paragon-field-error {
	margin: 6px 0 0;
	padding: 8px 12px;
	background: #fcebec;
	border-left: 3px solid #B32D2E;
	color: #B32D2E;
	font-size: 13px;
	line-height: 1.4;
}
