.drh-wizard {
	max-width: 1200px;
	margin: 0 auto 48px;
	padding: 0 16px;
}

.drh-wizard__topbar {
	margin: 0 0 24px;
	padding: 12px 0;
	background: #fff;
	border-bottom: 1px solid #ececec;
}

.drh-wizard__steps {
	margin: 0;
	padding: 0;
}

.drh-wizard__steps-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.drh-wizard-step {
	display: flex;
	margin: 0;
	padding: 0;
}

.drh-wizard-step__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	background: #f4f4f4;
	color: #555;
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	cursor: not-allowed;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.drh-wizard-step__btn:disabled {
	pointer-events: none;
}

.drh-wizard-step.is-active .drh-wizard-step__btn {
	background: #f2d71a;
	color: #111;
}

.drh-wizard-step.is-done .drh-wizard-step__btn {
	background: #111;
	color: #f2d71a;
}

.drh-wizard-step.is-clickable .drh-wizard-step__btn {
	cursor: pointer;
}

.drh-wizard-step.is-clickable .drh-wizard-step__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.drh-wizard-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	font-size: 11px;
	font-weight: 800;
}

.drh-wizard-step.is-done .drh-wizard-step__num,
.drh-wizard-step.is-active .drh-wizard-step__num {
	background: rgba(0, 0, 0, 0.12);
}

.drh-wizard__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
}

.drh-wizard__main {
	min-width: 0;
}

.drh-wizard__panels {
	min-height: 200px;
}

.drh-wizard__loading {
	color: #666;
	font-size: 15px;
}

.drh-wizard__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin: 10px 0 0;
	padding: 0;
}

.drh-wizard__nav .drh-wizard__btn {
	min-width: 150px;
	padding: 10px 18px;
	font-size: 13.5px;
}

.drh-wizard__nav-back-slot {
	min-width: 150px;
}

.drh-wizard__nav-total {
	display: none;
}

.drh-wizard__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 8px;
	border: 1.5px solid #111;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.drh-wizard__btn--primary {
	background: #111;
	color: #f2d71a;
}

.drh-wizard__btn--primary:hover:not(:disabled) {
	background: #f2d71a;
	color: #111;
}

.drh-wizard__btn--ghost {
	background: #fff;
	color: #111;
}

.drh-wizard__btn--ghost:hover {
	background: #f4f4f4;
}

.drh-wizard__btn--select {
	width: 100%;
	margin-top: 12px;
	background: #fff;
	color: #111;
}

