/* FSE Global Listener - Passes WordPress color choices to the plugin */

[class*="rv-"],

[class*="mhm-"] {

	--mhm-primary: var(--wp--style--color--link, var(--wp--preset--color--primary, #2563eb));

	--mhm-text-primary: var(--wp--style--color--text, var(--wp--preset--color--text, #1f2937));

}





/* ===== UTILITY CLASSES (Replaces inline styles) ===== */

.rv-hidden {
	display: none;
}



.rv-select-disabled {

	background-color: var(--mhm-bg-tertiary);

	cursor: not-allowed;

}



.rv-description-hint {

	display: block;

	margin-top: 5px;

	color: var(--mhm-text-tertiary);

	font-size: 0.875rem;

}



.rv-form-actions {

	margin-top: 20px;

}





/* ===== LOGGED IN USER INFO (v4.0.0) ===== */

.rv-logged-in-info {

	background: linear-gradient(135deg, var(--mhm-primary) 0%, var(--mhm-primary-dark) 100%);

	border-radius: 12px;

	padding: 20px 24px;

	margin-bottom: 24px;

	box-shadow: 0 4px 15px color-mix(in srgb, var(--mhm-primary), transparent 70%);

	border: 1px solid color-mix(in srgb, var(--mhm-white), transparent 80%);

	position: relative;

	overflow: hidden;

}



.rv-logged-in-info::before {

	content: '';

	position: absolute;

	top: 0;

	inset-inline-start: 0;

	inset-inline-end: 0;

	height: 2px;

	background: linear-gradient(90deg, var(--mhm-info), var(--mhm-success), var(--mhm-error));

	border-radius: 12px 12px 0 0;

}



.rv-logged-in-info .rv-info-message {

	color: var(--mhm-btn-color);

	margin: 0;

	display: flex;

	align-items: center;

	gap: 12px;

	font-size: 15px;

	line-height: 1.5;

	font-weight: 500;

}



.rv-logged-in-info .rv-icon {

	font-size: 28px;

	line-height: 1;

	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));

}



.rv-logged-in-info strong {

	font-weight: 700;

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

}



/* Hover efekti */

.rv-logged-in-info:hover {

	transform: translateY(-1px);

	box-shadow: 0 6px 20px color-mix(in srgb, var(--mhm-primary), transparent 60%);

	transition: all 0.3s ease;

}



/* ===== FORM CONTAINER ===== */

.rv-booking-form-wrapper {

	max-width: 1200px;

	margin: 40px auto;

	padding-inline: var(--mhm-surface-gutter-desktop, var(--mhm-space-phi-2, 0.8125rem));
	padding-block: 0;

	box-sizing: border-box;

	width: 100%;

}



@media (max-width: 782px) {

	.rv-booking-form-wrapper {

		margin: 20px auto;

		padding-inline: var(--mhm-surface-gutter-mobile, var(--mhm-space-phi-2, 0.8125rem));
		padding-block: 0;

	}

}



@media (max-width: 480px) {

	.rv-booking-form-wrapper {

		margin: 10px auto;

		padding-inline: var(--mhm-surface-gutter-mobile, var(--mhm-space-phi-2, 0.8125rem));
		padding-block: 0;

	}

}



.rv-booking-form {

	background: var(--mhm-bg-card);

	border-radius: 0;

	box-shadow: none;

	font-family: var(--mhm-font-primary);

	width: 100%;

	box-sizing: border-box;

}



/* ===== PREMIUM CHECKOUT LAYOUT ===== */
.rv-checkout-layout {
	display: flex;
	flex-direction: column;
	gap: var(--mhm-space-8, 2.5rem);
	width: 100%;
}

@media (min-width: 992px) {
	.rv-checkout-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		/* Default 1 column */
		align-items: start;
	}

	/* CSS :has() selector for modern layout switching */
	.rv-checkout-layout:has(.rv-checkout-vehicle:not(.rv-hidden)) {
		grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
	}

	.rv-checkout-vehicle {
		position: sticky;
		top: var(--mhm-space-8, 2.5rem);
		align-self: start;
	}
}

/* ===== CARD COMPONENT SYSTEM (PREMIUM UI) ===== */
.rv-card {
	background: var(--mhm-bg-card);
	border-radius: var(--mhm-radius-xl, 1rem);
	box-shadow: var(--mhm-shadow-sm, 0 1px 2px 0 rgb(0 0 0 / 0.05));
	border: 1px solid var(--mhm-border-primary, #e2e8f0);
	overflow: hidden;
	margin-bottom: var(--mhm-space-6, 1.5rem);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rv-card:hover {
	border-color: var(--mhm-primary-transparent, rgba(19, 127, 236, 0.3));
}

.rv-card-header {
	display: flex;
	align-items: center;
	gap: var(--mhm-space-3, 0.75rem);
	padding: var(--mhm-space-6, 1.5rem) var(--mhm-space-6, 1.5rem) 0;
	margin-bottom: var(--mhm-space-6, 1.5rem);
}

.rv-card-header .rv-icon {
	color: var(--mhm-primary, #137fec);
	font-size: 1.5rem;
}

.rv-card-header .rv-section-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--mhm-text-primary, #0f172a);
	margin: 0;
	line-height: 1.2;
}

.rv-card-body {
	padding: 0 var(--mhm-space-6, 1.5rem) var(--mhm-space-6, 1.5rem);
}



.rv-booking-form-content .rv-form-section {

	margin-bottom: 0;

}



.rv-form-header {

	margin-bottom: 2rem;

	text-align: center;

}



.rv-form-title {

	margin: 0;

	font-size: 1.875rem;

	font-weight: 700;

	color: var(--mhm-text-primary);

	border-bottom: 3px solid var(--mhm-primary);

	padding-bottom: 0.5rem;

	display: inline-block;

}



/* ===== FORM SECTIONS ===== */

.rv-form-section {

	margin-bottom: 20px;

	padding: 0;

	background: var(--mhm-bg-card);

	border-radius: 0;

	border: none;

}



.rv-section-title {

	margin: 0 0 16px 0;

	font-size: 18px;

	font-weight: 600;

	color: var(--mhm-text-primary);

	display: flex;

	align-items: center;

	gap: 0.5rem;

}



.rv-section-title::before {

	content: '';

	width: 4px;

	height: 24px;

	background: var(--mhm-primary);

	border-radius: 2px;

}



.rv-subsection-title {

	margin: 1rem 0 0.75rem 0;

	font-size: 1rem;

	font-weight: 600;

	color: var(--mhm-text-secondary);

}



/* ===== FORM ELEMENTS ===== */

.rv-field-group {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 1rem;

	margin-bottom: 1rem;

}



@media (max-width: 782px) {

	.rv-field-group {

		grid-template-columns: 1fr !important;

		gap: 0.75rem;

	}



	.rv-input,

	.rv-select {

		width: 100% !important;

		max-width: 100% !important;

		box-sizing: border-box !important;

	}

}



.rv-field {

	display: flex;

	flex-direction: column;

}



.rv-field-dates {
	grid-template-columns: 1fr 1fr;
}

/* ===== DATE & TIME PREMIUM CARD LAYOUT ===== */
.rv-dates-combined-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--mhm-space-6, 1.5rem);
}

@media (min-width: 768px) {
	.rv-dates-combined-layout {
		grid-template-columns: 1fr 1fr;
	}
}

.rv-combined-field-column {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.rv-label-premium {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--mhm-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: block;
}

.rv-date-time-picker-wrapper {
	position: relative;
	width: 100%;
}

.rv-calendar-icon-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	padding-left: 0.75rem;
	display: flex;
	align-items: center;
	color: var(--mhm-text-secondary, #64748b);
	pointer-events: none;
	transition: color 0.2s ease;
}

.rv-inputs-inner {
	display: flex;
	align-items: center;
	background: var(--mhm-bg-input, #f8fafc);
	border: 1px solid var(--mhm-border-primary, #e2e8f0);
	border-radius: var(--mhm-radius-lg, 0.5rem);
	padding-left: 2.5rem;
	/* Make room for the absolute icon */
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}

.rv-date-time-picker-wrapper:focus-within .rv-calendar-icon-wrapper {
	color: var(--mhm-primary);
}

.rv-date-time-picker-wrapper:focus-within .rv-inputs-inner {
	border-color: var(--mhm-primary);
	box-shadow: 0 0 0 1px var(--mhm-primary);
}

.rv-input-ghost,
.rv-select-ghost {
	background: transparent;
	border: none;
	padding: 0.75rem 0.5rem;
	font-size: 0.875rem;
	color: var(--mhm-text-primary);
	flex: 1;
	min-width: 0;
	outline: none;
}

/* Specific select reset for ghost */
.rv-select-ghost {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.rv-field-separator {
	color: var(--mhm-text-secondary, #94a3b8);
	font-weight: 600;
}

.rv-description-hint-premium {
	font-size: 0.75rem;
	color: var(--mhm-text-secondary);
	display: block;
	margin-top: 0.25rem;
}



.rv-field-times {

	grid-template-columns: 1fr 1fr;

}



/* Special styling for name fields */

.rv-name-fields {

	grid-template-columns: 1fr 1fr;

	gap: 1rem;

}



@media (max-width: 782px) {

	.rv-name-fields {

		grid-template-columns: 1fr;

		gap: 0.5rem;

	}

}



.rv-field-contact {

	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

}



.rv-label {

	display: block !important;

	margin-bottom: 0.5rem;

	font-weight: 600;

	color: var(--mhm-text-secondary);

	font-size: 0.875rem;

	visibility: visible !important;

}



.rv-label .required {

	color: var(--mhm-error);

	margin-inline-start: 0.25rem;

}



/* Ensure labels are visible in Contact Information section */

.rv-contact-info .rv-label,

.rv-contact-info .rv-field .rv-label,

.rv-contact-info .rv-field-group .rv-field .rv-label {

	display: block !important;

	visibility: visible !important;

	color: var(--mhm-text-secondary) !important;

	font-size: 0.875rem !important;

	font-weight: 600 !important;

	opacity: 1 !important;

	text-indent: 0 !important;

	line-height: 1.5 !important;

	height: auto !important;

	width: auto !important;

	overflow: visible !important;

	clip: auto !important;

	position: static !important;

}



.rv-input,

.rv-select {

	width: 100%;

	padding: 0.875rem 1rem;

	border: 2px solid var(--mhm-border-primary);

	border-radius: 8px;

	font-size: 1rem;

	transition: all 0.3s ease;

	background: var(--mhm-bg-card);

	color: var(--mhm-text-primary);

	box-sizing: border-box;

}



/* Select dropdown options styling */

.rv-select option {

	background-color: var(--mhm-bg-card);

	color: var(--mhm-text-primary);

	padding: 0.5rem;

}



.rv-select option:hover {

	background-color: var(--mhm-bg-secondary);

	color: var(--mhm-text-primary);

}



.rv-select option:checked,

.rv-select option:selected {

	background-color: var(--mhm-primary);

	color: var(--mhm-btn-color);

}



.rv-input:focus,

.rv-select:focus {

	outline: none;

	border-color: var(--mhm-primary);

	box-shadow: 0 0 0 3px color-mix(in srgb, var(--mhm-primary), transparent 90%);

	transform: translateY(-1px);

}



.rv-input:hover,

.rv-select:hover {

	border-color: var(--mhm-border-secondary);

}



.rv-input.error,

.rv-select.error {

	border-color: var(--mhm-error);

	box-shadow: 0 0 0 3px color-mix(in srgb, var(--mhm-error), transparent 90%);

}



/* Special styling for date inputs */

.rv-input[type="date"] {

	position: relative;

	cursor: pointer;

	padding-inline-end: 2.5rem;

}



.rv-input[type="date"]::-webkit-calendar-picker-indicator {

	position: absolute;

	top: 0;

	inset-inline-start: 0;

	inset-inline-end: 0;

	bottom: 0;

	width: 100%;

	height: 100%;

	margin: 0;

	padding: 0;

	cursor: pointer;

	opacity: 0;

	background: transparent;

}



/* ===== VEHICLE SELECTION ===== */

.rv-vehicle-selection {

	position: relative;

}



.rv-selected-vehicle-preview {

	margin-top: 1rem;

	padding: 1.5rem;

	background: var(--mhm-bg-card);
}

.rv-availability-status {

	margin: 1.5rem 0;

	padding: 0px;

	border-radius: 12px;

	overflow: hidden;

	box-shadow: var(--mhm-shadow-base);

	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	animation: slideIn 0.4s ease-out;

}



@keyframes slideIn {

	from {

		opacity: 0;

		transform: translateY(-10px);

	}



	to {

		opacity: 1;

		transform: translateY(0);

	}

}



.rv-availability-status.hidden {

	display: none;

}



/* Success State - Modern Green Card */

.rv-availability-success {

	background: linear-gradient(135deg, var(--mhm-success) 0%, var(--mhm-success-dark) 100%);

	color: var(--mhm-white);

	padding: 1.25rem 1.5rem;

	display: flex;

	align-items: center;

	gap: 0.75rem;

	border-radius: 12px;

	box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mhm-success), transparent 70%);

}



.rv-availability-success .dashicons {

	font-size: 24px;

	width: 24px;

	height: 24px;

	color: var(--mhm-white);

	background: rgba(255, 255, 255, 0.2);

	border-radius: 50%;

	padding: 8px;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

}



.rv-availability-success .dashicons::before {

	font-size: 16px;

	line-height: 1;

}



.rv-availability-success>span:last-child {

	font-size: 1rem;

	font-weight: 600;

	letter-spacing: 0.025em;

}



/* Error State - Modern Red Card */

.rv-availability-error {

	background: linear-gradient(135deg, var(--mhm-error) 0%, var(--mhm-error-dark) 100%);

	color: var(--mhm-white);

	padding: 1.25rem 1.5rem;

	border-radius: 12px;

	box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mhm-error), transparent 70%);

}





.rv-availability-error-header {

	display: flex;

	align-items: center;

	gap: 0.75rem;

	margin-bottom: 0.5rem;

}



.rv-availability-error-header .dashicons {

	font-size: 24px;

	width: 24px;

	height: 24px;

	color: var(--mhm-white);

	background: rgba(255, 255, 255, 0.2);

	border-radius: 50%;

	padding: 8px;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

}



.rv-availability-error-header .dashicons::before {

	font-size: 16px;

	line-height: 1;

}



.rv-availability-error-header strong {

	font-size: 1rem;

	font-weight: 600;

	letter-spacing: 0.025em;

}



/* Loading State - Modern Blue Card */

.rv-loading-message {

	background: linear-gradient(135deg, var(--mhm-primary) 0%, var(--mhm-primary-dark) 100%);

	color: var(--mhm-white);

	padding: 1.25rem 1.5rem;

	display: flex;

	align-items: center;

	gap: 0.75rem;

	border-radius: 12px;

	box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mhm-primary), transparent 70%);

	font-size: 1rem;

	font-weight: 500;

}



