/**
 * CarRentory frontend styles.
 */

.carrentory-search-form,
.carrentory-search-form *,
.carrentory-results-wrap,
.carrentory-results-wrap *,
.carrentory-booking-form-wrap,
.carrentory-booking-form-wrap * {
	box-sizing: border-box;
}

.carrentory-search-form {
	margin: 0 0 24px;
	max-width: none;
	width: 100%;
}

.carrentory-search-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.carrentory-search-form--vertical .carrentory-search-grid {
	align-items: stretch;
	grid-template-columns: 1fr;
}

.carrentory-booking-form {
	display: grid;
	gap: 24px;
	margin: 0;
	max-width: none;
	width: 100%;
}

.carrentory-booking-columns {
	display: grid;
	gap: 18px;
	width: 100%;
}

.carrentory-booking-column {
	display: grid;
	gap: 18px;
	align-content: start;
	min-width: 0;
}

.carrentory-search-form__field,
.carrentory-search-field,
.carrentory-booking-form__field,
.carrentory-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.carrentory-search-form__label,
.carrentory-booking-form__field label {
	font-weight: 600;
	line-height: 1.3;
}

.carrentory-search-form__input,
.carrentory-search-form__select,
.carrentory-booking-form__field input,
.carrentory-booking-form__field textarea {
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	box-sizing: border-box;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.carrentory-booking-form__field textarea {
	min-height: 110px;
	resize: vertical;
}

.carrentory-search-form__actions,
.carrentory-search-actions,
.carrentory-booking-form__actions {
	align-self: end;
}

.carrentory-search-actions {
	grid-column: span 2;
}

.carrentory-search-form--vertical .carrentory-search-actions {
	align-self: stretch;
	grid-column: 1 / -1;
}

.carrentory-booking-form__field--full,
.carrentory-booking-form__actions {
	grid-column: 1 / -1;
}

.carrentory-search-form__submit,
.carrentory-booking-form__actions button,
.carrentory-submit-booking,
.carrentory-book-now {
	background: #1d2327;
	border: 1px solid #1d2327;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	line-height: 1.2;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
}

.carrentory-search-form__submit {
	min-height: 42px;
	width: 100%;
}

.carrentory-search-form__submit:hover,
.carrentory-booking-form__actions button:hover,
.carrentory-submit-booking:hover,
.carrentory-submit-booking:focus,
.carrentory-book-now:hover,
.carrentory-book-now:focus {
	background: #2c3338;
	color: #fff;
	text-decoration: none;
}

.carrentory-search-form__error,
.carrentory-filters-form__error {
	color: #b32d2e;
	font-size: 0.875rem;
	margin: 0;
}

.carrentory-search-form__notice {
	background: #fff5f5;
	border: 1px solid #f0b8bb;
	border-left: 4px solid #d63638;
	border-radius: 6px;
	color: #8a2424;
	font-size: 0.925rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 16px;
	padding: 10px 12px;
	width: 100%;
}

.carrentory-search-form__notice:empty,
.carrentory-search-form__error:empty,
.carrentory-filters-form__error:empty {
	display: none;
}

.carrentory-results-message,
.carrentory-booking-form__errors,
.carrentory-booking-success {
	border: 1px solid #dcdcde;
	border-left-width: 4px;
	margin: 16px 0;
	padding: 12px 14px;
}

.carrentory-results-message {
	border-left-color: #72aee6;
}

.carrentory-results-message--error,
.carrentory-booking-form__errors {
	border-left-color: #d63638;
}

.carrentory-booking-success {
	border-left-color: #00a32a;
	border-radius: 6px;
	background: #fff;
	display: grid;
	gap: 18px;
	padding: 22px;
}

.carrentory-booking-form__errors p {
	margin: 0 0 8px;
}

.carrentory-booking-form__errors p:last-child {
	margin-bottom: 0;
}

.carrentory-booking-success-title {
	line-height: 1.25;
	margin: 0;
}

.carrentory-booking-reference {
	border: 1px solid #b8e6bf;
	border-radius: 6px;
	background: #f0f8f1;
	color: #1d2327;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 14px;
	text-align: center;
}

.carrentory-booking-success-message {
	color: #1d2327;
	display: grid;
	gap: 6px;
	line-height: 1.45;
}

.carrentory-booking-success-message p {
	margin: 0;
}

.carrentory-booking-success-summary {
	border-top: 1px solid #dcdcde;
	display: grid;
	gap: 0;
	padding-top: 8px;
}

.carrentory-booking-success-row {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
	padding: 10px 0;
}

.carrentory-booking-success-label {
	color: #646970;
	font-weight: 700;
	line-height: 1.35;
}

.carrentory-booking-success-value {
	color: #1d2327;
	line-height: 1.35;
}

.carrentory-booking-success-payment {
	border-top: 1px solid #dcdcde;
	display: grid;
	gap: 8px;
	padding-top: 16px;
}

.carrentory-booking-success-payment h4 {
	line-height: 1.25;
	margin: 0;
}

.carrentory-booking-success-payment-title {
	color: #1d2327;
	font-weight: 700;
	line-height: 1.35;
}

.carrentory-booking-success-payment-text,
.carrentory-booking-success-payment-details {
	color: #50575e;
	line-height: 1.45;
}

.carrentory-booking-success-payment-details {
	background: #f6f7f7;
	border-radius: 4px;
	color: #1d2327;
	padding: 10px;
}

.carrentory-search-summary {
	align-items: center;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 24px 0 0;
	padding: 16px;
	width: 100%;
}

.carrentory-search-summary-route {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.carrentory-search-summary-item {
	min-width: 0;
}

.carrentory-search-summary-item-label {
	color: #646970;
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 4px;
}

.carrentory-search-summary-item-value {
	color: #1d2327;
	display: block;
	overflow-wrap: anywhere;
}

.carrentory-search-summary-dates {
	align-items: center;
	color: #50575e;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1.4;
	margin-top: 4px;
}

.carrentory-results-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
	margin-top: 24px;
	max-width: none;
	width: 100%;
}

.carrentory-filters-sidebar {
	align-self: start;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
	padding: 16px;
	width: 100%;
}

.carrentory-results-main {
	min-width: 0;
	width: 100%;
}

.carrentory-filters-form {
	display: grid;
	gap: 14px;
}

.carrentory-filters-form__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 2px;
	color: #10233a;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
}