.drh-wizard-card--insurance:not(.drh-wizard-card--base):not(.is-selected) .drh-wizard__btn--select {
	background: #111;
	color: #f2d71a;
	border-color: #111;
	font-size: 15px;
	letter-spacing: 0.04em;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.drh-wizard-card--insurance:not(.drh-wizard-card--base):not(.is-selected) .drh-wizard__btn--select:hover {
	background: #f2d71a;
	color: #111;
}

.drh-wizard-card.is-selected .drh-wizard__btn--select {
	background: #f2d71a;
	color: #111;
	border-color: #111;
	font-weight: 800;
}

.drh-wizard__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.drh-wizard__summary {
	position: sticky;
	top: 100px;
	padding: 20px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fafafa;
}

.drh-wizard-summary__title {
	margin: 0 0 14px;
	font-size: 18px;
}

.drh-wizard-summary__vehicle {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 14px;
}

.drh-wizard-summary__vehicle img {
	width: 72px;
	height: 54px;
	object-fit: cover;
	border-radius: 6px;
}

.drh-wizard-summary__trip {
	margin: 0 0 12px;
	font-size: 13px;
}

.drh-wizard-summary__trip dt {
	font-weight: 700;
	margin-top: 8px;
}

.drh-wizard-summary__trip dd {
	margin: 2px 0 0;
	color: #444;
}

.drh-wizard-summary__edit-search,
.drh-wizard-panel__edit-search {
	margin: 0 0 14px;
}

.drh-wizard-summary__edit-link,
.drh-wizard-panel__edit-link {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.drh-wizard-summary__edit-link:hover,
.drh-wizard-panel__edit-link:hover,
.drh-wizard-summary__edit-link:focus-visible,
.drh-wizard-panel__edit-link:focus-visible {
	color: #000;
}

.drh-wizard-summary__days {
	font-size: 12px;
	color: #666;
	margin: 0 0 10px;
}

.drh-wizard-summary__lines {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.drh-wizard-summary__lines li {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 4px 0;
}

.drh-wizard-summary__lines .is-discount {
	color: #c52121;
}

.drh-wizard-coupon-row {
	display: flex;
	gap: 6px;
	margin-top: 6px;
}

.drh-wizard-coupon-row input {
	flex: 1;
	min-width: 0;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 13px;
}

.drh-wizard-summary__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 14px 0 0;
	padding-top: 12px;
	border-top: 2px solid #111;
	font-size: 15px;
}

.drh-wizard-summary__total strong {
	font-size: 22px;
}

.drh-wizard-summary__actions {
	margin-top: 16px;
}

.drh-wizard-summary__pay {
	width: 100%;
	justify-content: center;
	padding: 14px 18px;
	font-size: 15px;
}

.drh-wizard-vehicle {
	display: grid;
	grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
	gap: 24px;
}

.drh-wizard-vehicle__media img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.drh-wizard-vehicle__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0;
	padding: 0;
	list-style: none;
}

.drh-wizard-vehicle__specs li {
	padding: 4px 10px;
	background: #f2d71a;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
}

.drh-wizard-franchises ul,
.drh-wizard-franchise-list {
	margin: 8px 0 0;
	padding-left: 18px;
	font-size: 13px;
}

.drh-wizard-panel__header {
	margin-bottom: 18px;
}

.drh-wizard-panel__header h2 {
	margin: 0 0 6px;
	font-size: 22px;
}

.drh-wizard-panel__header p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}

.drh-wizard-coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	margin-bottom: 12px;
	align-items: stretch;
}

.drh-wizard-card {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
	padding: 18px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
}

.drh-wizard-coverage-grid .drh-wizard-card {
	margin-bottom: 0;
	height: 100%;
}

.drh-wizard-coverage-grid .drh-wizard-card__price {
	margin-top: auto;
}

.drh-wizard-card.is-selected {
	border-color: #111;
	box-shadow: 0 0 0 2px #f2d71a;
}

.drh-wizard-card--base {
	background: #fafafa;
}

.drh-wizard-card--mandatory {
	background: #f5f5f5;
	border-style: dashed;
}

.drh-wizard-card__head h3 {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 800;
}