.rv-loading-message .rv-spinner {

	width: 20px;

	height: 20px;

	border: 3px solid rgba(255, 255, 255, 0.3);

	border-top-color: var(--mhm-white);

	border-radius: 50%;

	animation: spin 0.8s linear infinite;

	flex-shrink: 0;

}



@keyframes spin {

	to {

		transform: rotate(360deg);

	}

}



/* Footer */

.rv-selected-vehicle .rv-vehicle-card__footer {

	display: flex;

	justify-content: space-between;

	align-items: center;

	margin-top: auto;

	padding-top: 0.75rem;

	border-top: 1px solid var(--mhm-border-primary);

}



.rv-selected-vehicle .rv-vehicle-card__price {

	display: flex;

	flex-direction: row;

	align-items: baseline;

	gap: 0.25rem;

}



.rv-selected-vehicle .rv-price-amount {

	font-size: 1.5rem;

	font-weight: 700;

	color: var(--mhm-primary);

	line-height: 1;

}



.rv-selected-vehicle .rv-price-period {

	font-size: 0.875rem;

	color: var(--mhm-text-tertiary);

}



.rv-vehicle-image {

	width: 100px;

	height: 75px;

	object-fit: cover;

	border-radius: 8px;

	box-shadow: var(--mhm-shadow-sm);

}



.rv-vehicle-details h4 {

	margin: 0 0 0.5rem 0;

	font-size: 1.25rem;

	color: var(--mhm-text-primary);

	font-weight: 700;

}



.rv-vehicle-excerpt {

	margin: 0 0 0.5rem 0;

	color: var(--mhm-text-secondary);

	font-size: 0.875rem;

	line-height: 1.4;

}



.rv-vehicle-features {

	display: flex;

	flex-wrap: wrap;

	gap: 0.5rem;

	margin-bottom: 0.5rem;

}



.rv-feature-tag {

	padding: 0.25rem 0.5rem;

	background: var(--mhm-bg-secondary);

	color: var(--mhm-primary);

	border-radius: 4px;

	font-size: 0.75rem;

	font-weight: 500;

}



.rv-vehicle-price {

	margin: 0;

	font-size: 1rem;

	color: var(--mhm-primary);

	font-weight: 600;

}



/* ===== ADDONS ===== */

.rv-addons .rv-section-title {

	color: var(--mhm-text-primary);

	font-size: 1.125rem;

	font-weight: 600;

	margin-bottom: 1.25rem;

	position: relative;

	padding-inline-start: 1rem;

}



.rv-addons .rv-section-title::before {

	content: '';

	position: absolute;

	inset-inline-start: 0;

	top: 50%;

	transform: translateY(-50%);

	width: 4px;

	height: 20px;

	background: linear-gradient(135deg, var(--mhm-primary), var(--mhm-primary-dark));

	border-radius: 2px;

}



.rv-addons-list {

	display: grid;

	grid-template-columns: repeat(2, 1fr);

	gap: 1rem;

}



.rv-addon-item {
	display: flex;
	align-items: center;
	gap: var(--mhm-space-4, 1rem);
	padding: var(--mhm-space-4, 1rem);
	border: 1px solid var(--mhm-border-primary, #e2e8f0);
	border-radius: var(--mhm-radius-xl, 1rem);
	background: var(--mhm-bg-card);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.rv-addon-item:hover,
.rv-addon-item:focus-within {
	border-color: var(--mhm-primary-transparent, rgba(19, 127, 236, 0.5));
}

.rv-addon-item.selected {
	border-color: var(--mhm-primary);
	background: var(--mhm-bg-primary);
}

.rv-addon-icon-circle {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: var(--mhm-primary-transparent, rgba(19, 127, 236, 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mhm-primary);
	flex-shrink: 0;
}

.rv-addon-actions {
	display: flex;
	align-items: center;
	gap: var(--mhm-space-4, 1rem);
	flex-shrink: 0;
}

.rv-addon-checkbox {
	margin: 0;
	width: 1.25rem;
	height: 1.25rem;
	accent-color: var(--mhm-primary);
	cursor: pointer;
	border-radius: 0.25rem;
}

.rv-addon-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.rv-addon-title {
	font-weight: 700;
	color: var(--mhm-text-primary);
	font-size: 0.875rem;
	margin: 0;
}

.rv-addon-price {
	font-weight: 700;
	color: var(--mhm-text-primary);
	font-size: 0.875rem;
	margin: 0;
}

.rv-addon-description {
	margin: 0;
	color: var(--mhm-text-secondary);
	font-size: 0.75rem;
	line-height: 1.4;
}



/* ===== PRICE CALCULATION ===== */
.rv-price-calculation {
	display: flex;
	flex-direction: column;
}

.rv-price-breakdown {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0;
	align-items: center;
}

.rv-price-item {
	display: contents;
}

.rv-price-label {
	font-weight: 500;
	color: var(--mhm-text-secondary);
	text-align: left;
	padding: 0.75rem 0;
	border-bottom: 1px dashed var(--mhm-border-primary, #e2e8f0);
}

.rv-price-value {
	font-weight: 700;
	color: var(--mhm-text-primary);
	text-align: right;
	padding: 0.75rem 0;
	border-bottom: 1px dashed var(--mhm-border-primary, #e2e8f0);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.rv-price-item.rv-total-price .rv-price-label,
.rv-price-item.rv-total-price .rv-price-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--mhm-text-primary);
	border-top: 2px solid var(--mhm-border-primary, #e2e8f0);
	border-bottom: none;
	padding-top: 1.25rem;
	margin-top: 0.5rem;
}

/* Special styling for deposit and remaining */
.rv-price-item.rv-deposit-summary .rv-price-label,
.rv-price-item.rv-remaining-summary .rv-price-label,
.rv-price-item.rv-deposit-summary .rv-price-value,
.rv-price-item.rv-remaining-summary .rv-price-value {
	color: var(--mhm-secondary);
	font-weight: 600;
}

/* Form Actions specific to the card */
.rv-price-calculation .rv-form-actions {
	padding: var(--mhm-space-6, 1.5rem);
	background: var(--mhm-bg-input, #f8fafc);
	border-top: 1px solid var(--mhm-border-primary, #e2e8f0);
	margin: var(--mhm-space-6, 1.5rem) calc(var(--mhm-space-6, 1.5rem) * -1) calc(var(--mhm-space-6, 1.5rem) * -1);
}

.rv-price-calculation .rv-submit-btn {
	width: 100%;
	padding: 1rem;
	border-radius: var(--mhm-radius-lg, 0.5rem);
	background: var(--mhm-primary);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rv-price-calculation .rv-submit-btn:hover {
	background: var(--mhm-primary-dark, #0d60b5);
}

.rv-price-calculation .rv-submit-btn:active {
	transform: scale(0.98);
}



/* ===== PAYMENT OPTIONS ===== */

.rv-payment-type-selection {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	gap: 1rem;

	margin-bottom: 2rem;

}



@media (max-width: 782px) {

	.rv-payment-type-selection {

		grid-template-columns: 1fr;

		gap: 0.75rem;

	}

}



.rv-payment-type {

	display: flex;

	align-items: flex-start;

	gap: 1rem;

	padding: 1.5rem;

	border: 2px solid var(--mhm-border-primary);

	border-radius: 12px;

	cursor: pointer;

	transition: all 0.3s ease;

	background: var(--mhm-bg-card);

}



.rv-payment-type:hover {

	border-color: var(--mhm-primary);

	background: var(--mhm-bg-secondary);

	transform: translateY(-2px);

	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-primary), transparent 85%);

}



.rv-payment-type:has(input:checked) {

	border-color: var(--mhm-primary);

	background: color-mix(in srgb, var(--mhm-primary), transparent 95%);

	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-primary), transparent 80%);

}



.rv-payment-type input[type="radio"] {

	margin: 0;

	width: 20px;

	height: 20px;

	accent-color: var(--mhm-primary);

	cursor: pointer;

}



.rv-payment-type-label {

	flex: 1;

}



.rv-payment-type-label strong {

	display: block;

	font-size: 1rem;

	color: var(--mhm-text-primary);

	margin-bottom: 0.25rem;

}



.rv-payment-type-label small {

	display: block;

	font-size: 0.875rem;

	color: var(--mhm-text-secondary);

	line-height: 1.4;

}



.rv-payment-methods {

	margin-top: 2rem;

}



.rv-payment-method-selection {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 1rem;

	margin-bottom: 1.5rem;

}



@media (max-width: 782px) {

	.rv-payment-method-selection {

		grid-template-columns: 1fr;

		gap: 0.75rem;

	}

}



.rv-payment-method {

	display: flex;

	align-items: flex-start;

	gap: 1rem;

	padding: 1.5rem;

	border: 2px solid var(--mhm-border-primary);

	border-radius: 12px;

	cursor: pointer;

	transition: all 0.3s ease;

	background: var(--mhm-bg-card);

}



.rv-payment-method:hover {

	border-color: var(--mhm-primary);

	background: var(--mhm-bg-secondary);

	transform: translateY(-2px);

	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-primary), transparent 85%);

}



.rv-payment-method:has(input:checked) {

	border-color: var(--mhm-primary);

	background: color-mix(in srgb, var(--mhm-primary), transparent 95%);

	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-primary), transparent 80%);

}



.rv-payment-method input[type="radio"] {

	margin: 0;

	width: 20px;

	height: 20px;

	accent-color: var(--mhm-primary);

	cursor: pointer;

}



.rv-payment-method-label {

	flex: 1;

}



.rv-payment-method-label strong {

	display: block;

	font-size: 1rem;

	color: var(--mhm-text-primary);

	margin-bottom: 0.25rem;

}



.rv-payment-method-label small {

	display: block;

	font-size: 0.875rem;

	color: var(--mhm-text-tertiary);

	line-height: 1.4;

}



.rv-online-payment-details {

	margin-top: 1.5rem;

	padding: 1.5rem;

	background: var(--mhm-bg-secondary);

	border-radius: 8px;

	border: 1px solid var(--mhm-border-primary);

}



.rv-payment-gateway-title {

	margin: 0 0 1rem 0;

	font-size: 1rem;

	font-weight: 600;

	color: var(--mhm-text-secondary);

}



.rv-payment-gateways {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

	gap: 1rem;

}



@media (max-width: 782px) {

	.rv-payment-gateways {

		grid-template-columns: 1fr;

		gap: 0.75rem;

	}

}



.rv-payment-gateway {

	display: flex;

	align-items: center;

	gap: 0.75rem;

	padding: 1rem;

	border: 2px solid var(--mhm-border-primary);

	border-radius: 8px;

	cursor: pointer;

	transition: all 0.3s ease;

	background: var(--mhm-bg-card);

}



.rv-payment-gateway:hover {

	border-color: var(--mhm-primary);

	background: var(--mhm-bg-secondary);

}



.rv-payment-gateway:has(input:checked) {

	border-color: var(--mhm-primary);

	background: color-mix(in srgb, var(--mhm-primary), transparent 95%);

}



.rv-payment-gateway input[type="radio"] {

	margin: 0;

	width: 18px;

	height: 18px;

	accent-color: var(--mhm-primary);

	cursor: pointer;

}



.rv-gateway-label {

	display: flex;

	align-items: center;

	gap: 0.5rem;

}



.rv-gateway-icon {

	font-size: 1.25rem;

}



.rv-gateway-name {

	font-weight: 500;

	color: var(--mhm-text-primary);

}



/* ===== FORM ACTIONS ===== */

.rv-form-actions {

	display: flex;

	gap: 1rem;

	justify-content: center;

	margin-top: 2rem;

	padding-top: 2rem;

	border-top: 2px solid var(--mhm-border-primary);

}



.rv-form-actions {

	margin-top: 1.5rem;

	padding-top: 1.5rem;

	border-top: 2px solid var(--mhm-border-primary);

	justify-content: stretch;

}





.rv-form-actions .rv-btn {

	width: 100%;

}



.rv-btn {

	padding: 1rem 2rem;

	border: 2px solid transparent;

	border-radius: 12px;

	font-size: 1rem;

	font-weight: 600;

	cursor: pointer;

	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	text-decoration: none;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	gap: 0.5rem;

	min-width: 140px;

	position: relative;

	overflow: hidden;

	font-family: var(--mhm-font-primary);

	letter-spacing: 0.025em;

	color: var(--mhm-btn-color);

	background-color: var(--mhm-btn-bg);

}



.rv-btn::before {

	content: '';

	position: absolute;

	top: 0;

	left: 0;

	right: 0;

	bottom: 0;

	background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);

	opacity: 0;

	transition: opacity 0.3s ease;

	pointer-events: none;

}