.carrentory-filters-form__title::before {
	display: inline-block;
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	background-color: currentColor;
	content: "";
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16l-6 7v5l-4 2v-7L4 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16l-6 7v5l-4 2v-7L4 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-filters-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.carrentory-filters-form__label {
	font-weight: 600;
	line-height: 1.3;
}

.carrentory-filters-form__select,
.carrentory-filters-form__input {
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	box-sizing: border-box;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.carrentory-filters-form__actions {
	display: grid;
	gap: 10px;
}

.carrentory-filters-form__submit {
	background: #1d2327;
	border: 1px solid #1d2327;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	line-height: 1.2;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
}

.carrentory-filters-form__submit:hover {
	background: #2c3338;
	color: #fff;
}

.carrentory-filters-form__clear {
	color: inherit;
	text-align: center;
}

.carrentory-results-count {
	color: #1d2327;
	font-weight: 700;
	margin: 0 0 12px;
}

.carrentory-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.carrentory-active-filter {
	border: 1px solid #dcdcde;
	border-radius: 999px;
	background: #f6f7f7;
	color: #1d2327;
	display: inline-flex;
	gap: 4px;
	line-height: 1.3;
	padding: 6px 10px;
}

.carrentory-active-filter-label {
	font-weight: 700;
}

.carrentory-vehicle-results,
.carrentory-vehicle-results-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(var(--carrentory-vehicles-per-row, 3), minmax(0, 1fr));
	max-width: none;
	width: 100%;
}

.carrentory-booking-form-wrap {
	display: grid;
	gap: 24px;
	max-width: none;
	width: 100%;
}

.carrentory-vehicle-card,
.carrentory-booking-summary {
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
}

.carrentory-vehicle-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 18px;
	width: 100%;
}

.carrentory-booking-summary {
	padding: 18px;
}

.carrentory-booking-section {
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	display: grid;
	gap: 16px;
	padding: 18px;
	width: 100%;
}

.carrentory-booking-section h3 {
	line-height: 1.25;
	margin: 0;
}

.carrentory-booking-summary {
	gap: 0;
}

.carrentory-booking-summary-row {
	align-items: start;
	border-top: 1px solid #f0f0f1;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
	padding: 10px 0;
}

.carrentory-booking-summary-row:first-of-type {
	margin-top: 12px;
}

.carrentory-booking-summary-label {
	color: #646970;
	font-weight: 700;
	line-height: 1.35;
}

.carrentory-booking-summary-value {
	color: #1d2327;
	line-height: 1.35;
}

.carrentory-booking-summary-row--total {
	align-items: center;
	border-top-color: #dcdcde;
	margin-top: 4px;
	padding-top: 14px;
}

.carrentory-booking-summary-row--total .carrentory-booking-summary-label {
	color: #1d2327;
	font-size: 1rem;
}

.carrentory-booking-summary-row--total .carrentory-booking-summary-value {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
}

.carrentory-booking-summary .carrentory-price-breakdown {
	color: #50575e;
	font-size: 0.9375rem;
	margin-top: 12px;
}

.carrentory-customer-fields {
	display: grid;
	gap: 16px;
}

.carrentory-form-row {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.carrentory-submit-booking {
	width: 100%;
}

.carrentory-terms-field {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	line-height: 1.4;
	margin: 0;
}

.carrentory-terms-field input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 0.2em;
}

.carrentory-vehicle-card__image {
	background: #f6f7f7;
	overflow: hidden;
	width: 100%;
}

.carrentory-vehicle-card__image img {
	display: block;
	height: auto;
	width: 100%;
}

.carrentory-results-wrap--image-crop_16_9 .carrentory-vehicle-card__image {
	aspect-ratio: 16 / 9;
}

.carrentory-results-wrap--image-crop_square .carrentory-vehicle-card__image {
	aspect-ratio: 1 / 1;
}

.carrentory-results-wrap--image-crop_16_9 .carrentory-vehicle-card__image img,
.carrentory-results-wrap--image-crop_square .carrentory-vehicle-card__image img {
	height: 100%;
	object-fit: cover;
}

.carrentory-vehicle-card__content {
	min-width: 0;
}

.carrentory-vehicle-card__title,
.carrentory-booking-summary h3 {
	line-height: 1.25;
	margin: 0 0 14px;
}

.carrentory-vehicle-specs {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	margin: 0 0 18px;
}

.carrentory-vehicle-spec {
	border: 1px solid #dcdcde;
	border-radius: 4px;
	background: #f6f7f7;
	display: grid;
	gap: 2px;
	padding: 8px 10px;
}

.carrentory-vehicle-spec-label {
	color: #646970;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
}

.carrentory-vehicle-spec-value {
	color: #1d2327;
	line-height: 1.3;
}

.carrentory-vehicle-card__pricing,
.carrentory-booking-summary p {
	margin-bottom: 14px;
}

.carrentory-vehicle-price-box {
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #f6f7f7;
	margin: 0 0 12px;
	padding: 14px;
}

.carrentory-vehicle-price-label {
	color: #646970;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 4px;
}

.carrentory-vehicle-price-value {
	color: #1d2327;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.carrentory-vehicle-price-meta {
	color: #50575e;
	font-size: 0.9375rem;
	line-height: 1.35;
	margin-top: 4px;
}

.carrentory-vehicle-breakdown {
	border-top: 1px solid #dcdcde;
	display: grid;
	gap: 6px;
	padding-top: 10px;
}

.carrentory-vehicle-breakdown-row {
	align-items: center;
	color: #50575e;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) auto;
	line-height: 1.35;
}

.carrentory-vehicle-breakdown-row:last-child {
	color: #1d2327;
	font-weight: 700;
}

.carrentory-vehicle-breakdown-label,
.carrentory-vehicle-breakdown-value {
	min-width: 0;
}

.carrentory-vehicle-breakdown-value {
	text-align: right;
}

.carrentory-price-breakdown {
	border-top: 1px solid #dcdcde;
	list-style: none;
	margin: 14px 0 0;
	padding: 10px 0 0;
}

.carrentory-price-breakdown__item {
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 4px 0;
}

.carrentory-book-now {
	border-radius: 4px;
	box-shadow: none;
	margin-top: auto;
	padding: 12px 18px;
	width: 100%;
}

.carrentory-extras {
	display: grid;
	gap: 12px;
}

.carrentory-extra-item {
	align-items: center;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) 110px;
	padding: 14px;
}