.drh-wizard-card__head p {
	margin: 0 0 12px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

.drh-wizard-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.drh-wizard-card__price {
	margin: 14px 0 0;
	padding: 12px;
	background: #e8f5e8;
	border-radius: 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.drh-wizard-card__price strong {
	font-size: 20px;
	font-weight: 800;
	color: #1a7a1a;
}

.drh-wizard-card__price small {
	font-size: 12px;
	color: #555;
}

.drh-wizard-card__price .drh-price-free {
	color: #1a7a1a;
}

.drh-wizard-card--insurance:not(.drh-wizard-card--base) .drh-wizard-card__price {
	background: #f2d71a;
}

.drh-wizard-card--insurance:not(.drh-wizard-card--base) .drh-wizard-card__price strong {
	color: #111;
}

.drh-wizard-franchise-list {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.drh-wizard-franchise-list li {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
}

.drh-wizard-franchise-list li:last-child {
	border-bottom: 0;
}

.drh-wizard-franchise-list strong {
	font-weight: 700;
}

.drh-franchise-zero {
	color: #1a7a1a;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.drh-wizard-benefits {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.drh-wizard-benefits li {
	display: flex;
	gap: 8px;
	padding: 4px 0;
	align-items: center;
}

.drh-wizard-benefits .drh-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

.drh-wizard-benefits .is-yes .drh-benefit-icon {
	background: #d4edda;
	color: #1a7a1a;
}

.drh-wizard-benefits .is-no .drh-benefit-icon {
	background: #f0f0f0;
	color: #999;
}

.drh-wizard-benefits .is-no {
	color: #888;
}

.drh-wizard-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.drh-wizard-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	min-width: 0;
}

.drh-wizard-field input,
.drh-wizard-field select,
.drh-wizard-field textarea,
.drh-wizard-phone-prefix select,
.drh-wizard-phone-row input[type="tel"] {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

.drh-wizard-field input,
.drh-wizard-field select,
.drh-wizard-field textarea {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	font-family: inherit;
}

.drh-wizard-field textarea {
	resize: vertical;
	min-height: 72px;
}

.drh-wizard-field--full {
	grid-column: 1 / -1;
}

.drh-wizard-company-fields {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.drh-wizard-company-fields.is-hidden {
	display: none;
}

.drh-wizard-field--phone {
	grid-column: 1 / -1;
	min-width: 0;
}

.drh-wizard-phone-row {
	display: flex;
	gap: 8px;
	align-items: stretch;
	width: 100%;
	min-width: 0;
}

.drh-wizard-phone-prefix {
	flex: 0 0 auto;
}

.drh-wizard-phone-prefix select {
	min-width: 104px;
	padding: 10px 8px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}

.drh-wizard-phone-row input[type="tel"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
}

.drh-wizard-field__hint {
	margin: 4px 0 0;
	font-size: 12px;
	color: #666;
}

.drh-wizard-note--age {
	background: rgba(242, 215, 26, 0.15);
	border-radius: 8px;
	padding: 10px 12px;
}

.drh-wizard-register-promo {
	margin-top: 20px;
	padding: 16px 18px;
	border-radius: 12px;
	background: rgba(242, 215, 26, 0.14);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.drh-wizard-register-promo__text {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.drh-wizard-register-promo__login {
	display: block;
	margin-top: 8px;
	font-size: 13px;
}

.drh-wizard-register-promo__login a {
	color: #111;
	font-weight: 700;
}

.drh-wizard-register-promo__cta {
	display: inline-flex;
}

/* --- Registrazione/accesso inline (resta dentro il wizard) --- */
.drh-wizard-account {
	margin-top: 20px;
	padding: 16px 18px;
	border-radius: 12px;
	background: rgba(242, 215, 26, 0.14);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.drh-wizard-account__text {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.drh-wizard-account__create,
.drh-wizard-account__login {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
}

.drh-wizard-account__login {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(0, 0, 0, 0.18);
}

.drh-wizard-account__create .drh-wizard-field,
.drh-wizard-account__login .drh-wizard-field {
	flex: 1 1 200px;
	min-width: 0;
}

.drh-wizard-account__create .drh-wizard__btn,
.drh-wizard-account__login .drh-wizard__btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.drh-wizard-account__alt {
	margin: 12px 0 0;
	font-size: 13px;
	color: #333;
}

.drh-wizard-linkbtn {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	font-weight: 700;
	color: #111;
	text-decoration: underline;
	cursor: pointer;
}

.drh-wizard-account__msg {
	margin: 10px 0 0;
	font-size: 13px;
	min-height: 1em;
}

.drh-wizard-account__msg.is-error {
	color: #c52121;
	font-weight: 600;
}

.drh-wizard-account__msg.is-success {
	color: #1a7f37;
	font-weight: 600;
}

.drh-wizard-account .is-hidden {
	display: none;
}

.drh-wizard-note--success {
	background: rgba(34, 197, 94, 0.14);
	border-radius: 8px;
	padding: 10px 12px;
	color: #166534;
}

.drh-wizard-check {
	display: block;
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.5;
}

.drh-wizard-check a {
	color: #111;
	font-weight: 600;
}

.drh-wizard-error {
	color: #c52121;
	font-weight: 600;
}

.drh-wizard-alert {
	margin: 0 0 16px;
	padding: 12px 16px;
	border: 1px solid #e7b3b3;
	border-left: 4px solid #c52121;
	border-radius: 8px;
	background: #fdecec;
	color: #8a1414;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.drh-wizard-field.is-invalid > span {
	color: #c52121;
}

.drh-wizard-field.is-invalid input,
.drh-wizard-field.is-invalid select,
.drh-wizard-field.is-invalid textarea,
.drh-wizard-field--phone.is-invalid select,
.drh-wizard-field--phone.is-invalid input[type="tel"] {
	border-color: #c52121;
	background: #fff7f7;
	box-shadow: 0 0 0 2px rgba(197, 33, 33, 0.12);
}

.drh-wizard-check.is-invalid {
	border-radius: 8px;
	padding: 8px 10px;
	border: 1px solid #c52121;
	background: #fff7f7;
}

.drh-wizard-stripe {
	margin-top: 20px;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fafafa;
}

.drh-wizard-checkout-modes {
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.drh-wizard-checkout-modes__title {
	display: block;
	margin: 0 0 12px;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
}

.drh-wizard-checkout-mode {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 0 0 10px;
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	cursor: pointer;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.drh-wizard-checkout-mode.is-selected {
	border-color: #111;
	box-shadow: 0 0 0 1px #111;
}

.drh-wizard-checkout-mode input {
	margin-top: 3px;
	flex-shrink: 0;
}

.drh-wizard-checkout-mode__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.drh-wizard-checkout-mode__label {
	font-weight: 700;
	font-size: 15px;
	color: #111;
}

.drh-wizard-checkout-mode__hint {
	font-size: 13px;
	line-height: 1.4;
	color: #555;
}

.drh-wizard-stripe__element {
	min-height: 120px;
}

.drh-wizard-stripe__hint {
	margin: 10px 0 0;
	font-size: 13px;
	color: #666;
}

.drh-wizard-stripe__hint.is-error {
	color: #b71c1c;
	font-weight: 600;
}

.drh-wizard-stripe__already-paid {
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.drh-wizard-stripe__already-paid p {
	margin: 0 0 12px;
}

.drh-wizard-stripe__already-paid p:last-child {
	margin-bottom: 0;
}

.drh-wizard-skip {
	margin-top: 16px;
	text-align: center;
}

.drh-wizard-empty {
	color: #666;
}

/* === Step Extra: griglia card === */
.drh-extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
	margin-bottom: 12px;
}

.drh-extra-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.drh-extra-card:hover {
	border-color: #c9c9c9;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.drh-extra-card.is-selected {
	border-color: #111;
	box-shadow: 0 0 0 2px #f2d71a;
}

.drh-extra-card__badge {
	position: absolute;
	top: 0;
	left: 16px;
	transform: translateY(-50%);
	padding: 3px 10px;
	background: #111;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	border-radius: 999px;
}

.drh-extra-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.drh-extra-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: #f7f7f7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.drh-extra-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.drh-extra-card__icon--emoji {
	font-size: 26px;
	line-height: 1;
}

.drh-extra-card__head h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.drh-extra-card__desc {
	margin: 0 0 12px;
	font-size: 12.5px;
	line-height: 1.45;
	color: #6a6a6a;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.drh-extra-card__price {
	margin: auto 0 12px;
	padding: 0;
	font-size: 13px;
	color: #111;
}

.drh-extra-card__price strong {
	font-size: 18px;
	font-weight: 800;
}

.drh-extra-card__price span {
	color: #888;
	font-size: 13px;
}

.drh-extra-card__price-total {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	font-style: italic;
	color: #888;
}

.drh-extra-card__cta {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid #f2d71a;
	background: #f2d71a;
	color: #111;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.drh-extra-card__cta:hover {
	background: #111;
	color: #f2d71a;
	border-color: #111;
}

.drh-extra-card__cta.is-active {
	background: #fff;
	color: #111;
	border-color: #111;
}

.drh-extra-qty {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.drh-extra-qty__btn {
	flex: 0 0 38px;
	height: 38px;
	border: 1.5px solid #d4d4d4;
	background: #f7f7f7;
	color: #555;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.drh-extra-qty__btn:hover:not(:disabled) {
	background: #fff;
	color: #111;
	border-color: #111;
}

.drh-extra-qty__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.drh-extra-qty__btn--plus {
	border-color: #1a7a1a;
	color: #1a7a1a;
	background: #fff;
}

.drh-extra-qty__btn--plus:hover:not(:disabled) {
	background: #1a7a1a;
	color: #fff;
	border-color: #1a7a1a;
}

.drh-extra-qty__value {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	background: #f7f7f7;
	border: 1.5px solid #ececec;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 800;
}

.drh-confirmed-code {
	display: inline-block;
	margin: 16px 0;
	padding: 14px 24px;
	background: #f2d71a;
	border-radius: 8px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

@media (max-width: 900px) {
	.drh-wizard__layout {
		grid-template-columns: 1fr;
	}
	.drh-wizard__summary {
		position: static;
		order: 2;
	}
	.drh-wizard__main {
		order: 1;
	}
	.drh-wizard-vehicle {
		grid-template-columns: 1fr;
	}
	.drh-wizard-form__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   MOBILE: step su una riga + nav fissa in basso stile app
   ============================================================ */
@media (max-width: 720px) {
	.drh-wizard {
		padding: 0 12px 96px;
	}

	.drh-wizard__topbar {
		position: static;
		padding: 8px 0 0;
		background: transparent;
		border-bottom: 0;
	}

	.drh-wizard__steps {
		margin: 0 -12px;
		padding: 0;
		overflow: hidden;
	}

	.drh-wizard__steps-list {
		flex-wrap: nowrap;
		gap: 6px;
		margin: 0;
		padding: 0 12px 4px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		scroll-behavior: smooth;
	}

	.drh-wizard__steps-list::-webkit-scrollbar {
		display: none;
	}

	.drh-wizard-step {
		flex: 0 0 auto;
	}

	.drh-wizard-step__btn {
		padding: 7px 10px;
		font-size: 11.5px;
		white-space: nowrap;
	}

	.drh-wizard-step__num {
		width: 18px;
		height: 18px;
		font-size: 10px;
	}

	.drh-wizard__nav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 50;
		margin: 0;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		background: #ffffff;
		border-top: 1px solid #e5e5e5;
		box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
	}

	.drh-wizard__nav {
		gap: 8px;
	}

	.drh-wizard__nav .drh-wizard__btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 12px 10px;
		font-size: 13px;
	}

	.drh-wizard__nav-back-slot {
		flex: 1 1 0;
		min-width: 0;
	}

	.drh-wizard__nav-back-slot .drh-wizard__btn {
		width: 100%;
	}

	.drh-wizard__nav-total {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		padding: 6px 12px;
		border-radius: 10px;
		background: #f2d71a;
		color: #111;
		line-height: 1.1;
		min-width: 78px;
	}

	.drh-wizard__nav-total-label {
		font-size: 9.5px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		opacity: 0.75;
	}

	.drh-wizard__nav-total-value {
		font-size: 15px;
		font-weight: 800;
		white-space: nowrap;
	}

	/* --- Step "Dati cliente": ottimizzazione mobile --- */
	.drh-wizard-form__grid {
		gap: 16px;
		margin-bottom: 4px;
	}

	.drh-wizard-field {
		font-size: 13px;
	}

	/* 16px sugli input evita lo zoom automatico di iOS al focus. */
	.drh-wizard-field input,
	.drh-wizard-field select,
	.drh-wizard-field textarea,
	.drh-wizard-phone-prefix select,
	.drh-wizard-phone-row input[type="tel"] {
		font-size: 16px;
		padding: 13px 14px;
		border-radius: 10px;
	}

	.drh-wizard-company-fields {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.drh-wizard-phone-prefix select {
		min-width: 104px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.drh-wizard-note,
	.drh-wizard-note--age {
		font-size: 13px;
		line-height: 1.45;
	}

	/* Checkbox consensi: target ampio e allineamento pulito. */
	.drh-wizard-check {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		margin-top: 14px;
		padding: 10px 12px;
		border: 1px solid #ececec;
		border-radius: 10px;
		font-size: 13.5px;
	}

	.drh-wizard-check input[type="checkbox"] {
		flex: 0 0 auto;
		width: 22px;
		height: 22px;
		margin: 0;
	}

	.drh-wizard-register-promo {
		margin-top: 18px;
		padding: 14px 16px;
	}
}

/* ---------------------------------------------------------------------------
 *  Pagina di conferma / esito prenotazione
 * ------------------------------------------------------------------------ */
.drh-confirm {
	max-width: 680px;
	margin: 0 auto;
}

.drh-confirm__badge {
	text-align: center;
	padding: 24px 16px;
	border-radius: 16px;
	background: #eef9ee;
	border: 1px solid #bfe3bf;
	margin-bottom: 22px;
}

.drh-confirm__badge--error {
	background: #fdecea;
	border-color: #f0b3ab;
}

.drh-confirm__badge--cancelled {
	background: #f4f4f4;
	border-color: #d9d9d9;
}

.drh-confirm__badge--pending {
	background: #fff8e6;
	border-color: #f0d36b;
}

.drh-confirm__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #2e9b2e;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}

.drh-confirm__badge--error .drh-confirm__check {
	background: #d9534f;
}

.drh-confirm__badge--cancelled .drh-confirm__check {
	background: #888;
}

.drh-confirm__badge--pending .drh-confirm__check {
	background: #c9a227;
	font-size: 24px;
}

.drh-confirm__lead {
	margin: 4px 0 8px;
	font-size: 20px;
	font-weight: 800;
	color: #111;
}

.drh-confirm__subtitle {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.5;
	color: #444;
	max-width: 36em;
	margin-left: auto;
	margin-right: auto;
}

.drh-confirm__code-label {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #555;
}

.drh-confirm__code {
	margin: 4px 0 0;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #111;
}

.drh-confirm__card {
	display: flex;
	gap: 18px;
	padding: 16px;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	margin-bottom: 18px;
}

.drh-confirm__media {
	flex: 0 0 160px;
}

.drh-confirm__media img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}

.drh-confirm__body {
	flex: 1 1 auto;
}

.drh-confirm__vehicle {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
}

.drh-confirm__meta {
	margin: 0;
	display: grid;
	gap: 10px;
}

.drh-confirm__meta div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 10px;
}

.drh-confirm__meta dt {
	margin: 0;
	color: #666;
	font-weight: 600;
	font-size: 14px;
}

.drh-confirm__meta dd {
	margin: 0;
	color: #111;
	font-size: 14px;
}

.drh-confirm__note {
	font-size: 15px;
	line-height: 1.5;
	color: #444;
	margin: 0 0 18px;
}

.drh-confirm__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width: 560px) {
	.drh-confirm__card {
		flex-direction: column;
	}

	.drh-confirm__media {
		flex-basis: auto;
	}

	.drh-confirm__meta div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

/* Sconto "Paga Online" nel riepilogo */
.drh-wizard-summary__online-discount {
	display: flex;
	justify-content: space-between;
	color: #22c55e;
	font-weight: 600;
}

.drh-wizard-summary__total-old {
	text-decoration: line-through;
	opacity: 0.55;
	font-weight: 500;
	font-size: 0.82em;
	margin-right: 6px;
}

.drh-wizard-summary__total-net {
	color: #22c55e;
}

/* Popup errore pagamento (overlay sopra il wizard). */
.drh-pay-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(17, 17, 17, 0.55);
}

.drh-pay-modal__dialog {
	background: #fff;
	border-radius: 16px;
	max-width: 420px;
	width: 100%;
	padding: 26px 24px 22px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	text-align: center;
	border-top: 5px solid #e02424;
}

.drh-pay-modal__title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 800;
	color: #b91c1c;
}

.drh-pay-modal__msg {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.55;
	color: #333;
}

.drh-pay-modal__btn {
	display: inline-block;
	border: 0;
	cursor: pointer;
	padding: 12px 28px;
	border-radius: 999px;
	background: #111;
	color: #f2d71a;
	font-weight: 800;
	font-size: 15px;
}

.drh-pay-modal__btn:hover {
	background: #000;
}

/* Avviso "prenotazioni temporaneamente bloccate" (solo bottone finale). */
.drh-wizard-locked {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid #f0d36b;
	background: #fdf6dd;
	color: #6b5800;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
}