.rv-btn:hover::before {

	opacity: 1;

}



.rv-btn:hover:not(:disabled) {

	background-color: var(--mhm-btn-hover-bg);

	transform: translateY(-2px);

	box-shadow: var(--mhm-shadow-lg);

}



.rv-btn:disabled,

.rv-btn[disabled] {

	opacity: 0.6;

	cursor: not-allowed;

	transform: none !important;

	background-color: var(--mhm-gray-400) !important;

	border-color: var(--mhm-gray-400) !important;

	color: var(--mhm-gray-700) !important;

}



/* Primary Button Override */

.rv-btn-primary {

	background-color: var(--mhm-btn-bg);

	color: var(--mhm-btn-color);

	border: 2px solid color-mix(in srgb, var(--mhm-white), transparent 80%);

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

	box-shadow: 0 4px 15px color-mix(in srgb, var(--mhm-btn-bg), transparent 70%);

}



.rv-btn-primary:hover:not(:disabled) {

	background-color: var(--mhm-btn-hover-bg);

	transform: translateY(-3px) scale(1.02);

	box-shadow: 0 8px 25px color-mix(in srgb, var(--mhm-btn-bg), transparent 60%);

}



.rv-btn-text {

	display: block !important;

	visibility: visible !important;

	color: inherit !important;

	font-weight: 600 !important;

	opacity: 1 !important;

	position: relative !important;

	z-index: 1 !important;

}



.rv-btn-loading {

	display: none;

	align-items: center;

	gap: 0.5rem;

}



.rv-btn-loading .rv-spinner {

	width: 16px;

	height: 16px;

	border: 2px solid color-mix(in srgb, var(--mhm-white), transparent 70%);

	border-top: 2px solid var(--mhm-white);

	border-radius: 50%;

	animation: spin 1s linear infinite;

}



/* ===== MESSAGES ===== */

.rv-messages {

	margin-top: 1.5rem;

}



.rv-success-message,

.rv-error-message {

	padding: 1.2rem 1.8rem;

	border-radius: 12px;

	font-weight: 600;

	display: flex;

	align-items: center;

	gap: 0.75rem;

	font-size: 15px;

	line-height: 1.5;

	box-shadow: var(--mhm-shadow-base);

	border-left: 4px solid;

	animation: slideInDown 0.3s ease-out;

}

.rv-success-message:empty,
.rv-error-message:empty {
	display: none;
	padding: 0;
	margin: 0;
	border: none;
}



.rv-success-message {

	background: var(--mhm-bg-secondary);

	border: 1px solid var(--mhm-success);

	border-left-color: var(--mhm-success);

	color: var(--mhm-success-dark);

}



.rv-error-message {

	background: color-mix(in srgb, var(--mhm-error), transparent 95%);

	border: 1px solid var(--mhm-error);

	border-left-color: var(--mhm-error);

	color: var(--mhm-error-dark);

}



@keyframes slideInDown {

	from {

		opacity: 0;

		transform: translateY(-10px);

	}



	to {

		opacity: 1;

		transform: translateY(0);

	}

}



/* ===== ALTERNATIVE VEHICLES ===== */

.rv-alternatives-wrapper {

	margin-top: 15px;

	padding: 15px;

	background: var(--mhm-bg-secondary);

	border: 1px solid color-mix(in srgb, var(--mhm-success), transparent 80%);

	border-radius: 12px;

	display: flex;

	gap: 15px;

	flex-wrap: wrap;

}



.rv-alternative-vehicle-card {

	flex: 1;

	min-width: 250px;

	background: var(--mhm-bg-card);

	border: 1px solid var(--mhm-border-primary);

	border-radius: 12px;

	overflow: hidden;

	box-shadow: var(--mhm-shadow-sm);

	transition: all 0.3s ease;

	cursor: pointer;

}



.rv-alternative-vehicle-card:hover {

	transform: translateY(-3px);

	box-shadow: var(--mhm-shadow-lg);

	border-color: var(--mhm-primary);

}



.rv-vehicle-features {

	margin-bottom: 8px;

}



/* ===== SPINNER ===== */

.rv-spinner {

	width: 20px;

	height: 20px;

	border: 2px solid var(--mhm-bg-secondary);

	border-top: 2px solid var(--mhm-primary);

	border-radius: 50%;

	animation: spin 1s linear infinite;

}



@keyframes spin {

	0% {

		transform: rotate(0deg);

	}



	100% {

		transform: rotate(360deg);

	}

}



/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 782px) {

	.rv-booking-form-wrapper {

		max-width: 100%;

		margin: 20px auto;

		padding: 0 15px;

	}



	.rv-booking-form {

		padding: 0;

	}



	.rv-booking-form-content {

		gap: 1.5rem !important;

	}



	/* Selected Vehicle - Mobile */

	.rv-selected-vehicle {

		flex-direction: column;

		min-height: auto;

		padding: 1rem;

		margin-bottom: 1.5rem;

	}



	.rv-selected-vehicle .rv-vehicle-image-wrapper {

		width: 100%;

		height: 160px;

		margin-right: 0;

		margin-bottom: 1rem;

	}



	.rv-selected-vehicle .rv-vehicle-details {

		height: auto;

		padding-left: 0;

	}



	.rv-selected-vehicle .rv-vehicle-card__footer {

		flex-direction: column;

		gap: 0.75rem;

	}



	.rv-form-section {

		padding: 0;

		margin-bottom: 1.5rem;

	}



	/* Better responsive for input fields */

	.rv-field-group {

		grid-template-columns: 1fr !important;

		gap: 1rem !important;

		margin-bottom: 1rem;

	}



	.rv-field-dates,

	.rv-field-times {

		grid-template-columns: 1fr 1fr !important;

		gap: 0.75rem !important;

	}



	/* Input and select widths */

	.rv-input,

	.rv-select {

		width: 100%;

		padding: 0.75rem 1rem;

		font-size: 0.9rem;

		border: 1px solid var(--mhm-border-primary);

		border-radius: 6px;

	}



	/* Payment options */

	.rv-payment-type-selection,

	.rv-payment-method-selection,

	.rv-payment-gateways {

		grid-template-columns: 1fr !important;

		gap: 0.75rem !important;

	}



	.rv-payment-type,

	.rv-payment-method {

		padding: 1rem !important;

		margin-bottom: 0 !important;

	}



	.rv-payment-gateway {

		padding: 0.75rem !important;

		margin-bottom: 0 !important;

	}



	/* Addons */

	.rv-addons-list {

		grid-template-columns: 1fr !important;

		gap: 0.75rem !important;

	}



	.rv-addon-item {

		padding: 1rem !important;

	}



	/* Form actions */

	.rv-form-actions {

		flex-direction: column;

		gap: 0.75rem;

		padding-top: 1rem;

	}



	.rv-btn {

		width: 100% !important;

		min-width: auto;

		padding: 0.875rem 1.5rem;

		font-size: 0.9rem;

	}



	/* Vehicle info */

	.rv-vehicle-info {

		flex-direction: column;

		text-align: center;

		gap: 1rem;

	}



	.rv-vehicle-image {

		width: 100%;

		height: 150px;

		max-width: 300px;

		margin: 0 auto;

	}



	.rv-addons .rv-section-title {

		font-size: 1rem;

		margin-bottom: 1rem;

	}

}



@media (max-width: 480px) {

	.rv-booking-form-wrapper {

		padding: 0 10px;

		margin: 10px auto;

	}



	.rv-booking-form {

		padding: 0;

		margin: 0;

	}



	.rv-form-section {

		padding: 0;

		margin-bottom: 1rem;

	}



	/* More compact input fields */

	.rv-input,

	.rv-select {

		padding: 0.625rem 0.875rem;

		font-size: 0.85rem;

		border-radius: 4px;

	}



	/* Date fields single column */

	.rv-field-dates,

	.rv-field-times {

		grid-template-columns: 1fr !important;

		gap: 0.5rem !important;

	}



	/* Smaller payment cards */

	.rv-payment-type,

	.rv-payment-method {

		padding: 0.75rem !important;

	}



	.rv-payment-gateway {

		padding: 0.625rem !important;

	}



	/* Smaller Addons */

	.rv-addon-item {

		padding: 0.75rem !important;

	}



	/* Price calculation */

	.rv-price-calculation {

		padding: 0.75rem;

		margin: 1rem 0;

	}



	.rv-price-breakdown {

		grid-template-columns: 1fr;

		gap: 0.5rem;

	}



	.rv-price-item {

		display: flex;

		justify-content: space-between;

		align-items: center;

		padding: 0.5rem 0;

		border-bottom: 1px solid var(--mhm-border-primary);

	}



	.rv-price-label,

	.rv-price-value {

		border-bottom: none;

		padding: 0;

		min-width: auto;

		justify-content: flex-start;

		font-size: 0.9rem;

	}



	.rv-price-value {

		text-align: right;

		justify-content: flex-end;

	}



	.rv-price-item.rv-total-price {

		border-top: 2px solid var(--mhm-border-primary);

		margin-top: 0.75rem;

		padding-top: 0.75rem;

	}



	.rv-price-item.rv-total-price .rv-price-label,

	.rv-price-item.rv-total-price .rv-price-value {

		border-top: none;

		margin-top: 0;

		padding-top: 0;

		font-size: 1.1rem;

	}



	.rv-form-title {

		font-size: 1.25rem;

	}



	.rv-btn {

		padding: 0.75rem 1rem !important;

		font-size: 0.85rem !important;

	}



	/* Ara resmi daha küçük */

	.rv-selected-vehicle .rv-vehicle-image-wrapper {

		height: 140px;

	}



	.rv-selected-vehicle {

		padding: 0.75rem;

	}

}



/* ===== ACCESSIBILITY ===== */

.rv-input:focus,

.rv-select:focus,

.rv-btn:focus {

	outline: none;

	border-color: color-mix(in srgb, var(--mhm-white), transparent 50%);

	box-shadow:

		0 4px 15px color-mix(in srgb, var(--mhm-primary), transparent 70%),

		inset 0 1px 0 color-mix(in srgb, var(--mhm-white), transparent 90%),

		0 0 0 3px color-mix(in srgb, var(--mhm-primary), transparent 70%);

}





.rv-addon-item:focus-within,

.rv-payment-method:focus-within,

.rv-payment-type:focus-within,

.rv-payment-gateway:focus-within {

	outline: 2px solid var(--mhm-primary);

	outline-offset: 2px;

}



/* ===== PRINT STYLES ===== */

@media print {

	.rv-booking-form {

		box-shadow: none;

		border: 1px solid var(--mhm-black);

	}



	.rv-form-actions,

	.rv-btn-loading {

		display: none;

	}



	.rv-form-section {

		break-inside: avoid;

	}

}



/* ===== DARK MODE SUPPORT ===== */

@media (prefers-color-scheme: dark) {

	.rv-booking-form {

		background: var(--mhm-gray-800);

		color: var(--mhm-gray-50);

	}



	.rv-form-section {

		background: var(--mhm-gray-700);

		border-color: var(--mhm-gray-600);

	}



	.rv-section-title {

		color: var(--mhm-gray-50);

	}



	.rv-input,

	.rv-select {

		background: var(--mhm-gray-700);

		border-color: var(--mhm-gray-600);

		color: var(--mhm-gray-50);

	}



	.rv-input:focus,

	.rv-select:focus {

		border-color: var(--mhm-primary);

		background: var(--mhm-gray-700);

	}

}



/* ===== AVAILABILITY STATUS ===== */

.rv-availability-status {

	margin: 1rem 0;

	padding: 1rem;

	border-radius: 8px;

	font-weight: 500;

}



/* Old availability styles removed - using modern design above */



/* Alternatif aralar wrapper - modern tasarm */

.rv-alternatives-wrapper {

	background: color-mix(in srgb, var(--mhm-white), transparent 85%) !important;

	border: 1px solid color-mix(in srgb, var(--mhm-white), transparent 70%) !important;

	border-radius: 12px !important;

	padding: 1.25rem !important;

	margin-top: 1rem !important;

	backdrop-filter: blur(10px);

}