.carrentory-extra-main {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.carrentory-extra-main label {
	align-items: center;
	display: flex;
	gap: 8px;
	margin: 0;
	min-width: 0;
}

.carrentory-extra-title {
	color: #1d2327;
	font-weight: 700;
	line-height: 1.3;
}

.carrentory-extra-price {
	color: #50575e;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9375rem;
	gap: 6px 10px;
	line-height: 1.35;
	padding-left: 24px;
}

.carrentory-extra-price span:first-child {
	color: #1d2327;
	font-weight: 700;
}

.carrentory-extra-quantity {
	display: grid;
	gap: 6px;
}

.carrentory-extra-quantity span {
	color: #646970;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
}

.carrentory-extra-quantity input[type="number"] {
	min-height: 38px;
	width: 100%;
}

.carrentory-payment-methods {
	display: grid;
	gap: 12px;
}

.carrentory-payment-method {
	align-items: flex-start;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 14px;
}

.carrentory-payment-method input[type="radio"] {
	flex: 0 0 auto;
	margin-top: 0.2em;
}

.carrentory-payment-method-content {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.carrentory-payment-method-title {
	color: #1d2327;
	font-weight: 700;
	line-height: 1.3;
}

.carrentory-payment-method-instructions,
.carrentory-payment-method-details {
	color: #50575e;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.carrentory-payment-method-details {
	background: #f6f7f7;
	border-radius: 4px;
	color: #1d2327;
	margin-top: 2px;
	padding: 10px;
}

@media (max-width: 991px) {
	.carrentory-results-layout {
		grid-template-columns: 1fr;
	}

	.carrentory-filters-form {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}

	.carrentory-filters-form__title {
		grid-column: 1 / -1;
	}

	.carrentory-filters-form__actions {
		align-self: end;
	}
}

@media (max-width: 900px) {
	.carrentory-search-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-search-actions {
		grid-column: 1 / -1;
	}

	.carrentory-vehicle-results,
	.carrentory-vehicle-results-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.carrentory-search-grid,
	.carrentory-booking-form,
	.carrentory-form-row {
		grid-template-columns: 1fr;
	}

	.carrentory-extra-item {
		grid-template-columns: 1fr;
	}

	.carrentory-booking-summary-row {
		grid-template-columns: 1fr;
	}

	.carrentory-booking-success-row {
		grid-template-columns: 1fr;
	}

	.carrentory-booking-summary-row--total .carrentory-booking-summary-value {
		text-align: left;
	}

	.carrentory-search-summary {
		align-items: stretch;
		flex-direction: column;
	}

	.carrentory-search-summary-route {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-filters-form {
		grid-template-columns: 1fr;
	}

	.carrentory-vehicle-results,
	.carrentory-vehicle-results-grid {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form__actions,
	.carrentory-search-actions {
		align-self: stretch;
	}

	.carrentory-search-form__submit,
	.carrentory-filters-form__submit,
	.carrentory-booking-form__actions button,
	.carrentory-submit-booking,
	.carrentory-book-now {
		width: 100%;
	}

	.carrentory-price-breakdown__item {
		display: grid;
		gap: 2px;
		grid-template-columns: 1fr;
	}
}

/* Production frontend polish. */
.carrentory-search-form,
.carrentory-search-summary,
.carrentory-filters-sidebar,
.carrentory-vehicle-card,
.carrentory-booking-section,
.carrentory-booking-success {
	border: 1px solid #dbe3ec;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.carrentory-search-form {
	padding: 22px;
}

.carrentory-search-grid {
	gap: 18px;
	align-items: end;
}

.carrentory-search-form__label,
.carrentory-filters-form__label,
.carrentory-booking-form__field label,
.carrentory-form-field label {
	color: #122033;
	font-size: 0.875rem;
	font-weight: 700;
}

.carrentory-search-form__input,
.carrentory-search-form__select,
.carrentory-filters-form__select,
.carrentory-filters-form__input,
.carrentory-booking-form__field input,
.carrentory-booking-form__field textarea,
.carrentory-extra-quantity input[type="number"] {
	border-color: #cfd8e3;
	border-radius: 6px;
	background-color: #fff;
	color: #182536;
	min-height: 44px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.carrentory-search-form__input:focus,
.carrentory-search-form__select:focus,
.carrentory-filters-form__select:focus,
.carrentory-filters-form__input:focus,
.carrentory-booking-form__field input:focus,
.carrentory-booking-form__field textarea:focus,
.carrentory-extra-quantity input[type="number"]:focus {
	border-color: #2f6fed;
	box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.12);
	outline: none;
}

.carrentory-search-form__submit,
.carrentory-filters-form__submit,
.carrentory-booking-form__actions button,
.carrentory-submit-booking,
.carrentory-book-now {
	border-color: #0f1f33;
	border-radius: 6px;
	background: #0f1f33;
	box-shadow: 0 8px 18px rgba(15, 31, 51, 0.16);
	color: #fff;
	min-height: 44px;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.carrentory-search-form__submit:hover,
.carrentory-search-form__submit:focus,
.carrentory-filters-form__submit:hover,
.carrentory-filters-form__submit:focus,
.carrentory-booking-form__actions button:hover,
.carrentory-booking-form__actions button:focus,
.carrentory-submit-booking:hover,
.carrentory-submit-booking:focus,
.carrentory-book-now:hover,
.carrentory-book-now:focus {
	border-color: #172f4d;
	background: #172f4d;
	box-shadow: 0 10px 22px rgba(15, 31, 51, 0.2);
	color: #fff;
}

.carrentory-results-wrap::before,
.carrentory-results-wrap::after,
.carrentory-vehicle-results::before,
.carrentory-vehicle-results::after {
	display: none;
	content: none;
}

.carrentory-search-summary {
	border-left: 4px solid #2f6fed;
	padding: 18px 20px;
}

.carrentory-listing-intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 1px solid #d9e4f0;
	border-left: 4px solid #2f6fed;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(16, 35, 58, 0.06);
	margin: 0 0 18px;
	padding: 18px 20px;
}

.carrentory-listing-intro__content {
	min-width: 0;
	flex: 1 1 auto;
}

.carrentory-listing-intro__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.carrentory-listing-intro__actions .carrentory-results-count {
	margin: 0;
	white-space: nowrap;
}

.carrentory-listing-intro__modify {
	min-height: 42px;
	border: 1px solid #2f6fed;
	border-radius: 6px;
	background: #fff;
	color: #184fb4;
	cursor: pointer;
	line-height: 1.2;
	padding: 10px 14px;
}

@media (max-width: 1180px) {
	.carrentory-listing-intro {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.carrentory-listing-intro__actions {
		justify-content: space-between;
		width: 100%;
	}
}

.carrentory-listing-intro__modify:hover,
.carrentory-listing-intro__modify:focus,
.carrentory-listing-intro__modify[aria-expanded="true"] {
	background: #f3f7ff;
	color: #173d7a;
	outline: none;
}

.carrentory-results-wrap > .carrentory-active-filters {
	margin: 0 0 14px;
}

.carrentory-results-wrap > .carrentory-active-filters + .carrentory-results-layout {
	margin-top: 0;
}

.carrentory-listing-intro__title {
	margin: 0 0 6px;
	color: #122033;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.25;
}

.carrentory-listing-intro__text {
	margin: 0;
	color: #526176;
	line-height: 1.5;
}

.carrentory-search-summary-route {
	color: #122033;
}

.carrentory-search-summary-dates {
	color: #526176;
}

.carrentory-results-layout {
	align-items: start;
	gap: 22px;
}

.carrentory-filters-sidebar {
	padding: 18px;
}

.carrentory-filters-form {
	gap: 13px;
}

.carrentory-filters-form__clear {
	color: #2f6fed;
	font-weight: 600;
	text-decoration: none;
}

.carrentory-filters-form__clear:hover,
.carrentory-filters-form__clear:focus {
	color: #184fb4;
	text-decoration: underline;
}

.carrentory-active-filter {
	border-color: #cfe0ff;
	background: #f3f7ff;
	color: #173d7a;
}

.carrentory-results-count {
	color: #122033;
	font-size: 1rem;
}

.carrentory-vehicle-card {
	gap: 14px;
	padding: 14px;
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.carrentory-vehicle-card:hover {
	border-color: #c8d6e6;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.carrentory-vehicle-card__image {
	border-radius: 6px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.carrentory-vehicle-card__image img {
	padding: 6px;
}

.carrentory-vehicle-card__title {
	color: #122033;
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 12px;
}

.carrentory-vehicle-specs {
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.carrentory-vehicle-spec {
	border-color: #edf1f5;
	border-radius: 6px;
	background: #fbfcfe;
	padding: 8px;
}

.carrentory-vehicle-spec-label {
	color: #66758a;
	font-size: 0.78rem;
}

.carrentory-vehicle-spec-value {
	color: #172033;
	font-weight: 700;
}

.carrentory-vehicle-price-box {
	border-color: #e3e9f0;
	background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fb 100%);
}

.carrentory-vehicle-price-value {
	color: #0f1f33;
	font-size: 1.65rem;
}

.carrentory-vehicle-price-value--request {
	font-size: 1.2rem;
	line-height: 1.25;
}

.carrentory-vehicle-breakdown {
	border-top-color: #e6edf4;
}

.carrentory-book-now {
	display: block;
	margin-top: auto;
}

.carrentory-search-to-book {
	display: block;
	margin-top: auto;
	border: 1px solid #d9e4f0;
	border-radius: 6px;
	background: #f7fafc;
	color: #526176;
	font-weight: 800;
	line-height: 1.2;
	padding: 12px 14px;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

.carrentory-booking-form-wrap {
	gap: 22px;
}

.carrentory-booking-section {
	gap: 18px;
	padding: 20px;
}

.carrentory-booking-section h3,
.carrentory-booking-summary h3 {
	color: #122033;
	font-size: 1.05rem;
	font-weight: 800;
}

.carrentory-booking-summary-row,
.carrentory-booking-success-row {
	border-top-color: #edf1f5;
}

.carrentory-booking-summary-label,
.carrentory-booking-success-label {
	color: #607086;
}

.carrentory-booking-summary-label,
.carrentory-booking-summary-row--total .carrentory-booking-summary-label {
	font-size: 15px;
}

.carrentory-booking-section.carrentory-booking-summary {
	gap: 5px;
}

.carrentory-booking-summary-row--total {
	border-top-color: #dbe3ec;
}

.carrentory-booking-summary-row--total .carrentory-booking-summary-value {
	color: #0f1f33;
}

.carrentory-extra-item,
.carrentory-payment-method {
	border-color: #dbe3ec;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.carrentory-extra-item:hover,
.carrentory-payment-method:hover {
	border-color: #b9c8d9;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.carrentory-payment-method:has(input[type="radio"]:checked) {
	border-color: #9bd3aa;
	background: #f3fbf5;
}

.carrentory-extra-title,
.carrentory-payment-method-title {
	color: #122033;
}

.carrentory-payment-method-details {
	border: 1px solid #edf1f5;
	background: #f8fafc;
}

.carrentory-terms-field {
	align-items: center;
	border: 1px solid #edf1f5;
	border-radius: 8px;
	background: #fbfcfe;
	padding: 14px;
}

.carrentory-booking-success {
	position: relative;
	border-left-color: #22a55a;
	padding: 26px;
}

.carrentory-booking-success::before {
	display: grid;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 4px;
	border: 2px solid #22a55a;
	border-radius: 999px;
	background: #f0fbf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23167c3c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
	color: #167c3c;
	content: "";
}

.carrentory-booking-success-title,
.carrentory-booking-success-message {
	text-align: center;
}

.carrentory-booking-reference {
	border-color: #bde7c8;
	background: #f1fbf4;
	color: #0f3f22;
	font-size: 1.45rem;
}

.carrentory-booking-success-summary,
.carrentory-booking-success-payment {
	border: 1px solid #edf1f5;
	border-radius: 8px;
	background: #fff;
	padding: 12px 16px;
}

.carrentory-booking-success-payment-details {
	border: 1px solid #edf1f5;
	background: #f8fafc;
}

/* Mockup-style refinements. */
.carrentory-book-now,
.carrentory-book-now:hover,
.carrentory-book-now:focus,
.carrentory-book-now:visited {
	text-decoration: none !important;
}

.carrentory-search-form__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.carrentory-search-form__label::before,
.carrentory-search-form__submit::before,
.carrentory-book-now::before,
.carrentory-submit-booking::before {
	display: inline-block;
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	background-color: currentColor;
	content: "";
	vertical-align: -2px;
}

.carrentory-search-form__submit::before {
	margin-right: 7px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16 16 4 4'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16 16 4 4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-search-form__label[for*="location"]::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-search-form__label[for*="date"]::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-search-form__label[for*="time"]::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-book-now::before,
.carrentory-submit-booking::before {
	margin-right: 7px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7V6a4 4 0 0 1 8 0v1'/%3E%3Crect x='5' y='7' width='14' height='14' rx='2'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7V6a4 4 0 0 1 8 0v1'/%3E%3Crect x='5' y='7' width='14' height='14' rx='2'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec {
	position: relative;
	padding-left: 32px;
}

.carrentory-vehicle-spec::before {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 14px;
	height: 14px;
	background-color: #10233a;
	content: "";
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17h16M6 17l2-7h8l2 7M8 17v2M16 17v2M9 10V7h6v3'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17h16M6 17l2-7h8l2 7M8 17v2M16 17v2M9 10V7h6v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec {
	padding-left: 10px;
}

.carrentory-vehicle-spec::before {
	display: none;
	content: none;
}

.carrentory-vehicle-spec-value {
	display: inline-flex;
	position: relative;
	align-items: center;
	gap: 7px;
	width: fit-content;
}

.carrentory-vehicle-spec-value::before {
	display: inline-block;
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	background-color: #10233a;
	content: "";
}

.carrentory-vehicle-spec--year .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec--fuel-type .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v18M4 12h11M15 8h2l3 3v7a2 2 0 0 0 4 0v-5l-2-2'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22V4a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v18M4 12h11M15 8h2l3 3v7a2 2 0 0 0 4 0v-5l-2-2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec--transmission .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M12 19v3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M2 12h3M19 12h3M4.9 19.1 7 17M17 7l2.1-2.1'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M12 19v3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M2 12h3M19 12h3M4.9 19.1 7 17M17 7l2.1-2.1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec--passenger-seats .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec--doors .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10v18H7zM15 12h.01'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10v18H7zM15 12h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-vehicle-spec--luggage .carrentory-vehicle-spec-value::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1M6 6h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1M6 6h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (min-width: 901px) {
	.carrentory-booking-columns {
		grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
		gap: 18px;
		align-items: start;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-card,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-card {
		gap: 12px;
		padding: 12px;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-results,
	.carrentory-results-wrap--cols-3 .carrentory-vehicle-results-grid,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-results,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-results-grid {
		gap: 12px;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-card__title,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-card__title {
		font-size: 1.05rem;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-specs,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-specs {
		gap: 6px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-spec,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-spec {
		min-width: 0;
		padding: 7px;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-spec-value,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-spec-value {
		max-width: 100%;
		font-size: 0.92rem;
		gap: 5px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-spec-value::before,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-spec-value::before {
		width: 13px;
		height: 13px;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-price-label,
	.carrentory-results-wrap--cols-3 .carrentory-vehicle-price-meta,
	.carrentory-results-wrap--cols-3 .carrentory-vehicle-breakdown,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-price-label,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-price-meta,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-breakdown {
		font-size: 0.82rem;
	}

	.carrentory-results-wrap--cols-3 .carrentory-vehicle-price-value,
	.carrentory-results-wrap--cols-4 .carrentory-vehicle-price-value {
		font-size: 1.35rem;
	}

	.carrentory-results-wrap--cols-4 .carrentory-vehicle-card__title {
		font-size: 1rem;
	}

	.carrentory-results-wrap--cols-4 .carrentory-vehicle-spec-value {
		font-size: 0.86rem;
	}

	.carrentory-results-wrap--cols-4 .carrentory-vehicle-price-value {
		font-size: 1.22rem;
	}

	.carrentory-vehicle-spec-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.carrentory-vehicle-spec-value::after {
		position: absolute;
		bottom: calc(100% + 8px);
		left: 50%;
		z-index: 3;
		max-width: 180px;
		border-radius: 4px;
		background: #10233a;
		box-shadow: 0 8px 18px rgba(16, 35, 58, 0.18);
		color: #fff;
		content: attr(data-carrentory-spec-label);
		font-size: 0.76rem;
		font-weight: 700;
		line-height: 1.2;
		opacity: 0;
		padding: 6px 8px;
		pointer-events: none;
		text-align: center;
		transform: translate(-50%, 4px);
		transition: opacity 0.16s ease, transform 0.16s ease;
		white-space: nowrap;
	}

	.carrentory-vehicle-spec-value:hover::after,
	.carrentory-vehicle-spec-value:focus::after {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

@media (max-width: 900px) {
	.carrentory-vehicle-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.carrentory-search-form,
	.carrentory-booking-section,
	.carrentory-booking-success {
		padding: 16px;
	}

	.carrentory-search-grid {
		grid-template-columns: 1fr;
	}

	.carrentory-vehicle-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-search-actions {
		grid-column: 1 / -1;
	}

	.carrentory-extra-item {
		grid-template-columns: 1fr;
	}
}

/* Mobile customer-flow refinements. */
.carrentory-mobile-results-actions,
.carrentory-mobile-total-bar {
	display: none;
}

.carrentory-field-invalid,
.carrentory-field-invalid:focus {
	border-color: #d63638 !important;
	box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.18) !important;
	outline: 2px solid transparent;
}

.carrentory-field-invalid-wrap.carrentory-payment-methods,
.carrentory-field-invalid-wrap.carrentory-terms-field {
	border-color: #d63638;
	box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.12);
}

.carrentory-field-error {
	color: #b32d2e;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 6px 0 0;
}

.carrentory-terms-field {
	flex-wrap: wrap;
}

.carrentory-terms-field .carrentory-field-error,
.carrentory-payment-methods > .carrentory-field-error {
	flex-basis: 100%;
	width: 100%;
}

.carrentory-field-invalid-wrap .carrentory-payment-method {
	border-color: #d63638;
}

.carrentory-date-picker-wrap {
	position: relative;
	display: flex;
	width: 100%;
}

.carrentory-date-picker-field {
	position: relative;
}

.carrentory-date-picker-wrap .carrentory-search-form__input {
	padding-right: 48px;
}

.carrentory-date-picker-trigger {
	position: absolute;
	top: 50%;
	right: 8px;
	display: inline-grid;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #526176;
	cursor: pointer;
	padding: 0;
	transform: translateY(-50%);
}

.carrentory-date-picker-trigger span {
	display: block;
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-date-picker-trigger:hover,
.carrentory-date-picker-trigger:focus {
	background: #eef3f8;
	color: #10233a;
	outline: none;
}

.carrentory-date-picker-popup {
	position: fixed;
	z-index: 1000000;
	top: 0;
	left: 0;
	width: min(360px, calc(100vw - 24px));
	max-height: calc(100vh - 24px);
	overflow-y: auto;
	border: 1px solid #cfd8e3;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
	padding: 12px;
}

.carrentory-date-picker-header {
	display: grid;
	align-items: center;
	grid-template-columns: 44px 1fr 44px;
	gap: 8px;
	margin-bottom: 10px;
	text-align: center;
}

.carrentory-date-picker-header strong {
	color: #10233a;
	font-size: 0.98rem;
	line-height: 1.2;
	text-transform: capitalize;
}

.carrentory-date-picker-nav {
	display: inline-grid;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid #dbe3ec;
	border-radius: 8px;
	background: #f8fafc;
	color: #10233a;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1;
	padding: 0;
}

body button.carrentory-date-picker-nav:hover,
body button.carrentory-date-picker-nav:focus {
	border-color: #2f6fed;
	background: #f3f7ff;
	color: #184fb4;
	outline: none;
}

.carrentory-date-picker-nav span {
	display: block;
	width: 18px;
	height: 18px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-date-picker-nav[data-carrentory-date-nav="-1"] span {
	transform: rotate(180deg);
}

.carrentory-date-picker-weekdays,
.carrentory-date-picker-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 4px;
}

.carrentory-date-picker-weekdays {
	margin-bottom: 4px;
}

.carrentory-date-picker-weekdays span {
	color: #607086;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.2;
	padding: 4px 0;
	text-align: center;
	text-transform: uppercase;
}

.carrentory-date-picker-day {
	display: inline-grid;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #fff;
	color: #10233a;
	cursor: pointer;
	font-weight: 700;
	padding: 0;
}

.carrentory-date-picker-day:hover,
.carrentory-date-picker-day:focus {
	border-color: #2f6fed;
	background: #f3f7ff;
	outline: none;
}

.carrentory-date-picker-day.is-outside {
	color: #9aa8b7;
}

.carrentory-date-picker-day.is-selected {
	border-color: #0f1f33;
	background: #0f1f33;
	color: #fff;
}

.carrentory-date-picker-day:disabled {
	background: #f6f7f9;
	color: #c3c4c7;
	cursor: not-allowed;
}

.carrentory-search-summary-label {
	color: #2f6fed;
	display: none;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 6px;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.carrentory-listing-intro {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.carrentory-listing-intro__actions {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.carrentory-listing-intro__modify {
		flex: 1 1 180px;
	}

	.carrentory-mobile-results-actions {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin: 12px 0;
	}

	.carrentory-mobile-results-actions button[hidden] {
		display: none;
	}

	.carrentory-mobile-results-actions--single {
		grid-template-columns: 1fr;
	}

	.carrentory-mobile-panel-toggle {
		border: 1px solid #cfd8e3;
		border-radius: 8px;
		background: #fff;
		color: #10233a;
		cursor: pointer;
		font-weight: 800;
		line-height: 1.2;
		min-height: 44px;
		padding: 11px 14px;
		text-align: center;
		width: 100%;
	}

	.carrentory-mobile-panel-toggle[aria-expanded="true"] {
		border-color: #2f6fed;
		background: #f3f7ff;
		color: #173d7a;
	}

	.carrentory-mobile-search-panel-ready:not(.is-open),
	.carrentory-mobile-panels-ready .carrentory-filters-sidebar:not(.is-open) {
		display: none;
	}

	.carrentory-search-summary {
		gap: 8px;
		margin-top: 0;
		padding: 14px;
	}

	.carrentory-search-summary-label {
		display: block;
	}

	.carrentory-search-summary-route {
		font-size: 16px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.carrentory-search-form__input[type="date"],
	.carrentory-search-form__input[name="carrentory_pickup_date"],
	.carrentory-search-form__input[name="carrentory_dropoff_date"] {
		min-height: 44px;
		padding: 8px 48px 8px 10px;
		font-size: 16px;
		line-height: 1.2;
	}

	.carrentory-search-form__input[type="date"]::-webkit-calendar-picker-indicator {
		width: 28px;
		height: 28px;
		padding: 4px;
		cursor: pointer;
	}

	.carrentory-search-summary-dates {
		font-size: 0.9rem;
		gap: 6px;
	}

	.carrentory-results-layout {
		display: block;
		margin-top: 12px;
	}

	.carrentory-filters-sidebar {
		margin: 0 0 14px;
		padding: 14px;
	}

	.carrentory-results-count,
	.carrentory-active-filters {
		margin-bottom: 10px;
	}

	.carrentory-vehicle-results,
	.carrentory-vehicle-results-grid {
		gap: 14px;
	}

	.carrentory-vehicle-card {
		gap: 12px;
		padding: 12px;
	}

	.carrentory-vehicle-specs {
		gap: 7px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 12px;
	}

	.carrentory-vehicle-spec {
		min-width: 0;
		padding: 7px;
	}

	.carrentory-vehicle-spec-label,
	.carrentory-vehicle-spec-value {
		overflow-wrap: anywhere;
	}

	.carrentory-vehicle-spec-value {
		font-size: 0.9rem;
		line-height: 1.2;
		width: auto;
	}

	.carrentory-booking-form-wrap {
		gap: 14px;
		padding-bottom: 84px;
	}

	.carrentory-booking-form {
		gap: 14px;
	}

	.carrentory-booking-columns,
	.carrentory-booking-column,
	.carrentory-customer-fields,
	.carrentory-form-row,
	.carrentory-extras,
	.carrentory-payment-methods {
		gap: 12px;
	}

	.carrentory-booking-section {
		gap: 12px;
		padding: 14px;
	}

	.carrentory-booking-section h3,
	.carrentory-booking-summary h3 {
		margin-bottom: 2px;
	}

	.carrentory-booking-summary-row {
		gap: 4px;
		padding: 7px 0;
	}

	.carrentory-booking-summary-row:first-of-type {
		margin-top: 6px;
	}

	.carrentory-booking-summary-row--total {
		padding-top: 10px;
	}

	.carrentory-booking-summary-row--total .carrentory-booking-summary-value {
		font-size: 1.3rem;
	}

	.carrentory-booking-form__field,
	.carrentory-form-field {
		gap: 5px;
	}

	.carrentory-booking-form__field input,
	.carrentory-booking-form__field textarea,
	.carrentory-payment-method input,
	.carrentory-terms-field input {
		font-size: 16px;
	}

	.carrentory-booking-form__field textarea {
		min-height: 92px;
	}

	.carrentory-extra-item,
	.carrentory-payment-method,
	.carrentory-terms-field {
		padding: 12px;
	}

	.carrentory-mobile-total-bar {
		position: fixed;
		right: 12px;
		bottom: 12px;
		left: 12px;
		z-index: 999;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		border: 1px solid #cfd8e3;
		border-radius: 12px;
		background: #0f1f33;
		box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
		color: #fff;
		padding: 12px 14px;
	}

	.carrentory-mobile-total-bar__label {
		font-size: 0.86rem;
		font-weight: 800;
		line-height: 1.2;
	}

	.carrentory-mobile-total-bar__value {
		font-size: 1.1rem;
		line-height: 1.2;
		text-align: right;
		white-space: nowrap;
	}

	.carrentory-booking-form__errors {
		margin: 0 0 12px;
		outline: none;
	}

	.carrentory-field-invalid,
	.carrentory-field-invalid:focus {
		border-color: #d63638 !important;
		box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.18) !important;
		outline: 2px solid transparent;
	}

	.carrentory-field-invalid-wrap.carrentory-payment-methods,
	.carrentory-field-invalid-wrap.carrentory-terms-field {
		border-color: #d63638;
		box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.12);
	}

	.carrentory-field-error {
		color: #b32d2e;
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 1.35;
		margin: 6px 0 0;
	}

	.carrentory-booking-success {
		gap: 12px;
		padding: 16px;
	}

	.carrentory-booking-success::before {
		width: 34px;
		height: 34px;
		margin-bottom: 0;
		font-size: 1.15rem;
	}

	.carrentory-booking-success-title {
		font-size: 1.2rem;
	}

	.carrentory-booking-reference {
		font-size: 1.12rem;
		padding: 10px;
	}

	.carrentory-booking-success-message {
		gap: 4px;
		font-size: 0.92rem;
	}

	.carrentory-booking-success-summary,
	.carrentory-booking-success-payment {
		padding: 10px 12px;
	}

	.carrentory-booking-success-row {
		gap: 3px;
		padding: 7px 0;
	}

	.carrentory-booking-success-payment {
		gap: 6px;
	}
}

/* Conversion-focused booking flow. */
.carrentory-booking-progress ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.carrentory-booking-progress__step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.3;
	min-width: 0;
	padding: 0 8px;
	text-align: center;
}

.carrentory-booking-progress__step:not(:last-child)::after {
	position: absolute;
	top: 16px;
	left: calc(50% + 17px);
	z-index: 0;
	width: calc(100% - 34px);
	height: 2px;
	background: #dfe3e8;
	content: "";
}

.carrentory-booking-progress__number {
	position: relative;
	z-index: 1;
	display: inline-grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border: 2px solid #c9cfd6;
	border-radius: 50%;
	background: #fff;
	color: #59636f;
}

.carrentory-booking-progress__step.is-complete {
	color: #26733f;
}

.carrentory-booking-progress__step.is-complete .carrentory-booking-progress__number {
	border-color: #3b8b55;
	background: #eef8f1;
	color: #206637;
	font-size: 0;
}

.carrentory-booking-progress__step.is-complete .carrentory-booking-progress__number::before {
	display: block;
	width: 17px;
	height: 17px;
	background-color: currentColor;
	content: "";
	transform: translateY(4px);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-booking-progress__step.is-current {
	color: #1d2327;
}

.carrentory-booking-progress__step.is-current .carrentory-booking-progress__number {
	border-color: #1d2327;
	background: #1d2327;
	color: #fff;
}

.carrentory-booking-intro {
	display: grid;
	gap: 6px;
	text-align: center;
}

.carrentory-booking-intro h2,
.carrentory-booking-intro p {
	margin: 0;
}

.carrentory-booking-intro h2 {
	color: #1d2327;
	font-size: 1.55rem;
	line-height: 1.25;
}

.carrentory-booking-intro p,
.carrentory-booking-section__description {
	color: #59636f;
	line-height: 1.5;
}

.carrentory-booking-section__description {
	margin: -8px 0 0;
}

.carrentory-booking-column--details {
	counter-reset: carrentory-booking-step;
}

.carrentory-booking-step {
	counter-increment: carrentory-booking-step;
}

.carrentory-booking-step > h3 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.carrentory-booking-step > h3::before {
	display: inline-grid;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eef2f5;
	color: #1d2327;
	content: counter(carrentory-booking-step);
	font-size: 0.86rem;
	font-weight: 800;
}

.carrentory-field-requirement {
	color: #69737e;
	font-size: 0.78rem;
	font-weight: 500;
}

.carrentory-extra-item.is-selected {
	border-color: #3b8b55;
	background: #f5fbf7;
	box-shadow: 0 0 0 1px rgba(59, 139, 85, 0.08);
}

.carrentory-extra-quantity input:disabled {
	background: #f1f3f5;
	color: #8a939d;
	cursor: not-allowed;
	opacity: 0.72;
}

.carrentory-payment-method:not(:has(input[type="radio"]:checked)) .carrentory-payment-method-details {
	display: none;
}

.carrentory-booking-step--review {
	border-color: #cfd6dd;
}

.carrentory-booking-form__actions {
	display: grid;
	gap: 8px;
}

.carrentory-submit-booking {
	min-height: 50px;
	font-size: 1rem;
}

.carrentory-booking-form__submit-note {
	color: #69737e;
	font-size: 0.84rem;
	line-height: 1.4;
	margin: 0;
	text-align: center;
}

.carrentory-booking-summary__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.carrentory-booking-summary__header h3 {
	margin: 0;
}

.carrentory-booking-summary {
	padding: 15px;
}

.carrentory-booking-summary-row {
	grid-template-columns: minmax(96px, 0.45fr) minmax(0, 1fr);
	gap: 10px;
	padding: 8px 0;
}

.carrentory-booking-summary__change {
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: right;
}

.carrentory-booking-summary__vehicle {
	display: grid;
	align-items: center;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	border-top: 1px solid #edf1f5;
	margin-top: 12px;
	padding: 12px 0 3px;
}

.carrentory-booking-summary__vehicle-media {
	overflow: hidden;
	border-radius: 6px;
	background: #f1f3f5;
	aspect-ratio: 4 / 3;
}

.carrentory-booking-summary__vehicle-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carrentory-booking-summary__vehicle-label,
.carrentory-booking-summary__vehicle-title {
	display: block;
}

.carrentory-booking-summary__vehicle-label {
	color: #69737e;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 3px;
}

.carrentory-booking-summary__vehicle-title {
	color: #1d2327;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
}

.carrentory-booking-summary__vehicle-title:hover,
.carrentory-booking-summary__vehicle-title:focus {
	color: #135e96;
	text-decoration: underline;
}

.carrentory-booking-summary__breakdown {
	border-top: 1px solid #dfe3e8;
	margin-top: 12px;
	padding-top: 12px;
}

.carrentory-booking-summary__breakdown summary {
	color: #135e96;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.4;
}

.carrentory-booking-summary__breakdown .carrentory-price-breakdown {
	margin-top: 10px;
}

@media (min-width: 901px) {
	.carrentory-booking-columns {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
		gap: 24px;
	}

	.carrentory-booking-column--summary {
		position: sticky;
		top: 48px;
	}
}

@media (min-width: 901px) and (max-height: 900px) {
	.carrentory-booking-column--summary {
		position: static;
	}
}

@media (max-width: 900px) {
	.carrentory-booking-column--summary {
		order: -1;
	}

	.carrentory-booking-progress__step {
		gap: 6px;
		font-size: 0.78rem;
		padding: 0 5px;
	}

	.carrentory-booking-progress__step:not(:last-child)::after {
		top: 16px;
		left: calc(50% + 17px);
		width: calc(100% - 34px);
	}
}

@media (max-width: 600px) {
	.carrentory-booking-intro h2 {
		font-size: 1.3rem;
	}

	.carrentory-booking-summary__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.carrentory-booking-summary__change {
		text-align: left;
	}

	.carrentory-form-row {
		grid-template-columns: 1fr;
	}

	.carrentory-mobile-total-bar {
		border-radius: 8px;
	}
}

/* Guided search and vehicle selection flow. */
.carrentory-search-form {
	display: grid;
	gap: 20px;
}

.carrentory-search-form__panel {
	display: contents;
}

.carrentory-search-form__panel[hidden] {
	display: none !important;
}

.carrentory-search-field[hidden] {
	display: none !important;
}

.carrentory-search-progress {
	margin-bottom: 2px;
}

.carrentory-search-form__intro {
	display: grid;
	gap: 5px;
}

.carrentory-search-form__intro h2,
.carrentory-search-form__intro p {
	margin: 0;
}

.carrentory-search-form__intro h2 {
	color: #1d2327;
	font-size: 1.3rem;
	line-height: 1.25;
}

.carrentory-search-form__intro p {
	color: #59636f;
	line-height: 1.5;
}

.carrentory-search-route {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.carrentory-search-stop {
	min-width: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

.carrentory-search-stop + .carrentory-search-stop {
	border-left: 1px solid #dfe3e8;
	padding-left: 24px;
}

.carrentory-search-stop legend {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #1d2327;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 14px;
	padding: 0;
}

.carrentory-search-stop legend span {
	display: inline-grid;
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eef2f5;
	font-size: 0.82rem;
}

.carrentory-search-stop__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.carrentory-search-field--location {
	grid-column: 1 / -1;
}

.carrentory-search-actions {
	display: flex;
	justify-content: flex-end;
	grid-column: auto;
}

.carrentory-search-form__submit {
	width: min(100%, 340px);
	min-height: 48px;
}

.carrentory-search-form--compact {
	padding: 14px;
}

.carrentory-search-form--compact .carrentory-search-form__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(155px, 170px);
	align-items: end;
	gap: 12px;
}

.carrentory-search-form--compact .carrentory-search-form__notice {
	grid-column: 1 / -1;
}

.carrentory-compact-search__different-location {
	display: inline-flex;
	grid-column: 1 / -1;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: #122033;
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.35;
}

.carrentory-compact-search__different-location input {
	width: 18px;
	height: 18px;
	margin: 0;
}

.carrentory-search-form--compact .carrentory-search-route {
	--carrentory-compact-date-width: clamp(170px, 13vw, 180px);
	--carrentory-compact-time-width: clamp(124px, 10vw, 138px);

	grid-column: 1;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
}

.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop {
	padding-left: 14px;
}

.carrentory-search-form--compact .carrentory-search-stop legend {
	gap: 7px;
	font-size: 0.82rem;
	margin-bottom: 8px;
}

.carrentory-search-form--compact .carrentory-search-stop legend span {
	width: 24px;
	height: 24px;
	font-size: 0.74rem;
}

.carrentory-search-form--compact .carrentory-search-stop__fields {
	grid-template-columns: minmax(150px, 1fr) var(--carrentory-compact-date-width) var(--carrentory-compact-time-width);
	gap: 8px;
}

.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
	grid-template-columns: var(--carrentory-compact-date-width) var(--carrentory-compact-time-width);
}

.carrentory-search-form--compact .carrentory-search-field--location {
	grid-column: auto;
}

.carrentory-search-form--compact.has-different-dropoff .carrentory-search-route {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop + .carrentory-search-stop {
	border-left: 0;
	padding-left: 0;
}

.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop__fields,
.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.carrentory-search-form--compact.has-different-dropoff .carrentory-search-field--location {
	grid-column: 1 / -1;
}

.carrentory-search-form--compact .carrentory-search-form__label {
	font-size: 0.78rem;
}

.carrentory-search-form--compact .carrentory-search-form__input,
.carrentory-search-form--compact .carrentory-search-form__select {
	min-height: 42px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.carrentory-search-form--compact .carrentory-search-actions {
	grid-column: 2;
	width: 100%;
}

.carrentory-search-form--compact .carrentory-search-form__submit {
	width: 100%;
	min-height: 44px;
}

.carrentory-search-form--compact.carrentory-search-form--vertical {
	justify-content: center;
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-form__panel {
	width: min(100%, 480px);
	grid-template-columns: 1fr;
	justify-self: center;
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-route,
.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-stop__fields {
	grid-template-columns: 1fr;
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-stop + .carrentory-search-stop {
	border-top: 0;
	border-left: 0;
	padding-top: 16px;
	padding-left: 0;
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-stop + .carrentory-search-stop legend {
	width: 100%;
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-stop + .carrentory-search-stop legend::after {
	min-width: 24px;
	height: 1px;
	flex: 1 1 auto;
	margin-left: 4px;
	background: #dfe3e8;
	content: "";
}

.carrentory-search-form--compact.carrentory-search-form--vertical .carrentory-search-actions {
	grid-column: 1;
}

body.carrentory-modal-open {
	overflow: hidden;
}

.carrentory-terms-modal[hidden] {
	display: none !important;
}

.carrentory-terms-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 20px;
}

.carrentory-terms-modal__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(15, 23, 42, 0.68) !important;
	box-shadow: none !important;
	cursor: default;
	outline: 0 !important;
}

.carrentory-terms-modal__backdrop:hover,
.carrentory-terms-modal__backdrop:focus,
.carrentory-terms-modal__backdrop:active {
	border: 0 !important;
	background: rgba(15, 23, 42, 0.68) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.carrentory-terms-modal__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(100%, 720px);
	max-height: min(82vh, 760px);
	grid-template-rows: auto minmax(0, 1fr);
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.carrentory-terms-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid #dfe3e8;
	padding: 16px 18px;
}

.carrentory-terms-modal__header h2 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.3;
}

.carrentory-terms-modal__close {
	display: inline-grid;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfd6dd;
	border-radius: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: #fff !important;
	color: #1d2327;
	cursor: pointer;
	padding: 0 !important;
}

.carrentory-terms-modal__close span {
	display: block;
	width: 18px;
	height: 18px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carrentory-terms-modal__close:hover,
.carrentory-terms-modal__close:focus {
	border-color: #135e96;
	background: #f3f7ff !important;
	color: #135e96;
	box-shadow: none !important;
	outline: 2px solid transparent;
}

.carrentory-terms-modal__content {
	overflow: auto;
	padding: 18px;
	color: #303842;
	line-height: 1.65;
}

.carrentory-terms-modal__content > :first-child {
	margin-top: 0;
}

.carrentory-terms-modal__content > :last-child {
	margin-bottom: 0;
}

.carrentory-search-form--vertical .carrentory-search-route,
.carrentory-search-form--vertical .carrentory-search-stop__fields {
	grid-template-columns: 1fr;
}

.carrentory-search-form--vertical .carrentory-search-stop + .carrentory-search-stop {
	border-top: 1px solid #dfe3e8;
	border-left: 0;
	padding-top: 20px;
	padding-left: 0;
}

.carrentory-search-form--vertical .carrentory-search-actions,
.carrentory-search-form--vertical .carrentory-search-form__submit {
	width: 100%;
}

.carrentory-results-heading {
	display: grid;
	gap: 4px;
	margin-bottom: 4px;
}

.carrentory-results-heading h2,
.carrentory-results-heading p {
	margin: 0;
}

.carrentory-results-heading h2 {
	color: #1d2327;
	font-size: 1.3rem;
	line-height: 1.3;
}

.carrentory-results-heading p {
	color: #59636f;
	font-size: 0.93rem;
	line-height: 1.45;
}

.carrentory-results-count {
	color: #1d2327;
}

.carrentory-vehicle-breakdown {
	display: block;
	padding-top: 9px;
}

.carrentory-vehicle-breakdown summary {
	color: #135e96;
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.4;
}

.carrentory-vehicle-breakdown[open] summary {
	margin-bottom: 7px;
}

@media (max-width: 1199px) {
	.carrentory-search-form--compact {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form--compact .carrentory-search-form__panel {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form--compact .carrentory-search-route {
		grid-column: 1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop {
		border-left: 0;
		padding-left: 0;
	}

	.carrentory-search-form--compact .carrentory-search-stop__fields,
	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.carrentory-search-form--compact .carrentory-search-field--location {
		grid-column: 1 / -1;
	}

	.carrentory-search-form--compact .carrentory-search-actions {
		grid-column: 1;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.carrentory-search-form--compact:not(.has-different-dropoff) .carrentory-search-stop + .carrentory-search-stop {
		display: flex;
		flex-direction: column;
	}

	.carrentory-search-form--compact:not(.has-different-dropoff) .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
		margin-top: auto;
	}
}

@media (max-width: 991px) {
	.carrentory-search-form--compact .carrentory-search-route,
	.carrentory-search-form--compact.has-different-dropoff .carrentory-search-route {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.carrentory-search-form--compact .carrentory-search-stop__fields,
	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields,
	.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop__fields,
	.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
		grid-template-columns: 1fr;
	}

	.carrentory-search-route {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop {
		border-top: 0;
		border-left: 0;
		padding-top: 4px;
		padding-left: 0;
	}

	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop legend {
		width: 100%;
	}

	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop legend::after {
		min-width: 24px;
		height: 1px;
		flex: 1 1 auto;
		margin-left: 4px;
		background: #dfe3e8;
		content: "";
	}
}

@media (max-width: 600px) {
	.carrentory-search-form {
		gap: 16px;
		padding: 16px;
	}

	.carrentory-search-form__intro h2,
	.carrentory-results-heading h2 {
		font-size: 1.18rem;
	}

	.carrentory-search-stop__fields {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form--compact .carrentory-search-stop__fields {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form--compact .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields,
	.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop__fields,
	.carrentory-search-form--compact.has-different-dropoff .carrentory-search-stop + .carrentory-search-stop .carrentory-search-stop__fields {
		grid-template-columns: 1fr;
	}

	.carrentory-search-form__submit {
		width: 100%;
	}

	.carrentory-date-picker-popup {
		position: fixed;
		top: 50%;
		right: 4px;
		bottom: auto;
		left: 4px;
		width: auto;
		max-width: 380px;
		margin: 0 auto;
		border-radius: 8px;
		padding: 6px;
		transform: translateY(-50%);
	}

	.carrentory-date-picker-weekdays,
	.carrentory-date-picker-grid {
		gap: 1px;
	}

	.carrentory-terms-modal {
		padding: 12px;
	}

	.carrentory-terms-modal__dialog {
		max-height: 88vh;
	}

	.carrentory-terms-modal__header,
	.carrentory-terms-modal__content {
		padding: 14px;
	}
}