.rv-alternatives-title {

	font-size: 1rem;

	font-weight: 600;

	color: var(--mhm-white);

	margin-bottom: 1rem;

	letter-spacing: 0.025em;

}



.rv-alternatives-grid {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 1rem;

}



.rv-alternative-vehicle-card {

	background: color-mix(in srgb, var(--mhm-white), transparent 5%);

	border-radius: 12px;

	overflow: hidden;

	box-shadow: var(--mhm-shadow-base);

	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	cursor: pointer;

}



.rv-alternative-vehicle-card:hover {

	transform: translateY(-4px);

	box-shadow: var(--mhm-shadow-lg);

}



.rv-alternative-vehicle-image {

	width: 100%;

	height: 140px;

	overflow: hidden;

	background: var(--mhm-bg-secondary);

}



.rv-alternative-vehicle-image img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	transition: transform 0.3s ease;

}



.rv-alternative-vehicle-card:hover .rv-alternative-vehicle-image img {

	transform: scale(1.05);

}



.rv-alternative-vehicle-content {

	padding: 1rem;

}



.rv-alternative-vehicle-title {

	margin: 0 0 0.75rem 0;

	font-size: 0.9375rem;

	color: var(--mhm-text-primary);

	font-weight: 600;

	line-height: 1.3;

}



.rv-alternative-vehicle-features {

	display: flex;

	flex-wrap: wrap;

	gap: 0.375rem;

	margin-bottom: 0.75rem;

}



.rv-alternative-feature-tag {

	background: var(--mhm-bg-secondary);

	color: var(--mhm-secondary);

	padding: 0.25rem 0.5rem;

	border-radius: 12px;

	font-size: 0.6875rem;

	font-weight: 500;

	border: 1px solid var(--mhm-border-primary);

	text-transform: capitalize;

}



.rv-alternative-price-details {

	margin-bottom: 0.75rem;

	padding-top: 0.75rem;

	border-top: 1px solid var(--mhm-border-primary);

}



.rv-alternative-price-row {

	display: flex;

	justify-content: space-between;

	align-items: center;

	margin-bottom: 0.375rem;

}



.rv-alternative-price-row:last-child {

	margin-bottom: 0;

}



.rv-alternative-price-row.rv-alternative-price-total {

	padding-top: 0.5rem;

	border-top: 1px solid var(--mhm-border-primary);

	margin-top: 0.5rem;

}



.rv-alternative-price-label {

	font-size: 0.75rem;

	color: var(--mhm-text-tertiary);

}



.rv-alternative-price-value {

	font-size: 0.75rem;

	color: var(--mhm-primary);

	font-weight: 600;

}



.rv-alternative-price-amount {

	font-size: 0.875rem;

	color: var(--mhm-success);

	font-weight: 700;

}



.rv-select-alternative-btn {

	background: linear-gradient(135deg, var(--mhm-primary) 0%, var(--mhm-primary-dark) 100%);

	color: var(--mhm-btn-color);

	border: none;

	padding: 0.625rem 1rem;

	border-radius: 8px;

	font-size: 0.8125rem;

	font-weight: 600;

	cursor: pointer;

	width: 100%;

	transition: all 0.2s ease;

	box-shadow: 0 2px 4px color-mix(in srgb, var(--mhm-primary), transparent 70%);

}



.rv-select-alternative-btn:hover {

	background: linear-gradient(135deg, var(--mhm-primary-dark) 0%, var(--mhm-primary) 100%);

	box-shadow: 0 4px 8px color-mix(in srgb, var(--mhm-primary), transparent 60%);

	transform: translateY(-1px);

}



.rv-select-alternative-btn:active {

	transform: translateY(0);

}



/* ===== ALTERNATIVE VEHICLES ===== */

.rv-alternative-vehicles {

	margin-top: 1rem;

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	gap: 1rem;

}



.rv-alternative-vehicle {

	background: var(--mhm-bg-card);

	border: 1px solid var(--mhm-border-primary);

	border-radius: 8px;

	padding: 1rem;

	transition: all 0.3s ease;

	cursor: pointer;

}



.rv-alternative-vehicle:hover {

	border-color: var(--mhm-primary);

	box-shadow: 0 2px 8px color-mix(in srgb, var(--mhm-primary), transparent 85%);

	transform: translateY(-2px);

}



.rv-alternative-vehicle-image {

	width: 100%;

	height: 120px;

	overflow: hidden;

	border-radius: 6px;

	margin-bottom: 0.75rem;

}



.rv-alternative-vehicle-image img {

	width: 100%;

	height: 100%;

	object-fit: cover;

}



.rv-alternative-vehicle-info h4 {

	margin: 0 0 0.5rem 0;

	font-size: 1.1rem;

	color: var(--mhm-text-primary);

}



.rv-alternative-vehicle-price {

	color: var(--mhm-primary);

	font-weight: 600;

	margin: 0.25rem 0;

}



.rv-alternative-vehicle-total {

	color: var(--mhm-text-tertiary);

	font-size: 0.9rem;

	margin: 0.25rem 0 0.75rem 0;

}



.rv-select-alternative-btn {

	width: 100%;

	background: var(--mhm-primary);

	color: white;

	border: none;

	padding: 0.75rem;

	border-radius: 6px;

	font-weight: 500;

	cursor: pointer;

	transition: background 0.3s ease;

}



.rv-select-alternative-btn:hover {

	background: var(--mhm-primary-dark);

}



.rv-select-alternative-btn:active {

	transform: translateY(1px);

}



/* ===== RESPONSIVE ALTERNATIVES ===== */

@media (max-width: 782px) {

	.rv-alternative-vehicles {

		grid-template-columns: 1fr;

	}



	.rv-alternative-vehicle {

		padding: 0.75rem;

	}



	.rv-alternative-vehicle-image {

		height: 100px;

	}

}



/* ====================================

	RATING VE FAVORITE STYLES

	(VehiclesList'ten kopyalandı)

	==================================== */



/* Section Header - For Rating and Favorite */

.rv-section-header {

	display: flex;

	justify-content: space-between;

	align-items: center;

	margin-bottom: 1rem;

}



/* Vehicle Image Wrapper */

.rv-vehicle-image-wrapper {

	position: relative;

	border-radius: 8px;

	overflow: hidden;

}



/* Rating Overlay on Vehicle Image */

.rv-vehicle-card__rating-overlay {

	position: absolute;

	top: 0.75rem;

	left: 0.75rem;

	background: color-mix(in srgb, var(--mhm-black), transparent 25%);

	backdrop-filter: blur(8px);

	padding: 0.375rem 0.75rem;

	border-radius: 1.5rem;

	display: flex;

	align-items: center;

	gap: 0.375rem;

	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

}



.rv-stars {

	display: flex;

	gap: 0.125rem;

	align-items: center;

}



.rv-star {

	color: var(--mhm-gray-300) !important;

	stroke: var(--mhm-gray-300) !important;

	fill: none;

}

.rv-star.filled {

	color: var(--mhm-warning) !important;

	stroke: var(--mhm-warning) !important;

}



.rv-star-filled {

	color: var(--mhm-warning) !important;

	fill: var(--mhm-warning) !important;

	stroke: var(--mhm-warning) !important;

}



.rv-star-half {

	fill: #fbbf24;

	stroke: #fbbf24;

	background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);

	-webkit-background-clip: text;

	background-clip: text;

	color: transparent;

}



.rv-rating-count {

	font-size: 0.75rem;

	color: var(--mhm-white);

	font-weight: 500;

}



/* Favorite Button */

.rv-vehicle-card__favorite {

	background: none;

	border: none;

	cursor: pointer;

	padding: 0.5rem;

	border-radius: 50%;

	transition: all 0.2s ease-in-out;

	color: var(--mhm-error);

	opacity: 0.7;

	display: flex;

	align-items: center;

	justify-content: center;

}



.rv-vehicle-card__favorite:hover {

	opacity: 1;

	background: color-mix(in srgb, var(--mhm-error), transparent 90%);

	transform: scale(1.1);

}



.rv-vehicle-card__favorite.favorited,

.rv-vehicle-card__favorite.is-favorited {

	opacity: 1;

}



.rv-heart-icon {

	fill: none;

	stroke: currentColor;

	transition: all 0.2s ease-in-out;

}



.rv-heart-icon.favorited,

.rv-vehicle-card__favorite.favorited .rv-heart-icon,

.rv-vehicle-card__favorite.is-favorited .rv-heart-icon {

	fill: currentColor;

}



/* Loading State */

.rv-vehicle-card__favorite.is-loading {

	opacity: 0.5;

	pointer-events: none;

}



/* Responsive Rating & Favorite */

@media (max-width: 782px) {

	.rv-section-header {

		flex-direction: row;

		align-items: center;

		gap: 0.5rem;

	}



	.rv-vehicle-card__favorite {

		padding: 0.375rem;

	}



	.rv-heart-icon {

		width: 18px;

		height: 18px;

	}



	.rv-vehicle-card__rating-overlay {

		top: 0.5rem;

		left: 0.5rem;

		padding: 0.25rem 0.5rem;

	}



	.rv-star {

		width: 12px;

		height: 12px;

	}



	.rv-rating-count {

		font-size: 0.7rem;

	}

}



/* Logged-in user information */

.rv-logged-in-info {

	background: var(--mhm-bg-secondary);

	border: 1px solid var(--mhm-border-primary);

	border-radius: 8px;

	padding: 1rem;

	margin-bottom: 1rem;

}



.rv-user-details {

	display: flex;

	flex-direction: column;

	gap: 0.5rem;

}



.rv-user-name {

	font-size: 1rem;

	font-weight: 600;

	color: var(--mhm-text-primary);

}



.rv-user-name strong {

	color: var(--mhm-text-primary);

}



.rv-user-email {

	font-size: 0.875rem;

	color: var(--mhm-text-secondary);

	font-family: var(--mhm-font-mono);

}



/* Responsive */

@media (max-width: 782px) {

	.rv-logged-in-info {

		padding: 0.75rem;

	}



	.rv-user-name {

		font-size: 0.9rem;

	}



	.rv-user-email {

		font-size: 0.8rem;

	}

}



/* Button Animations */

@keyframes buttonPulse {

	0% {

		box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);

	}



	70% {

		box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);

	}



	100% {

		box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);

	}

}



.rv-btn-primary:active:not(:disabled) {

	color: var(--mhm-white) !important;

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);

	animation: buttonPulse 0.6s ease-out;

	transform: translateY(-1px) scale(0.98);

}



/* ========================================

	Field Hints for Date Inputs

	======================================== */



.rv-field-hint {

	display: block;

	font-size: 12px;

	color: #6c757d;

	font-weight: 400;

	margin-top: 4px;

	font-style: italic;

}



.rv-field input[type="date"]:placeholder-shown+.rv-field-hint,

.rv-field input[type="date"]:not(:placeholder-shown)+.rv-field-hint {

	display: none;

}



/* Alternative approach for date inputs */

.rv-field input[type="date"]:invalid {

	color: #6c757d;

}



.rv-field input[type="date"]:invalid::before {

	content: attr(data-placeholder);

	color: #6c757d;

	font-style: italic;

}



/* Date input styling */

.rv-date-input {

	cursor: pointer;

	background-color: var(--mhm-bg-card);

	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3e%3c/svg%3e");

	background-repeat: no-repeat;

	background-position: right 12px center;

	background-size: 16px;

	padding-right: 40px;

}



.rv-date-input:focus {

	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3e%3c/svg%3e");

}



/* ===== MODERN JQUERY UI DATEPICKER STYLES ===== */

.ui-datepicker {

	background: var(--mhm-bg-card);

	border: 2px solid var(--mhm-border-primary);

	border-radius: 12px;

	box-shadow: var(--mhm-shadow-lg);

	padding: 0;

	font-family: var(--mhm-font-primary);

	font-size: 14px;

	z-index: 9999;

	min-width: 280px;

}



/* ===== DATEPICKER HEADER - REDESIGNED ===== */

.ui-datepicker .ui-datepicker-header {

	background: linear-gradient(135deg, var(--mhm-primary) 0%, var(--mhm-primary-dark) 100%) !important;

	color: var(--mhm-btn-color) !important;

	border: none !important;

	border-radius: 10px 10px 0 0 !important;

	padding: 0 !important;

	min-height: 64px !important;

	height: 64px !important;

	text-align: center !important;

	position: relative !important;

	box-shadow: 0 2px 8px color-mix(in srgb, var(--mhm-btn-bg), transparent 80%) !important;

	display: flex !important;

	align-items: center !important;

	justify-content: center !important;

	overflow: visible !important;

}



/* Title - Perfectly centered between arrows */

.ui-datepicker .ui-datepicker-title {

	font-weight: 700 !important;

	font-size: 17px !important;

	line-height: 1.5 !important;

	color: var(--mhm-btn-color) !important;

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;

	letter-spacing: 0.5px !important;

	text-align: center !important;

	margin: 0 !important;

	padding: 0 !important;

	display: inline-block !important;

	width: auto !important;

	position: relative !important;

	z-index: 5 !important;

	white-space: nowrap !important;

	box-sizing: border-box !important;

}



/* Navigation Arrows - Fixed positions on sides */

.ui-datepicker .ui-datepicker-prev,

.ui-datepicker .ui-datepicker-next {

	position: absolute !important;

	top: 50% !important;

	transform: translateY(-50%) !important;

	width: 36px !important;

	height: 36px !important;

	background: color-mix(in srgb, var(--mhm-white), transparent 75%) !important;

	border: 2px solid color-mix(in srgb, var(--mhm-white), transparent 60%) !important;

	border-radius: 50% !important;

	cursor: pointer !important;

	display: flex !important;

	align-items: center !important;

	justify-content: center !important;

	transition: all 0.2s ease !important;

	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;

	z-index: 10 !important;

	margin: 0 !important;

	padding: 0 !important;

}



.ui-datepicker .ui-datepicker-prev:hover,

.ui-datepicker .ui-datepicker-next:hover {

	background: color-mix(in srgb, var(--mhm-white), transparent 60%) !important;

	border-color: color-mix(in srgb, var(--mhm-white), transparent 40%) !important;

	transform: translateY(-50%) scale(1.05) !important;

	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;

}



.ui-datepicker .ui-datepicker-prev {

	left: 16px !important;

	right: auto !important;

}



.ui-datepicker .ui-datepicker-next {

	right: 16px !important;

	left: auto !important;

}



/* Hide "Previous" and "Next" text labels completely */

.ui-datepicker .ui-datepicker-prev span,

.ui-datepicker .ui-datepicker-next span,

.ui-datepicker .ui-datepicker-prev a span,

.ui-datepicker .ui-datepicker-next a span,

.ui-datepicker .ui-datepicker-prev .ui-button-text,

.ui-datepicker .ui-datepicker-next .ui-button-text {

	display: none !important;

	visibility: hidden !important;

	width: 0 !important;

	height: 0 !important;

	overflow: hidden !important;

	text-indent: -9999px !important;

	position: absolute !important;

	clip: rect(0, 0, 0, 0) !important;

	font-size: 0 !important;

	line-height: 0 !important;

	opacity: 0 !important;

}



/* Hide any direct text content in prev/next buttons */

.ui-datepicker .ui-datepicker-prev,

.ui-datepicker .ui-datepicker-next {

	font-size: 0 !important;

	color: transparent !important;

	text-indent: -9999px !important;

}



/* Hide text in anchor elements */

.ui-datepicker .ui-datepicker-prev a,

.ui-datepicker .ui-datepicker-next a {

	font-size: 0 !important;

	text-indent: -9999px !important;

	color: transparent !important;

}



.ui-datepicker .ui-datepicker-prev .ui-icon,

.ui-datepicker .ui-datepicker-next .ui-icon {

	background: none !important;

	width: 18px !important;

	height: 18px !important;

	text-indent: 0 !important;

	color: var(--mhm-white) !important;

	font-weight: 700 !important;

	margin: 0 !important;

	display: flex !important;

	align-items: center !important;

	justify-content: center !important;

	position: relative !important;

}



.ui-datepicker .ui-datepicker-prev .ui-icon::before {

	content: '' !important;

	font-size: 20px !important;

	line-height: 1 !important;

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;

	display: block !important;

	visibility: visible !important;

	color: var(--mhm-white) !important;

}



.ui-datepicker .ui-datepicker-next .ui-icon::before {

	content: '' !important;

	font-size: 20px !important;

	line-height: 1 !important;

	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;

	display: block !important;

	visibility: visible !important;

	color: var(--mhm-white) !important;

}



/* Ensure icon container is visible */

.ui-datepicker .ui-datepicker-prev .ui-icon,

.ui-datepicker .ui-datepicker-next .ui-icon {

	opacity: 1 !important;

	visibility: visible !important;

}



.ui-datepicker table {

	width: 100%;

	border-collapse: collapse;

	margin: 0;

}



.ui-datepicker th,

.ui-datepicker td {

	padding: 8px;

	text-align: center;

	border: none;

}



.ui-datepicker th {

	background: var(--mhm-bg-secondary);

	color: var(--mhm-text-tertiary);

	font-weight: 600;

	font-size: 12px;

	text-transform: uppercase;

	letter-spacing: 0.5px;

}



.ui-datepicker td a {

	display: block;

	width: 32px;

	height: 32px;

	line-height: 32px;

	border-radius: 50%;

	text-decoration: none;

	color: var(--mhm-text-secondary);

	font-weight: 500;

	transition: all 0.2s ease;

	margin: 0 auto;

}



.ui-datepicker td a:hover {

	background: var(--mhm-bg-secondary);

	color: var(--mhm-text-primary);

}



.ui-datepicker .ui-datepicker-today a {

	background: color-mix(in srgb, var(--mhm-primary), transparent 90%);

	color: var(--mhm-primary);

	font-weight: 600;

}



.ui-datepicker .ui-datepicker-current-day a,

.ui-datepicker .ui-state-active {

	background: linear-gradient(135deg, var(--mhm-primary) 0%, var(--mhm-secondary) 100%) !important;

	color: var(--mhm-btn-color) !important;

	font-weight: 600 !important;

}



.ui-datepicker .ui-datepicker-other-month a {

	color: var(--mhm-gray-300);

}



.ui-datepicker .ui-datepicker-buttonpane {

	background: var(--mhm-bg-secondary);

	border-top: 1px solid var(--mhm-border-primary);

	padding: 12px 16px;

	border-radius: 0 0 10px 10px;

	text-align: center;

}



.ui-datepicker .ui-datepicker-buttonpane button {

	background: var(--mhm-btn-bg);

	color: var(--mhm-btn-color);

	border: none;

	padding: 8px 16px;

	border-radius: 6px;

	font-weight: 500;

	cursor: pointer;

	font-size: 13px;

	margin: 0 4px;

	transition: opacity 0.2s ease;

}



.ui-datepicker .ui-datepicker-buttonpane button:hover {

	opacity: 0.9;

}



/* Month/Year Select Dropdowns */

.ui-datepicker select {

	background: color-mix(in srgb, var(--mhm-white), transparent 85%) !important;

	border: 1px solid color-mix(in srgb, var(--mhm-white), transparent 70%) !important;

	border-radius: 4px !important;

	color: var(--mhm-btn-color) !important;

	font-weight: 600 !important;

	padding: 4px 8px !important;

	margin: 0 2px !important;

	text-align: center !important;

	text-align-last: center !important;

	-webkit-appearance: none !important;

	-moz-appearance: none !important;

	appearance: none !important;

}



.ui-datepicker select option {

	background: var(--mhm-primary) !important;

	color: var(--mhm-btn-color) !important;

	text-align: center !important;

}



/* Responsive DatePicker */

@media (max-width: 782px) {

	.ui-datepicker {

		min-width: 260px;

		font-size: 13px;

	}



	.ui-datepicker .ui-datepicker-header {

		padding: 12px;

	}



	.ui-datepicker .ui-datepicker-title {

		font-size: 15px;

	}



	.ui-datepicker td a {

		width: 28px;

		height: 28px;

		line-height: 28px;

		font-size: 13px;

	}

}



/* Notification System - Moved to global notifications.css */



/* ===== DATEPICKER FIXES ===== */

/* Robust fix for "V" symbols (theme icons) appearing in datepicker headers */

#ui-datepicker-div .ui-datepicker-calendar th::after,

#ui-datepicker-div .ui-datepicker-calendar th::before,

#ui-datepicker-div .ui-datepicker-calendar td::after,

#ui-datepicker-div .ui-datepicker-calendar td::before,

#ui-datepicker-div thead th::after,

#ui-datepicker-div thead th::before,

#ui-datepicker-div thead tr::after,

#ui-datepicker-div thead tr::before,

#ui-datepicker-div th span::after,

#ui-datepicker-div th span::before {

	content: none !important;

	display: none !important;

	background: none !important;

	border: none !important;

	width: 0 !important;

	height: 0 !important;

	opacity: 0 !important;

}



/* Force cache update: 2025-12-23 14:15 */

/* Force cache update: 2025-12-23 14:18 */

/* Fix for "V" symbols (repeating background image) on input fields */

/* Fix for "V" symbols (repeating background image) on input fields */

.rv-booking-form input.rv-date-input,

.rv-booking-form input.rv-input.hasDatepicker,

.rv-booking-form input[type="date"] {

	background-image: none !important;

	background-color: var(--mhm-white) !important;

	background-repeat: no-repeat !important;

	-webkit-appearance: none;

	-moz-appearance: none;

	appearance: none;

}



/* =========================================

	MODAL OVERRIDES (Applied when inside Booking Modal)

	========================================= */



/* Force Vertical Layout for Vehicle Card inside Modal */

#rv-booking-modal .rv-selected-vehicle {

	display: flex !important;

	flex-direction: column !important;

	height: auto !important;

	min-height: auto !important;

	align-items: flex-start !important;

}



/* Full Width Image */

#rv-booking-modal .rv-selected-vehicle .rv-vehicle-image-wrapper {

	width: 100% !important;

	height: 200px !important;

	margin: 0 0 15px 0 !important;

	flex: none !important;

}



/* Full Width Details */

#rv-booking-modal .rv-selected-vehicle .rv-vehicle-details {

	width: 100% !important;

	padding: 0 !important;

	margin: 0 !important;

	flex: none !important;

}



/* Features List Wrap */

#rv-booking-modal .rv-vehicle-features {

	display: flex !important;

	flex-direction: row !important;

	flex-wrap: wrap !important;

	gap: 8px !important;

	width: 100% !important;

	margin-bottom: 15px !important;

}



#rv-booking-modal .rv-feature-tag {

	white-space: nowrap !important;

	width: auto !important;

	flex: 0 0 auto !important;

}



/* Single Column Inputs */

#rv-booking-modal .rv-field-group {

	grid-template-columns: 1fr !important;

}



/* Ghost Datepicker Fix */

#ui-datepicker-div {

	display: none;

	/* Hide by default, jQuery will show() it */

	z-index: 99999 !important;

}



/* ==========================================================================
   PREMIUM CHECKOUT CONTRACT (Desktop 2-column, Mobile single-column)
   ========================================================================= */

.rv-booking-form-wrapper {
	--rv-heading-xl: 28px;
	--rv-heading-lg: 20px;
	--rv-heading-md: 16px;
	--rv-text-sm: 13px;

	max-width: 1280px;
	margin: var(--mhm-space-lg, 2rem) auto;
	padding: 0 var(--mhm-space-md, 1rem);
	background: #f5f7fb;
	border-radius: 20px;
	padding-top: var(--mhm-space-md, 1rem);
	padding-bottom: var(--mhm-space-md, 1rem);
	box-shadow: none;
	border: 0;
}

.rv-booking-form {
	background: transparent;
}

.rv-form-header {
	margin-bottom: 24px;
}

.rv-form-title {
	font-size: var(--rv-heading-xl);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.4px;
	color: #0f172a;
	border: 0;
	padding-bottom: 0;
}

.rv-booking-form-content.rv-checkout-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

.rv-checkout-sidebar {
	position: relative;
}

.rv-checkout-main {
	display: grid;
	gap: 32px;
}

@media (min-width: 992px) {
	.rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: minmax(0, 40%) minmax(0, 60%);
	}

	.rv-checkout-sidebar {
		position: sticky;
		top: 120px;
	}
}

.rv-card {
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	border: 1px solid #eef1f6;
	background: #ffffff;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.rv-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.09);
}

.rv-card-header {
	padding: var(--mhm-space-md, 1rem) var(--mhm-space-md, 1rem) 0;
}

.rv-card-header .rv-icon {
	color: #2a7be4;
}

.rv-card-body {
	padding: var(--mhm-space-md, 1rem);
}

.rv-card-footer {
	padding: 0 var(--mhm-space-md, 1rem) var(--mhm-space-md, 1rem);
}

.rv-section-title {
	font-size: var(--rv-heading-lg);
	font-weight: 600;
	letter-spacing: -0.3px;
}

.rv-label-premium,
.rv-price-label {
	font-size: var(--rv-text-sm);
}

.rv-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.8125rem;
	background: var(--mhm-bg-secondary, #f1f5f9);
	border: 1px solid var(--mhm-border-primary, #dbe1ea);
}

.rv-price-large {
	font-size: clamp(1.5rem, 2.2vw, 2.2rem);
	font-weight: 800;
	color: var(--mhm-primary, #137fec);
	line-height: 1.1;
}

.rv-cta-primary {
	height: 56px;
	border-radius: 14px;
	font-weight: 600;
	background: linear-gradient(135deg, #2a7be4, #1c5ed6);
	box-shadow: 0 10px 25px rgba(28, 94, 214, 0.35);
}

.rv-cta-primary:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(28, 94, 214, 0.4);
}

.rv-dates-combined-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--mhm-space-md, 1rem);
}

@media (max-width: 782px) {
	.rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: 1fr;
	}

	.rv-checkout-sidebar {
		order: -1;
	}

	.rv-dates-combined-layout {
		grid-template-columns: 1fr;
	}
}
/* ===== MOBILE RESPONSIVE OPTIMIZATIONS ===== */
@media (max-width: 782px) {
	.rv-booking-form-wrapper {
		margin: var(--mhm-space-md, 1rem) auto;
		padding: 0 var(--mhm-space-sm, 0.75rem);
	}

	.rv-booking-form-content.rv-checkout-layout {
		gap: var(--mhm-space-md, 1rem);
	}

	.rv-checkout-sidebar {
		position: static;
		top: auto;
		order: -1;
	}

	.rv-card {
		border-radius: 14px;
	}

	.rv-card-header,
	.rv-card-body,
	.rv-card-footer {
		padding-inline: var(--mhm-space-sm, 0.75rem);
	}

	.rv-dates-combined-layout {
		grid-template-columns: 1fr;
		gap: var(--mhm-space-sm, 0.75rem);
	}

	.rv-date-time-picker-wrapper {
		min-height: 52px;
	}

	.rv-inputs-inner {
		width: 100%;
	}

	.rv-section-title {
		font-size: 1rem;
	}

	.rv-price-large {
		font-size: 1.65rem;
	}
}
/* 4. Middle: Extras (Premium Selectable Rows) */
.rv-addons-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--mhm-space-sm, 0.75rem);
	border-top: 0;
}

.rv-addon-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--mhm-space-sm, 0.75rem);
	width: 100%;
	padding: var(--mhm-space-sm, 0.75rem);
	background: #ffffff;
	border: 1px solid #e6ebf2;
	border-radius: 14px;
	box-sizing: border-box;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
	cursor: pointer;
}

.rv-addon-item:hover,
.rv-addon-item:focus-within {
	transform: translateY(-1px);
	border-color: #cddaf0;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.07);
	background: #f8fbff;
}

.rv-addon-item:has(.rv-addon-checkbox:checked) {
	border-color: #2a7be4;
	background: #f2f7ff;
	box-shadow: 0 10px 24px rgba(42, 123, 228, 0.16);
}

.rv-addon-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #0f172a;
	line-height: 1.25;
}

.rv-addon-description {
	font-size: 0.82rem;
	color: #64748b;
	margin-top: 2px;
	line-height: 1.35;
}

.rv-addon-price {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	white-space: nowrap;
}

.rv-addon-checkbox {
	width: 18px;
	height: 18px;
	accent-color: #2a7be4;
}

.rv-addon-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
	white-space: nowrap;
}

.rv-addon-content {
	min-width: 0;
}

.rv-addon-icon-circle .rv-addon-generic-icon {
	width: 18px;
	height: 18px;
	color: #2a7be4;
	stroke: currentColor;
}

/* 5. Bottom: Payment Summary - Conversion Focus */
.rv-price-calculation {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #eef1f6;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	padding: 0;
	margin-top: 0;
}

.rv-price-calculation .rv-card-header {
	padding-top: var(--mhm-space-md, 1rem);
}

.rv-price-breakdown {
	display: grid;
	gap: 12px;
	padding-bottom: var(--mhm-space-sm, 0.75rem);
}

.rv-price-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: baseline;
	font-size: 0.95rem;
	color: #475569;
}

.rv-price-label {
	font-size: var(--rv-text-sm, 13px);
	color: #64748b;
}

.rv-price-value {
	font-weight: 700;
	color: #0f172a;
	text-align: right;
}

.rv-price-item.rv-total-price {
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid #dfe7f2;
	align-items: end;
}

.rv-price-item.rv-total-price .rv-price-label {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.2px;
}

.rv-price-item.rv-total-price .rv-price-value {
	font-size: clamp(1.85rem, 2.6vw, 2.5rem);
	font-weight: 800;
	color: #1f69de;
	line-height: 1;
}

.rv-price-item.rv-deposit-summary,
.rv-price-item.rv-remaining-summary {
	font-size: 0.86rem;
	padding-top: 8px;
}

.rv-price-item.rv-deposit-summary {
	border-top: 1px dashed #d7e2f2;
	margin-top: 8px;
}

.rv-price-item.rv-deposit-summary .rv-price-value,
.rv-price-item.rv-remaining-summary .rv-price-value {
	color: #0d9f5d;
}

.rv-price-calculation .rv-form-actions {
	margin-top: 0;
}

.rv-price-calculation .rv-submit-btn.rv-cta-primary {
	width: 100%;
	height: 56px;
	border-radius: 14px;
	font-size: 1.04rem;
	font-weight: 600;
	letter-spacing: -0.1px;
	color: #ffffff;
	background: linear-gradient(135deg, #2a7be4, #1c5ed6);
	border: 1px solid rgba(17, 86, 191, 0.45);
	box-shadow: 0 10px 25px rgba(28, 94, 214, 0.35);
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.rv-price-calculation .rv-submit-btn.rv-cta-primary:hover {
	filter: brightness(0.96);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(28, 94, 214, 0.4);
}

.rv-price-calculation .rv-submit-btn.rv-cta-primary:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(28, 94, 214, 0.32);
}
/* ===== PROFESSIONAL ALTERNATIVE VEHICLES (v4.5) ===== */

.rv-availability-error {

	background: transparent !important;

	box-shadow: none !important;

	padding: 0 !important;

	margin-top: 1.5rem;

}



.rv-availability-error-header {

	background: color-mix(in srgb, var(--mhm-error), transparent 95%);

	border: 1px solid color-mix(in srgb, var(--mhm-error), transparent 80%);

	color: var(--mhm-error-dark);

	padding: 1.25rem 1.5rem;

	border-radius: 12px;

	margin-bottom: 2rem;

	display: flex;

	align-items: center;

	gap: 0.75rem;

	box-shadow: var(--mhm-shadow-sm);

}



.rv-availability-error-header .dashicons {

	background: var(--mhm-error) !important;

	color: var(--mhm-white) !important;

	border-radius: 50%;

	padding: 4px;

	font-size: 16px;

	width: 24px;

	height: 24px;

	display: flex;

	align-items: center;

	justify-content: center;

}



/* Alternatives Wrapper */

.rv-alternatives-wrapper {

	margin-top: 2rem;

}



.rv-alternatives-title {

	font-size: 1.125rem;

	font-weight: 700;

	color: var(--mhm-text-primary);

	margin-bottom: 2rem;

	padding-bottom: 0.75rem;

	border-bottom: 2px solid var(--mhm-border-primary);

	display: flex;

	align-items: center;

	justify-content: center;

	/* Bal ortala */

	gap: 0.5rem;

}



/* ?? GRID LAYOUT - Perfectly Centered & No Overflow */

.rv-alternatives-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	width: 100%;

	max-width: 100%;

	margin: 0 auto;

	gap: 1.25rem;

	margin-bottom: 2rem;

	justify-content: center;

	box-sizing: border-box;

}



/* Premium Card Design */

.rv-alternative-vehicle-card {

	background: var(--mhm-bg-card);

	border: 1px solid var(--mhm-border-primary);

	border-radius: 16px;

	overflow: hidden;

	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	box-shadow: var(--mhm-shadow-base);

	display: flex;

	flex-direction: column;

	height: 100%;

	text-align: center;

	/* erikleri ortala */

}



.rv-alternative-vehicle-card:hover {

	transform: translateY(-8px);

	box-shadow: var(--mhm-shadow-lg);

	border-color: var(--mhm-primary);

}



/* Image Section */

.rv-alternative-vehicle-image {

	width: 100%;

	height: 180px;

	overflow: hidden;

	background: var(--mhm-bg-secondary);

	position: relative;

	display: flex;

	align-items: center;

	justify-content: center;

}



.rv-alternative-vehicle-image img {

	max-width: 90%;

	height: 100%;

	object-fit: contain;

	padding: 1rem;

	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}



.rv-alternative-vehicle-card:hover .rv-alternative-vehicle-image img {

	transform: scale(1.15);

}



/* Content Section */

.rv-alternative-vehicle-content {

	padding: 1.5rem;

	display: flex;

	flex-direction: column;

	align-items: center;

	/* Kart iini dikeyde ortala */

	flex-grow: 1;

}



.rv-alternative-vehicle-title {

	font-size: 1.125rem;

	font-weight: 700;

	color: var(--mhm-text-primary);

	margin: 0 0 1rem 0;

	height: 2.8rem;

	overflow: hidden;

	display: -webkit-box;

	-webkit-line-clamp: 2;

	line-clamp: 2;

	-webkit-box-orient: vertical;

	line-height: 1.4;

	text-align: center;

}



/* Features Tags */

.rv-alternative-vehicle-features {

	display: flex;

	flex-wrap: wrap;

	justify-content: center;

	/* Taglar ortala */

	gap: 0.5rem;

	margin-bottom: 1.25rem;

}



.rv-alternative-feature-tag {

	font-size: 0.7rem;

	text-transform: uppercase;

	font-weight: 700;

	padding: 3px 10px;

	background: var(--mhm-bg-secondary);

	color: var(--mhm-text-secondary);

	border-radius: 100px;

	letter-spacing: 0.025em;

}



/* Pricing Section */

.rv-alternative-price-details {

	width: 100%;

	margin-top: auto;

	padding-top: 1.25rem;

	border-top: 1px dashed var(--mhm-border-primary);

	margin-bottom: 1.5rem;

}



.rv-alternative-price-row {

	display: flex;

	justify-content: space-between;

	align-items: center;

	margin-bottom: 0.4rem;

}



.rv-alternative-price-label {

	font-size: 0.8rem;

	color: var(--mhm-text-tertiary);

}



.rv-alternative-price-value {

	font-size: 0.95rem;

	font-weight: 600;

	color: var(--mhm-text-secondary);

}



.rv-alternative-price-total .rv-alternative-price-label {

	font-weight: 700;

	color: var(--mhm-text-primary);

}



.rv-alternative-price-amount {

	font-size: 1.35rem;

	font-weight: 800;

	color: var(--mhm-primary);

}



/* Select Button */

.rv-select-alternative-btn {

	width: 100%;

	background: var(--mhm-gray-800);

	color: var(--mhm-white) !important;

	border: none;

	padding: 1rem;

	border-radius: 10px;

	font-weight: 700;

	font-size: 0.95rem;

	cursor: pointer;

	transition: all 0.3s ease;

	display: flex;

	align-items: center;

	justify-content: center;

	gap: 0.6rem;

	box-shadow: var(--mhm-shadow-sm);

}



.rv-select-alternative-btn:hover {

	background: var(--mhm-primary);

	box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mhm-primary), transparent 60%);

	transform: translateY(-2px);

}



/* ?? MOBILE RESPONSIVE */

@media (max-width: 1024px) {

	.rv-alternatives-grid {

		grid-template-columns: repeat(2, 1fr);

		gap: 1.25rem;

	}

}



@media (max-width: 782px) {

	.rv-alternatives-grid {

		grid-template-columns: 1fr;

		gap: 1.5rem;

	}



	.rv-alternative-vehicle-card {

		max-width: 400px;

		margin: 0 auto;

	}



	.rv-availability-error-header {

		font-size: 0.9rem;

		padding: 1rem;

	}

}



/* Weekend Price Difference Styling */

.rv-weekend-summary .rv-price-value {

	color: var(--mhm-warning-dark);

	/* Dark amber for visibility manually selected */

	font-weight: 600;

}



/* High Contrast Alerts & Badges Fix */

.rv-availability-alert,
.rv-availability-error-header,
.rv-alert-warning {

	background-color: #fff3cd !important;

	color: #856404 !important;

	border: 1px solid #ffeeba !important;

}

.rv-availability-alert.error,
.rv-alert-error {
	background-color: #f8d7da !important;
	color: #721c24 !important;
	border: 1px solid #f5c6cb !important;
}

.rv-recommended-vehicle-card {
	border: 2px solid #2271b1 !important;
	background-color: #f0f7ff !important;
}

/* ===== SELECTED VEHICLE SUMMARY (Premium Checkout) ===== */
.mhm-rentiva-booking-form .rv-selected-vehicle,
.rv-booking-form-wrapper .rv-selected-vehicle {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: var(--mhm-space-md, 1rem);
	padding: 0;
	border-radius: 18px;
}

.mhm-rentiva-booking-form .rv-sv__media,
.rv-booking-form-wrapper .rv-sv__media {
	width: 100%;
	max-width: 100%;
	position: relative;
	background: radial-gradient(ellipse at 50% 60%, #dce4f0 0%, #eef1f7 55%, #f5f7fb 100%);
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
}

.mhm-rentiva-booking-form .rv-sv__media::after,
.rv-booking-form-wrapper .rv-sv__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 58%, rgba(15, 23, 42, 0.28) 100%);
	pointer-events: none;
}

.mhm-rentiva-booking-form .rv-sv__img,
.rv-booking-form-wrapper .rv-sv__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mhm-rentiva-booking-form .rv-sv__favorite,
.rv-booking-form-wrapper .rv-sv__favorite {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	background: #ffffff;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dbe1ea;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
	color: #94a3b8;
	z-index: 10;
	padding: 0;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
}

.mhm-rentiva-booking-form .rv-sv__favorite .rv-heart-icon,
.rv-booking-form-wrapper .rv-sv__favorite .rv-heart-icon {
	display: block;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	stroke: currentColor;
	fill: none;
}

.mhm-rentiva-booking-form .rv-sv__favorite.is-active,
.rv-booking-form-wrapper .rv-sv__favorite.is-active {
	color: #ef4444;
}

.mhm-rentiva-booking-form .rv-sv__favorite.is-active .rv-heart-icon,
.rv-booking-form-wrapper .rv-sv__favorite.is-active .rv-heart-icon,
.mhm-rentiva-booking-form .rv-sv__favorite.is-favorited .rv-heart-icon,
.rv-booking-form-wrapper .rv-sv__favorite.is-favorited .rv-heart-icon {
	fill: currentColor;
	stroke: currentColor;
}

.mhm-rentiva-booking-form .rv-sv__premium-badge,
.rv-booking-form-wrapper .rv-sv__premium-badge {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__content,
.rv-booking-form-wrapper .rv-sv__content {
	width: 100%;
	padding: var(--mhm-space-lg, 2rem) var(--mhm-space-md, 1rem) var(--mhm-space-md, 1rem);
	display: grid;
	gap: 12px;
}

.mhm-rentiva-booking-form .rv-sv__top,
.rv-booking-form-wrapper .rv-sv__top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
}

.mhm-rentiva-booking-form .rv-sv__title-wrap,
.rv-booking-form-wrapper .rv-sv__title-wrap {
	min-width: 0;
}

.mhm-rentiva-booking-form .rv-sv__category,
.rv-booking-form-wrapper .rv-sv__category {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mhm-primary, #137fec);
}

.mhm-rentiva-booking-form .rv-sv__title,
.rv-booking-form-wrapper .rv-sv__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.3px;
}

.mhm-rentiva-booking-form .rv-sv__subtitle,
.rv-booking-form-wrapper .rv-sv__subtitle {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__rating-inline,
.mhm-rentiva-booking-form .rv-sv__rating,
.rv-booking-form-wrapper .rv-sv__rating-inline,
.rv-booking-form-wrapper .rv-sv__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	color: #64748b;
	flex-wrap: nowrap;
	justify-content: flex-end;
	max-width: 100%;
	white-space: nowrap;
}

.mhm-rentiva-booking-form .rv-sv__rating-overlay,
.rv-booking-form-wrapper .rv-sv__rating-overlay {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 10;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(4px);
	box-shadow: 0 6px 14px rgba(15, 23, 42, 0.14);
}

.mhm-rentiva-booking-form .rv-sv__rating-star,
.rv-booking-form-wrapper .rv-sv__rating-star {
	color: #f59e0b;
	font-size: 1rem;
	line-height: 1;
}

.mhm-rentiva-booking-form .rv-sv__rating-value,
.rv-booking-form-wrapper .rv-sv__rating-value {
	font-weight: 700;
	color: #1f2937;
}

.mhm-rentiva-booking-form .rv-sv__rating-count,
.rv-booking-form-wrapper .rv-sv__rating-count {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__meta,
.rv-booking-form-wrapper .rv-sv__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mhm-rentiva-booking-form .rv-sv__chip,
.rv-booking-form-wrapper .rv-sv__chip {
	background: #f1f4f9;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #334155;
}

.mhm-rentiva-booking-form .rv-sv__chip .rv-icon,
.mhm-rentiva-booking-form .rv-sv__chip svg,
.rv-booking-form-wrapper .rv-sv__chip .rv-icon,
.rv-booking-form-wrapper .rv-sv__chip svg {
	width: 14px;
	height: 14px;
	min-width: 14px;
	min-height: 14px;
	display: inline-block;
	flex: 0 0 14px;
}

.mhm-rentiva-booking-form .rv-sv__score,
.rv-booking-form-wrapper .rv-sv__score {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__score-number,
.rv-booking-form-wrapper .rv-sv__score-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--mhm-primary, #137fec);
}

.mhm-rentiva-booking-form .rv-sv__score-track,
.rv-booking-form-wrapper .rv-sv__score-track {
	height: 8px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
}

.mhm-rentiva-booking-form .rv-sv__score-fill,
.rv-booking-form-wrapper .rv-sv__score-fill {
	height: 100%;
	width: 95%;
	background: var(--mhm-primary, #137fec);
}

.mhm-rentiva-booking-form .rv-sv__score-label,
.rv-booking-form-wrapper .rv-sv__score-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: #64748b;
}

.mhm-rentiva-booking-form .rv-sv__price,
.rv-booking-form-wrapper .rv-sv__price {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__price-period,
.rv-booking-form-wrapper .rv-sv__price-period {
	display: none;
}

.mhm-rentiva-booking-form .rv-sv__placeholder,
.rv-booking-form-wrapper .rv-sv__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}

.mhm-rentiva-booking-form .rv-sv__placeholder-icon,
.rv-booking-form-wrapper .rv-sv__placeholder-icon {
	opacity: 0.2;
}

@media screen and (max-width: 768px) {
	.mhm-rentiva-booking-form .rv-sv__media,
	.mhm-rentiva-booking-form .rv-sv__content,
	.rv-booking-form-wrapper .rv-sv__media,
	.rv-booking-form-wrapper .rv-sv__content {
		max-width: 100%;
	}

	.mhm-rentiva-booking-form .rv-sv__title,
	.rv-booking-form-wrapper .rv-sv__title {
		font-size: 1.25rem;
	}
}

/* ===== PHASE-3E LAYOUT STABILIZATION (Responsive Grid + Overflow Fix) ===== */
.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
	display: grid;
	grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.rv-booking-form-wrapper .rv-checkout-sidebar {
	width: 100%;
	max-width: 420px;
	min-width: 320px;
}

.rv-booking-form-wrapper .rv-checkout-main {
	min-width: 0;
	width: 100%;
}

.rv-booking-form-wrapper .rv-dates-combined-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rv-booking-form-wrapper .rv-combined-field-column {
	min-width: 0;
}

.rv-booking-form-wrapper .rv-date-time-picker-wrapper {
	width: 100%;
	max-width: 100%;
}

.rv-booking-form-wrapper .rv-inputs-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(86px, auto);
	gap: 8px;
	width: 100%;
	min-width: 0;
	overflow: visible;
	align-items: center;
}

.rv-booking-form-wrapper .rv-input-ghost,
.rv-booking-form-wrapper .rv-select-ghost {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.rv-booking-form-wrapper .rv-field-separator {
	margin: 0;
}

@media (max-width: 1280px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
		gap: 32px;
	}

	.rv-booking-form-wrapper .rv-checkout-sidebar {
		max-width: 380px;
	}
}

@media (max-width: 1100px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: 320px minmax(0, 1fr);
		gap: 28px;
	}

	.rv-booking-form-wrapper .rv-checkout-sidebar {
		max-width: 320px;
		min-width: 320px;
	}

	.rv-booking-form-wrapper .rv-dates-combined-layout {
		grid-template-columns: 1fr;
	}

	.rv-booking-form-wrapper .rv-inputs-inner {
		grid-template-columns: 1fr;
	}

	.rv-booking-form-wrapper .rv-field-separator {
		display: none;
	}
}

@media (max-width: 992px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.rv-booking-form-wrapper .rv-checkout-sidebar {
		position: static;
		top: auto;
		order: -1;
		max-width: 100%;
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		gap: 20px;
	}

	.rv-booking-form-wrapper .rv-date-time-picker-wrapper {
		min-height: 52px;
	}
}



/* ===== PHASE-3D VISUAL PRECISION PASS ===== */
.rv-booking-form-wrapper {
	background: transparent;
	padding-top: 0;
	padding-bottom: 32px;
	border-radius: 0;
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}


.rv-booking-form-wrapper .rv-form-header {
	margin-bottom: 32px;
	text-align: left;
}

.rv-booking-form-wrapper .rv-form-title {
	font-size: clamp(2rem, 2.4vw, 2.9rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.6px;
	margin: 0;
}

.rv-booking-form-wrapper .rv-form-subtitle {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 0.98rem;
	font-weight: 500;
	color: #6b7a92;
	letter-spacing: -0.1px;
}

.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
	column-gap: 32px;
	row-gap: 32px;
}

.rv-booking-form-wrapper .rv-checkout-main {
	gap: 32px;
}

.rv-booking-form-wrapper .rv-card {
	border-radius: 18px;
	border: 1px solid #e8edf6;
	box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.10);
}

.rv-booking-form-wrapper .rv-card-header,
.rv-booking-form-wrapper .rv-card-body,
.rv-booking-form-wrapper .rv-card-footer {
	padding-left: 24px;
	padding-right: 24px;
}

.rv-booking-form-wrapper .rv-card-header {
	padding-top: 22px;
	padding-bottom: 16px;
	border-bottom: none;
	margin-bottom: 0;
}

.rv-booking-form-wrapper .rv-card-body {
	padding-top: 20px;
	padding-bottom: 24px;
}

.rv-booking-form-wrapper .rv-card-footer {
	padding-bottom: 24px;
}

/* Unified section title — normalize all ::before conflicts */
.rv-booking-form-wrapper .rv-section-title {
	display: flex;
	align-items: center;
	gap: 0;
	padding-inline-start: 0;
	position: static;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.25px;
	margin: 0;
}

.rv-booking-form-wrapper .rv-section-title::before {
	content: '';
	position: static;
	display: inline-block;
	flex-shrink: 0;
	width: 3px;
	height: 20px;
	background: var(--mhm-primary, #2563eb);
	border-radius: 2px;
	margin-right: 10px;
	transform: none;
	inset: auto;
}

/* Fix addons section title ::before conflict */
.rv-booking-form-wrapper .rv-addons .rv-section-title {
	padding-inline-start: 0;
	position: static;
}

.rv-booking-form-wrapper .rv-addons .rv-section-title::before {
	position: static;
	inset-inline-start: auto;
	transform: none;
	top: auto;
	background: var(--mhm-primary, #2563eb);
}

.rv-booking-form-wrapper .rv-addon-item {
	padding: 14px;
	min-height: 72px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-breakdown {
	gap: 14px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price {
	margin-top: 14px;
	padding-top: 18px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price .rv-price-label {
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: -0.2px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price .rv-price-value {
	font-size: clamp(2.1rem, 3vw, 2.8rem);
	color: #1b66df;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.rv-booking-form-wrapper .rv-price-calculation .rv-card-footer {
	padding-top: 8px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-submit-btn.rv-cta-primary {
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, #2a7be4, #1c5ed6);
	box-shadow: 0 12px 28px rgba(28, 94, 214, 0.36);
}

.rv-booking-form-wrapper .rv-price-calculation .rv-submit-btn.rv-cta-primary:hover {
	background: linear-gradient(135deg, #2572d7, #174fb8);
	box-shadow: 0 16px 32px rgba(28, 94, 214, 0.44);
}

.rv-booking-form-wrapper .rv-payment-disclaimer {
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
	color: #7a8ca8;
}

@media (max-width: 782px) {
	.rv-booking-form-wrapper {
		padding-bottom: 20px;
	}

	.rv-booking-form-wrapper .rv-form-header {
		margin-bottom: 24px;
	}

	.rv-booking-form-wrapper .rv-form-title {
		font-size: clamp(1.65rem, 6.8vw, 2.1rem);
	}

	.rv-booking-form-wrapper .rv-form-subtitle {
		font-size: 0.92rem;
	}

	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout,
	.rv-booking-form-wrapper .rv-checkout-main {
		gap: 24px;
	}

	.rv-booking-form-wrapper .rv-card-header,
	.rv-booking-form-wrapper .rv-card-body,
	.rv-booking-form-wrapper .rv-card-footer {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ===== PHASE-3G LAYOUT: VEHICLE + FORMS LEFT, STICKY SUMMARY RIGHT ===== */
.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 32px;
	align-items: start;
}

.rv-booking-form-wrapper .rv-checkout-vehicle {
	grid-column: 1;
	grid-row: 1;
	position: static;
	top: auto;
	max-width: none;
	min-width: 0;
}

.rv-booking-form-wrapper .rv-checkout-main {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
}

.rv-booking-form-wrapper .rv-checkout-summary {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: start;
	position: sticky;
	top: var(--mhm-space-8, 2.5rem);
	width: 100%;
	max-width: 340px;
}

.rv-booking-form-wrapper .rv-checkout-summary .rv-price-calculation {
	margin-bottom: 0;
}

/* Payment summary rows must be single-column list (label/value inside each row). */
.rv-booking-form-wrapper .rv-price-calculation .rv-price-breakdown {
	display: grid;
	grid-template-columns: 1fr !important;
	gap: 12px;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: baseline;
	gap: 10px;
}

@media (max-width: 1100px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
		gap: 24px;
	}

	.rv-booking-form-wrapper .rv-checkout-summary {
		max-width: 320px;
	}
}

@media (max-width: 992px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		display: flex;
		flex-direction: column;
		gap: var(--mhm-space-6, 1.5rem);
	}

	.rv-booking-form-wrapper .rv-checkout-vehicle,
	.rv-booking-form-wrapper .rv-checkout-main,
	.rv-booking-form-wrapper .rv-checkout-summary {
		grid-column: auto;
		grid-row: auto;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		position: static;
		top: auto;
	}
}

/* ===== PHASE-3H PAYMENT SUMMARY CLEANUP ===== */
.rv-booking-form-wrapper .rv-price-calculation .rv-price-item,
.rv-booking-form-wrapper .rv-price-calculation .rv-price-label,
.rv-booking-form-wrapper .rv-price-calculation .rv-price-value {
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item {
	padding: 2px 0;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 0 !important;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-deposit-summary {
	margin-top: 0;
	padding-top: 2px;
	border-top: 0 !important;
}

/* ===== PHASE-3M PAYMENT SUMMARY TYPOGRAPHY TUNE ===== */
.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price {
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 12px;
	align-items: center;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price .rv-price-label {
	font-size: 1.02rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
	white-space: nowrap;
	word-break: keep-all;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-total-price .rv-price-value {
	display: inline-flex;
	align-items: baseline;
	justify-content: flex-end;
	font-size: clamp(1.4rem, 1.9vw, 1.75rem);
	line-height: 1.05;
	white-space: nowrap;
	word-break: keep-all;
	color: #1f69de;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-deposit-summary .rv-price-label,
.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-deposit-summary .rv-price-value {
	color: #0d9f5d;
	font-weight: 600;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-remaining-summary .rv-price-label,
.rv-booking-form-wrapper .rv-price-calculation .rv-price-item.rv-remaining-summary .rv-price-value {
	color: #0f172a;
	font-weight: 600;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-form-actions {
	display: block;
	margin: 12px 0 0;
	padding: 0;
	border-top: 0 !important;
	background: transparent !important;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-submit-btn.rv-cta-primary {
	display: block;
	width: calc(100% - 14px);
	margin-left: auto;
	margin-right: auto;
}

.rv-booking-form-wrapper .rv-price-calculation .rv-payment-disclaimer {
	display: block;
	width: 100%;
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
	color: #7a8ca8;
}

/* ===== PHASE-3N AVAILABILITY STATUS POLISH ===== */
.rv-booking-form-wrapper .rv-availability-status {
	margin: 12px 0 0;
	padding: 0;
	border-radius: 14px;
	border: 1px solid #d7e6fb;
	background: #f8fbff;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
	overflow: hidden;
}

.rv-booking-form-wrapper .rv-availability-status .status-message:empty {
	display: none;
}

.rv-booking-form-wrapper .rv-availability-status.loading .status-message:empty {
	display: block;
}

.rv-booking-form-wrapper .rv-loading-message {
	background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
	color: #1e3a5f;
	box-shadow: none;
	border: 1px solid #cfe0fb;
	border-radius: 12px;
	font-weight: 600;
}

.rv-booking-form-wrapper .rv-loading-message .rv-spinner {
	border: 3px solid rgba(37, 99, 235, 0.2);
	border-top-color: #2563eb;
}

.rv-booking-form-wrapper .rv-availability-success {
	background: linear-gradient(135deg, #ecfdf3 0%, #f4fff8 100%);
	color: #14532d;
	box-shadow: none;
	border: 1px solid #bbf7d0;
}

.rv-booking-form-wrapper .rv-availability-success .dashicons {
	background: #16a34a;
	color: #ffffff;
}

.rv-booking-form-wrapper .rv-availability-error {
	background: transparent !important;
	color: inherit;
	box-shadow: none !important;
	border: none !important;
	padding: 0 !important;
}

.rv-booking-form-wrapper .rv-availability-error .rv-availability-error-header {
	background: #fff1f2 !important;
	border: 1px solid #fecdd3 !important;
	border-radius: 10px !important;
	color: #7f1d1d !important;
	margin-bottom: 0;
	padding: 10px 14px;
	box-shadow: none !important;
}

.rv-booking-form-wrapper .rv-availability-error .rv-availability-error-header .dashicons {
	background: #dc2626 !important;
	color: #ffffff !important;
}

/* ===== ALTERNATIVE VEHICLES — PREMIUM GRID CARDS ===== */
.rv-booking-form-wrapper .rv-alternatives-wrapper {
	margin-top: 16px !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	backdrop-filter: none;
}

.rv-booking-form-wrapper .rv-alternatives-title {
	font-size: 0.72rem;
	font-weight: 800;
	color: #495057;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e9ecef;
}

.rv-booking-form-wrapper .rv-alternatives-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
	border-color: #0d6efd !important;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-image {
	width: 100%;
	height: 120px;
	border-radius: 0;
	overflow: hidden;
	background: #f8f9fa;
	flex-shrink: 0;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-card:hover .rv-alternative-vehicle-image img {
	transform: scale(1.07);
}

.rv-booking-form-wrapper .rv-alternative-vehicle-content {
	padding: 10px 12px 12px;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.rv-booking-form-wrapper .rv-alternative-vehicle-title {
	margin: 0 0 6px;
	font-size: 0.82rem;
	line-height: 1.3;
	font-weight: 700;
	color: #212529;
}

.rv-booking-form-wrapper .rv-alt-meta-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 0 8px;
}

.rv-booking-form-wrapper .rv-alt-meta-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.68rem;
	font-weight: 500;
	color: #495057;
	background: #f1f3f5;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	padding: 2px 6px;
	white-space: nowrap;
}

.rv-booking-form-wrapper .rv-alt-meta-badge svg {
	flex-shrink: 0;
	color: #6c757d;
}

.rv-booking-form-wrapper .rv-alternative-price-details.rv-alternative-price-compact {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	flex: 1;
}

.rv-booking-form-wrapper .rv-alternative-price-details.rv-alternative-price-compact .rv-alternative-price-label {
	font-size: 0.68rem;
	color: #6c757d;
}

.rv-booking-form-wrapper .rv-alternative-price-details.rv-alternative-price-compact .rv-alternative-price-amount {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0d6efd;
}

.rv-booking-form-wrapper .rv-select-alternative-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
	padding: 7px 10px;
	font-size: 0.74rem;
	font-weight: 600;
	border-radius: 8px;
	background: #212529;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease;
	letter-spacing: 0.02em;
}

.rv-booking-form-wrapper .rv-select-alternative-btn:hover {
	background: #0d6efd;
}

.rv-booking-form-wrapper .rv-select-alternative-btn .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 1;
}

@media (max-width: 480px) {
	.rv-booking-form-wrapper .rv-alternatives-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== PHASE-3I DATE/TIME STACKED LAYOUT ===== */
.rv-booking-form-wrapper .rv-dates-times .rv-dates-combined-layout {
	grid-template-columns: 1fr !important;
	gap: 14px;
}

.rv-booking-form-wrapper .rv-dates-times .rv-combined-field-column {
	width: 100%;
	min-width: 0;
}

/* ===== PHASE-3J DATE INPUT OVERFLOW FIX ===== */
.rv-booking-form-wrapper .rv-dates-times .rv-date-time-picker-wrapper {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.rv-booking-form-wrapper .rv-dates-times .rv-inputs-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20px minmax(58px, 68px);
	gap: 3px;
	width: 100%;
	min-width: 0;
	padding-left: 2.25rem;
	padding-right: 0.4rem;
	box-sizing: border-box;
}

.rv-booking-form-wrapper .rv-dates-times .rv-input-ghost {
	min-width: 0;
	padding-right: 0.25rem;
}

.rv-booking-form-wrapper .rv-dates-times .rv-select-ghost {
	min-width: 0;
	max-width: 72px;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	text-align: left;
}

.rv-booking-form-wrapper .rv-dates-times .rv-field-separator {
	margin: 0;
	justify-self: center;
}

/* ===== PHASE-3K TIME ICON + FLAT TIME SELECT ===== */
.rv-booking-form-wrapper .rv-dates-times .rv-field-separator {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 0;
	color: #94a3b8;
}

.rv-booking-form-wrapper .rv-dates-times .rv-time-separator svg {
	width: 20px;
	height: 20px;
	display: block;
	color: var(--mhm-text-secondary, #64748b);
	stroke: currentColor;
	stroke-width: 2;
	opacity: 1;
}

.rv-booking-form-wrapper .rv-dates-times .rv-select-ghost.rv-select {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	background-image: none !important;
	border-radius: 0 !important;
	padding-left: 0.15rem;
	padding-right: 0.15rem;
}

/* ===== PHASE-3L LEFT COLUMN SPACING TIGHTEN ===== */
.rv-booking-form-wrapper .rv-checkout-main {
	gap: 20px;
}

.rv-booking-form-wrapper .rv-checkout-main .rv-form-section {
	margin-bottom: 0;
}

.rv-booking-form-wrapper .rv-checkout-vehicle {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.rv-booking-form-wrapper .rv-checkout-main {
		gap: 16px;
	}
}

/* ==========================================================================
   CONTAINER QUERY — Responsive layout based on element width, not viewport.
   Allows the form to adapt correctly inside narrow theme content columns
   (e.g. Twenty Twenty-Five default ~650px) regardless of viewport size.
   ========================================================================== */

.rv-booking-form-wrapper {
	container-type: inline-size;
	container-name: rv-booking-form;
}

/* 2-column layout: only when the wrapper itself is wide enough */
@container rv-booking-form (min-width: 760px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(364px, 448px);
		gap: 28px;
		align-items: start;
	}

	.rv-booking-form-wrapper .rv-checkout-vehicle {
		grid-column: 1;
		grid-row: 1;
	}

	.rv-booking-form-wrapper .rv-checkout-main {
		grid-column: 1;
		grid-row: 2;
	}

	.rv-booking-form-wrapper .rv-checkout-summary {
		grid-column: 2;
		grid-row: 1 / span 2;
		position: sticky;
		top: 2rem;
		width: 100%;
		max-width: 448px;
	}
}

/* Single-column layout: when wrapper is narrow */
@container rv-booking-form (max-width: 759px) {
	.rv-booking-form-wrapper .rv-booking-form-content.rv-checkout-layout {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.rv-booking-form-wrapper .rv-checkout-vehicle,
	.rv-booking-form-wrapper .rv-checkout-main,
	.rv-booking-form-wrapper .rv-checkout-summary {
		width: 100%;
		max-width: 100%;
		position: static;
		top: auto;
	}
}

/* ============================================================
   Date / Time / Location — Unified Table Layout
   ============================================================ */

.rv-bf-datetime-table {
	display: flex;
	flex-direction: column;
	border: 1px solid #dee2e6;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.rv-bf-datetime-row {
	display: grid;
	grid-template-columns: 40% 30% 30%;
	align-items: stretch;
	min-height: 72px;
}

.rv-bf-datetime-row + .rv-bf-datetime-row {
	border-top: 1px solid #dee2e6;
}

/* Left column: row label + optional location */
.rv-bf-datetime-rowhead {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 12px 16px;
	background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
	border-right: 1px solid #dee2e6;
	min-width: 0;
}

.rv-bf-datetime-rowtitle {
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #495057;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 4px;
}

.rv-bf-datetime-rowtitle .rv-info-icon-wrapper {
	display: inline-flex;
	color: #adb5bd;
	cursor: help;
}

.rv-bf-datetime-loc {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.84rem;
	font-weight: 700;
	color: #212529;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rv-bf-datetime-loc svg {
	flex-shrink: 0;
	color: #6c757d;
}

.rv-bf-datetime-loc--same {
	color: #6c757d;
	font-weight: 400;
	font-style: italic;
}

/* Date cell */
.rv-bf-datetime-cell {
	display: flex;
	align-items: center;
	padding: 12px 14px;
	border-right: 1px solid #dee2e6;
	min-width: 0;
}

.rv-bf-datetime-cell:last-child {
	border-right: none;
}

.rv-bf-datetime-cell--date {
	gap: 8px;
}

.rv-bf-datetime-cell--date .rv-input-ghost,
.rv-bf-datetime-cell--date .rv-date-input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 0.92rem;
	font-weight: 500;
	color: #212529;
	padding: 0;
	cursor: pointer;
	min-width: 0;
}

.rv-bf-datetime-cell--date .rv-input-ghost:focus,
.rv-bf-datetime-cell--date .rv-date-input:focus {
	outline: none;
}

.rv-bf-datetime-cal-icon {
	flex-shrink: 0;
	color: #adb5bd;
	display: flex;
	align-items: center;
}

.rv-bf-datetime-clock-icon {
	flex-shrink: 0;
	color: #adb5bd;
	display: flex;
	align-items: center;
	margin-right: 8px;
}

/* Time cell */
.rv-bf-datetime-cell--time {
	gap: 0;
}

.rv-bf-datetime-cell--time .rv-select-ghost,
.rv-bf-datetime-cell--time .rv-select {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 0.92rem;
	font-weight: 500;
	color: #212529;
	min-width: 0;
	cursor: pointer;
	padding: 0;
	-webkit-appearance: auto;
}

.rv-bf-datetime-cell--time .rv-select-ghost:focus,
.rv-bf-datetime-cell--time .rv-select:focus {
	outline: none;
}

.rv-bf-datetime-cell--time .rv-select-disabled {
	color: #6c757d;
	cursor: default;
}

/* Hover feedback */
.rv-bf-datetime-row--pickup:hover .rv-bf-datetime-cell,
.rv-bf-datetime-row--return:hover .rv-bf-datetime-cell {
	background: #f8f9fa;
	transition: background 0.15s ease;
}

/* Mobile: stack columns */
@media (max-width: 576px) {
	.rv-bf-datetime-row {
		grid-template-columns: 1fr;
	}

	.rv-bf-datetime-rowhead {
		border-right: none;
		border-bottom: 1px solid #dee2e6;
		padding: 8px 14px;
		flex-direction: row;
		align-items: center;
		gap: 8px;
	}

	.rv-bf-datetime-cell {
		border-right: none;
		border-bottom: 1px solid #dee2e6;
	}

	.rv-bf-datetime-row + .rv-bf-datetime-row .rv-bf-datetime-cell:last-child {
		border-bottom: none;
	}
}
