/**
 * Africa Car Rental Pro — Frontend & admin shared styles.
 *
 * @package AfricaCarRentalPro
 */

:root {
	--acrp-primary: #003b95;
	--acrp-primary-dark: #002a6e;
	--acrp-accent: #f4b400;
	--acrp-green: #0f7b4a;
	--acrp-red: #c62828;
	--acrp-gray: #f5f5f5;
	--acrp-border: #e0e0e0;
	--acrp-text: #222;
	--acrp-radius: 8px;
}

.acrp-wrap-frontend {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--acrp-text);
	line-height: 1.5;
}

/* ---------- Search form ---------- */
.acrp-search-form {
	background: #fff;
	padding: 8px;
	border: 1px solid var(--acrp-border);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
	color: var(--acrp-text);
	margin-bottom: 28px;
}
.acrp-search-form h2 {
	margin: 0 0 16px;
	color: var(--acrp-text);
	font-size: 20px;
}
.acrp-search-fields {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	gap: 10px;
}
.acrp-search-field {
	display: grid;
	grid-template-columns: 28px 1fr;
	grid-template-rows: auto auto;
	align-content: center;
	min-width: 0;
	padding: 8px 14px;
	border-right: 1px solid var(--acrp-border);
}
.acrp-search-field label {
	grid-column: 2;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #777;
	margin: 0;
}
.acrp-search-field input {
	grid-column: 2;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--acrp-text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	height: 29px;
	margin: 0;
	min-height: 0;
	outline: none;
	padding: 0;
	width: 100%;
}
.acrp-datetime-row {
	grid-column: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(72px, .8fr);
	gap: 8px;
}
.acrp-datetime-row input {
	grid-column: auto;
}
.acrp-search-action {
	display: flex;
	align-items: stretch;
	padding: 0 0 0 8px;
}
.acrp-search-submit {
	align-items: center;
	background: var(--acrp-accent);
	border: 0;
	border-radius: 14px;
	color: var(--acrp-primary-dark);
	cursor: pointer;
	display: flex;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	min-width: 142px;
	padding: 12px 20px;
	transition: transform .2s ease, box-shadow .2s ease;
	margin: 0;
}
.acrp-search-form .acrp-search-submit { width: 100%; box-sizing: border-box; }
.acrp-search-submit:hover {
	box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
	transform: translateY(-1px);
}

.acrp-search-form .acrp-search-title {
	margin: 0 0 14px;
	color: var(--acrp-text);
	font-size: 20px;
}
.acrp-search-field { border-right: 0; border-bottom: 1px solid var(--acrp-border); }
.acrp-layout-vertical .acrp-search-field {
	border-right: 0;
	border-bottom: 1px solid var(--acrp-border);
}
.acrp-layout-vertical .acrp-datetime-row {
	grid-template-columns: 1fr 1fr;
}
.acrp-layout-vertical .acrp-search-action {
	padding: 0;
}
.acrp-layout-vertical .acrp-search-submit {
	width: 100%;
}

/* ---------- Vehicle list ---------- */
.acrp-fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 16px;
}
.vehicle-card {
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
	transition: transform .15s ease, box-shadow .15s ease;
}
.vehicle-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.vehicle-card img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
}
.vehicle-card-body {
	padding: 14px 16px 18px;
}
.vehicle-card-body h3 {
	margin: 0 0 6px;
	font-size: 17px;
}
.acrp-vehicle-category {
	color: var(--acrp-primary);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 6px;
}
.acrp-vehicle-meta,
.acrp-vehicle-equipment {
	color: #666;
	font-size: 13px;
	margin: 4px 0;
}
.acrp-price {
	font-size: 20px;
	font-weight: 800;
	color: var(--acrp-primary);
	margin: 8px 0 10px;
}
.acrp-price small {
	font-size: 12px;
	font-weight: 400;
	color: #777;
}

/* ---------- Wizard ---------- */
.acrp-booking-wizard,
.acrp-booking-form {
	max-width: 720px;
	margin: 0 auto;
}
.acrp-steps {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}
.acrp-step-dot {
	flex: 1;
	text-align: center;
	font-size: 12px;
	padding: 8px 4px;
	border: 1px solid var(--acrp-border);
	border-radius: 20px;
	color: #888;
	background: #fff;
	cursor: pointer;
}
.acrp-step-dot.acrp-step-active {
	background: var(--acrp-primary);
	border-color: var(--acrp-primary);
	color: #fff;
	font-weight: 600;
}
.acrp-step-panel {
	display: none;
	padding: 18px;
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	background: #fff;
}
.acrp-step-panel.acrp-step-active {
	display: block;
}
.acrp-booking-vehicle {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
}
.acrp-booking-vehicle img {
	width: 140px;
	height: 96px;
	object-fit: cover;
	border-radius: 6px;
}
.acrp-booking-vehicle h4 {
	margin: 0 0 4px;
}
.acrp-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
	margin-bottom: 8px;
	cursor: pointer;
}
.acrp-option-price {
	margin-left: auto;
	font-weight: 600;
	color: var(--acrp-primary);
}
.acrp-price-preview {
	margin: 14px 0;
	padding: 12px;
	background: var(--acrp-gray);
	border-radius: 6px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.acrp-preview-amount {
	font-size: 22px;
	font-weight: 800;
	color: var(--acrp-primary);
}
.acrp-price-preview small {
	color: #666;
}
.acrp-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}
.acrp-form-grid p {
	margin: 0;
}
.acrp-form-grid label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
}
.acrp-form-grid input,
.acrp-form-grid select,
.acrp-form-grid textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 11px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
	font-size: 14px;
}
.acrp-form-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}
.acrp-summary p {
	margin: 6px 0;
}
.acrp-hint {
	color: #777;
	font-size: 13px;
}

/* ---------- Checkout ---------- */
.acrp-checkout {
	max-width: 620px;
	margin: 0 auto;
}
.acrp-checkout-summary {
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	padding: 14px 18px;
	background: #fff;
	margin-bottom: 18px;
}
.acrp-checkout-summary p {
	margin: 5px 0;
}
.acrp-gateway {
	display: block;
	padding: 10px 12px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
	margin-bottom: 8px;
	cursor: pointer;
}
.acrp-payment-form {
	max-width: 480px;
}
.acrp-payment-form input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 11px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
}

/* ---------- Notices ---------- */
.acrp-notice {
	padding: 12px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}
.acrp-error {
	background: #fdecea;
	border: 1px solid #f5c6cb;
	color: var(--acrp-red);
}
.acrp-success {
	background: #e8f5ee;
	border: 1px solid #c8e6d2;
	color: var(--acrp-green);
}

/* ---------- Public calendar ---------- */
.acrp-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	max-width: 560px;
}
.acrp-cal-head {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--acrp-primary);
	padding: 4px;
}
.acrp-cal-cell {
	text-align: center;
	padding: 10px 4px;
	border-radius: 4px;
	background: #fff;
	border: 1px solid var(--acrp-border);
	font-size: 13px;
}
.acrp-cal-empty {
	visibility: hidden;
}
.acrp-cal-ok {
	background: #e8f5ee;
	border-color: #c8e6d2;
	color: var(--acrp-green);
	font-weight: 600;
}
.acrp-cal-no {
	background: #fdecea;
	border-color: #f5c6cb;
	color: var(--acrp-red);
}
.acrp-cal-blocked {
	background: #f3f0f7;
	border-color: #d5cbe8;
	color: #6f5ba3;
}
.acrp-cal-maint {
	background: #fff4e5;
	border-color: #f6d9ab;
	color: #b35a00;
}
.acrp-cal-legend {
	font-size: 13px;
	margin-top: 10px;
}
.acrp-cal-legend .acrp-cal-no {
	background: none;
	border: 0;
	margin-left: 14px;
}

/* ---------- Dashboard / admin ---------- */
.acrp-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}
.acrp-card {
	background: #fff;
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	padding: 18px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}
.acrp-card h4 {
	margin: 0 0 8px;
	font-size: 13px;
	text-transform: uppercase;
	color: #777;
	letter-spacing: .04em;
}
.acrp-number {
	font-size: 26px;
	font-weight: 800;
	color: var(--acrp-primary);
}
.acrp-dashboard-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 18px;
}
.acrp-panel {
	background: #fff;
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	padding: 16px;
}
.acrp-panel h3 {
	margin-top: 0;
	font-size: 16px;
}
.acrp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.acrp-table th {
	text-align: left;
	padding: 8px 10px;
	background: var(--acrp-gray);
	border-bottom: 2px solid var(--acrp-border);
}
.acrp-table td {
	padding: 8px 10px;
	border-bottom: 1px solid var(--acrp-border);
}
.acrp-status-pending { color: #b8860b; font-weight: 600; }
.acrp-status-confirmed { color: var(--acrp-primary); font-weight: 600; }
.acrp-status-cancelled { color: var(--acrp-red); font-weight: 600; }
.acrp-status-completed { color: var(--acrp-green); font-weight: 600; }
.acrp-status-paid { color: var(--acrp-green); font-weight: 600; }
.acrp-status-pending_payment { color: #b8860b; font-weight: 600; }
.acrp-status-refunded { color: #6a1b9a; font-weight: 600; }
.acrp-status-failed { color: var(--acrp-red); font-weight: 600; }
.acrp-status-processing { color: #b8860b; font-weight: 600; }
.acrp-status-sold { color: var(--acrp-green); font-weight: 600; }

/* ---------- Customer account & registration ---------- */
.acrp-register-panel {
	max-width: 540px;
	margin: 0 auto;
}
.acrp-register-panel h2 {
	margin-top: 0;
}
.acrp-field-full {
	width: 100%;
	box-sizing: border-box;
}
.acrp-phone-row {
	display: flex;
	gap: 8px;
}
.acrp-phone-code {
	flex: 0 0 185px;
}
.acrp-phone-row .acrp-field-full {
	flex: 1;
}
.acrp-login-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.acrp-inline {
	font-size: 13px;
}
.acrp-btn-danger {
	background: var(--acrp-red);
	color: #fff;
}
.acrp-btn-danger:hover {
	color: #fff;
}
.acrp-btn-small {
	padding: 6px 12px;
	font-size: 13px;
}
.acrp-cancel-panel {
	border-left: 4px solid var(--acrp-red);
	margin-bottom: 18px;
}
.acrp-cancel-panel form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* ---------- Admin meta box ---------- */
.acrp-meta-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
}
.acrp-meta-box p {
	margin: 0;
}
.acrp-meta-box label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 3px;
}
.acrp-meta-box input,
.acrp-meta-box select,
.acrp-meta-box textarea {
	width: 100%;
	box-sizing: border-box;
}

/* ---------- Customer / agency dashboards ---------- */
.acrp-invoice-list,
.acrp-document-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.acrp-invoice-list li,
.acrp-document-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
	margin-bottom: 8px;
}
.acrp-document-form,
.acrp-profile-form {
	max-width: 520px;
}
.acrp-document-form p,
.acrp-profile-form p {
	margin-bottom: 14px;
}
.acrp-document-form label,
.acrp-profile-form label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 4px;
}
.acrp-document-form input,
.acrp-profile-form input,
.acrp-profile-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 11px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
}

@media (max-width: 820px) {
	.acrp-dashboard-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Sales chart ---------- */
.acrp-chart-box {
	background: #fff;
	border: 1px solid var(--acrp-border);
	border-radius: var(--acrp-radius);
	padding: 16px;
	margin-bottom: 18px;
}
.acrp-chart-box h2 {
	font-size: 15px;
	margin-top: 0;
}
#acrp-sales-chart .acrp-bars {
	align-items: flex-end;
	gap: 12px;
	height: 220px;
	display: flex;
	padding-top: 10px;
}
#acrp-sales-chart .acrp-bar-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	min-width: 0;
}
#acrp-sales-chart .acrp-bar {
	width: 60%;
	max-width: 46px;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, #003b95, #1b5bbf);
}
#acrp-sales-chart .acrp-bar-item span {
	font-size: 11px;
	color: #777;
	white-space: nowrap;
}
#acrp-chart-data {
	display: none;
}

/* ---------- Coupon (booking step 3) ---------- */
.acrp-coupon {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 10px 0;
}
.acrp-coupon label {
	font-weight: 600;
	font-size: 13px;
}
.acrp-coupon-field {
	flex: 1;
	max-width: 220px;
	padding: 8px 10px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
	box-sizing: border-box;
}
.acrp-coupon-msg {
	font-size: 13px;
	font-weight: 600;
}
.acrp-coupon-msg.acrp-success { color: var(--acrp-green); }
.acrp-coupon-msg.acrp-error { color: var(--acrp-red); }

/* ---------- Reviews ---------- */
.acrp-reviews { margin-top: 8px; }
.acrp-review-average {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}
.acrp-stars {
	color: #f5b301;
	letter-spacing: 2px;
}
.acrp-review-item {
	padding: 12px 0;
	border-bottom: 1px solid var(--acrp-border);
}
.acrp-review-item:last-child { border-bottom: 0; }
.acrp-review-head {
	margin: 0 0 4px;
	font-size: 14px;
}
.acrp-review-head small {
	color: #888;
	font-weight: 400;
	margin-left: 8px;
}
.acrp-rating-badge {
	display: inline-block;
	background: var(--acrp-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	padding: 2px 8px;
	margin-top: 4px;
}
.acrp-review-form { max-width: 520px; }
.acrp-review-form p { margin-bottom: 12px; }
.acrp-review-form label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 4px;
}
.acrp-review-form select,
.acrp-review-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border: 1px solid var(--acrp-border);
	border-radius: 6px;
}

/* ---------- Loyalty ---------- */
.acrp-loyalty-level {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	border-radius: 999px;
	padding: 3px 10px;
	margin-left: 8px;
}
.acrp-loyalty-bronze { background: #efebe9; color: #795548; }
.acrp-loyalty-silver { background: #eceff1; color: #546e7a; }
.acrp-loyalty-gold { background: #fff8e1; color: #b8860b; }
.acrp-loyalty-platinum { background: #f3e5f5; color: #6a1b9a; }

/* ---------- Vehicle gallery & media ---------- */
.vehicle-card-media { position: relative; }
.acrp-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.acrp-card-noimg {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eceff1;
	color: #9aa6b2;
}
.acrp-card-noimg .dashicons { font-size: 60px; width: auto; height: auto; }
.acrp-card-thumbs {
	display: flex;
	gap: 6px;
	padding: 8px;
	background: #f7f8fa;
	flex-wrap: wrap;
}
.acrp-thumb {
	width: 46px;
	height: 36px;
	padding: 0;
	border: 2px solid #e0e4e8;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	background: #fff;
}
.acrp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.acrp-thumb.is-active { border-color: var(--acrp-primary); }

/* ---------- Equipment icons ---------- */
.acrp-vehicle-equipment { list-style: none; margin: 6px 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.acrp-vehicle-equipment li { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #555; }
.acrp-vehicle-equipment .dashicons { color: var(--acrp-primary); font-size: 18px; width: auto; height: auto; }

/* ---------- Filters ---------- */
.acrp-search-grid-expanded { grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); }
.acrp-equipment-filter { border: 0; padding: 0; margin: 14px 0 0; }
.acrp-equipment-filter legend { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; opacity: .9; margin-bottom: 8px; }
.acrp-equipment-options { display: flex; gap: 8px; flex-wrap: wrap; }
.acrp-equipment-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--acrp-border);
	border-radius: 999px;
	padding: 7px 14px;
	cursor: pointer;
	font-size: 13px;
}
.acrp-equipment-option .dashicons { color: var(--acrp-primary); font-size: 18px; width: auto; height: auto; }
.acrp-equipment-option input { accent-color: var(--acrp-primary); }
.acrp-empty-fleet {
	text-align: center;
	padding: 30px;
	color: #666;
	background: #fff;
	border: 1px dashed var(--acrp-border);
	border-radius: var(--acrp-radius);
}

/* ============================================================
   PHASE 4 — Mobile-first booking tunnel
   ============================================================ */

/* ---------- Tunnel shell ---------- */
.acrp-flow { max-width: 960px; margin: 0 auto; }
.acrp-flow-header { position: sticky; top: 0; z-index: 40; background: #fff; padding: 10px 4px; margin-bottom: 14px; box-shadow: 0 1px 0 #eee; }
.acrp-steps { display: flex; gap: 4px; align-items: stretch; justify-content: space-between; }
.acrp-step {
	flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
	border: 0; background: none; padding: 4px; cursor: default; min-width: 0;
}
.acrp-step.is-done { cursor: pointer; }
.acrp-step-dot {
	width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	background: #e8edf5; color: #7a8aa0; font-size: 12px; font-weight: 700; line-height: 1;
	flex: 0 0 auto;
}
.acrp-step.is-active .acrp-step-dot { background: var(--acrp-primary); color: #fff; }
.acrp-step.is-done .acrp-step-dot { background: var(--acrp-green); color: #fff; }
.acrp-step-name {
	font-size: 10px; text-transform: uppercase; letter-spacing: .03em; color: #6a7b90;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.acrp-step.is-active .acrp-step-name { color: var(--acrp-primary); font-weight: 700; }
.acrp-step.is-done .acrp-step-name { color: var(--acrp-green); }
.acrp-flow-panel { padding: 0 4px 90px; }

.acrp-muted { color: #6a7b90; font-size: 13px; }
.acrp-small { font-size: 12px; color: #6a7b90; }
.acrp-loading { text-align: center; color: var(--acrp-primary); font-weight: 600; padding: 40px 0; }

.acrp-notice { padding: 12px 14px; border-radius: var(--acrp-radius); margin-bottom: 14px; font-size: 14px; }
.acrp-notice.acrp-error, .acrp-notice.is-error { background: #fdecea; color: var(--acrp-red); border: 1px solid #f5c6c0; }

/* ---------- Step 1 — Search ---------- */
.acrp-search-card {
	background: linear-gradient(135deg, #003b95, #1b5bbf);
	color: #fff; padding: 26px 20px; border-radius: 14px;
}
.acrp-search-card h2 { margin: 0 0 4px; color: #fff; font-size: 22px; }
.acrp-search-grid { display: grid; gap: 14px; margin-top: 18px; }
@media (min-width: 560px) { .acrp-search-grid { grid-template-columns: 1fr 1fr; } }
.acrp-search-card .acrp-field { background: rgba(255,255,255,.12); padding: 10px 12px; border-radius: 8px; }
.acrp-search-card .acrp-label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; opacity: .85; display: block; margin-bottom: 4px; }
.acrp-search-card .acrp-input { width: 100%; box-sizing: border-box; padding: 10px 12px; border: 0; border-radius: 6px; font-size: 15px; color: #222; }
.acrp-search-card label + label { margin-top: 8px; display: block; }


.acrp-search-card .acrp-search-sub-label { margin-top: 8px; }
.acrp-search-card .acrp-search-action { display: flex; align-items: stretch; }
.acrp-search-card .acrp-search-action .acrp-search-submit { margin-top: 0; height: 100%; }
.acrp-search-card .acrp-search-action .acrp-search-submit { margin-top: 0; }
.acrp-search-card.acrp-search-layout-vertical .acrp-search-action .acrp-search-submit { height: auto; }

.acrp-btn-lg { width: 100%; padding: 15px; font-size: 16px; border-radius: 10px; margin-top: 18px; }
.acrp-btn-block { display: block; width: 100%; text-align: center; }
.acrp-btn-outline { background: transparent; box-shadow: inset 0 0 0 2px var(--acrp-primary); color: var(--acrp-primary); }
.acrp-btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Step 2 — Results ---------- */
.acrp-results-wrap h2 { margin-bottom: 12px; font-size: 18px; }
.acrp-results-toolbar { display: flex; gap: 10px; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; }
.acrp-toolbar-item { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 150px; }
.acrp-toolbar-item .acrp-label, .acrp-filters-label { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #6a7b90; }
.acrp-sort { width: 100%; padding: 9px 10px; border: 1px solid var(--acrp-border); border-radius: 6px; }

.acrp-filters-panel {
	display: none; grid-template-columns: 1fr; gap: 12px;
	background: #fff; padding: 14px; border: 1px solid var(--acrp-border); border-radius: 10px; margin-bottom: 14px;
}
.acrp-filters-panel.is-open { display: grid; }
.acrp-filters-panel .acrp-input { width: 100%; padding: 8px 10px; border: 1px solid var(--acrp-border); border-radius: 6px; }
.acrp-filters-actions { display: flex; gap: 8px; grid-column: 1; justify-content: stretch; flex-direction: column; }
.acrp-filters-actions .acrp-btn { width: 100%; }

/* ---------- Results list (mobile-first cards) ---------- */
.acrp-fleet-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .acrp-fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .acrp-fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.acrp-vehicle-card { position: relative; background: #fff; border: 1px solid var(--acrp-border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.acrp-card-media { cursor: pointer; margin: 0; }
.acrp-card-img { width: 100%; height: 190px; object-fit: cover; display: block; }

.acrp-card-badge { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; padding: 6px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; color: #fff; line-height: 1.3; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.acrp-card-badge small { font-weight: 400; font-size: 10px; opacity: .9; }
.acrp-badge-recommended { background: #7b1fa2; }
.acrp-badge-popular { background: #e64a19; }
.acrp-badge-limited { background: #c62828; }

.vehicle-card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vehicle-card-body h3 { margin: 0; font-size: 17px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acrp-rating-badge { background: #fff3cd; color: #996a00; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.acrp-review-count { font-size: 12px; color: #6a7b90; }
.acrp-vehicle-meta { margin: 0; color: #555; font-size: 13px; }
.acrp-vehicle-equipment { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.acrp-vehicle-equipment li { font-size: 12px; color: #4a5a6e; background: #f2f5f9; padding: 2px 8px; border-radius: 999px; }
.acrp-card-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; padding-top: 6px; }
.acrp-price { font-size: 20px; font-weight: 800; color: var(--acrp-primary); }
.acrp-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }

.acrp-no-results { text-align: center; padding: 34px 14px; color: #777; background: #fff; border: 1px dashed var(--acrp-border); border-radius: 12px; display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 10px; }

/* ---------- Step 3 — Vehicle detail ---------- */
.acrp-vehicle-gallery { margin-bottom: 14px; }
.acrp-gallery-main img { width: 100%; max-height: 320px; object-fit: cover; display: block; border-radius: 12px; }
.acrp-thumbnails { display: flex; gap: 8px; overflow-x: auto; padding: 8px 2px; }
.acrp-thumbnails .acrp-thumb { flex: 0 0 auto; }
.acrp-vehicle-info h2 { margin: 0 0 4px; font-size: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acrp-vehicle-category { margin: 0 0 8px; color: #6a7b90; font-size: 13px; text-transform: capitalize; }
.acrp-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 12px 0; }
@media (min-width: 560px) { .acrp-spec-grid { grid-template-columns: repeat(4, 1fr); } }
.acrp-spec { background: var(--acrp-gray); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; }
.acrp-spec strong { font-size: 11px; text-transform: uppercase; color: #6a7b90; }
.acrp-spec span { font-size: 14px; font-weight: 600; }
.acrp-vehicle-desc { margin: 12px 0; font-size: 14px; color: #444; }
.acrp-vehicle-desc h4, .acrp-vehicle-equipment h4 { margin: 10px 0 6px; font-size: 14px; }
.acrp-vehicle-agency { margin: 8px 0 0; color: #6a7b90; font-size: 13px; }
.acrp-price-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--acrp-border); border-radius: 12px; padding: 14px; margin-top: 14px; }

/* ---------- Quote box (server computed) ---------- */
.acrp-quote-wrap { margin-top: 14px; }
.acrp-quote-box { background: #f8fafc; border: 1px solid var(--acrp-border); border-radius: 12px; padding: 14px; }
.acrp-quote-lines { display: flex; flex-direction: column; gap: 6px; }
.acrp-quote-row { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; }
.acrp-quote-row strong { font-weight: 600; }
.acrp-quote-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 16px; padding-top: 8px; margin-top: 8px; border-top: 2px solid var(--acrp-primary); }
.acrp-quote-split { display: flex; gap: 12px; margin-top: 12px; }
.acrp-quote-split span { flex: 1; background: #fff; border: 1px solid var(--acrp-border); border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; }
.acrp-quote-split small { font-size: 11px; color: #6a7b90; text-transform: uppercase; }

/* ---------- Step 4 — Options ---------- */
.acrp-summary-mini { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; background: #fff; border: 1px solid var(--acrp-border); border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; flex-wrap: wrap; }
.acrp-summary-mini span { font-size: 13px; color: #6a7b90; }
.acrp-options { display: flex; flex-direction: column; gap: 8px; }
.acrp-option-row {
	display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--acrp-border);
	border-radius: 10px; padding: 14px; cursor: pointer; transition: border-color .15s ease;
}
.acrp-option-row input { width: 20px; height: 20px; accent-color: var(--acrp-primary); flex: 0 0 auto; }
.acrp-option-name { flex: 1; font-size: 15px; font-weight: 600; }
.acrp-option-price { font-size: 14px; font-weight: 700; color: var(--acrp-primary); }

/* ---------- Step 5 — Client ---------- */
.acrp-client-form { display: flex; flex-direction: column; gap: 12px; }
.acrp-client-form .acrp-field { gap: 4px; }
.acrp-client-form .acrp-input, .acrp-phone-field .acrp-input { width: 100%; padding: 11px 12px; border: 1px solid var(--acrp-border); border-radius: 8px; font-size: 15px; box-sizing: border-box; }
.acrp-phone-field { display: flex; gap: 8px; }
.acrp-phone-cc { flex: 0 0 92px !important; }
.acrp-client-extra { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .acrp-client-extra { grid-template-columns: 1fr; } }

.acrp-form-actions { display: flex; gap: 10px; justify-content: space-between; margin-top: 18px; }
.acrp-form-actions .acrp-btn { flex: 1; max-width: 200px; padding: 13px; }

/* ---------- Step 6 — Payment ---------- */
.acrp-recap-box { margin-bottom: 12px; }
.acrp-coupon-row { display: flex; gap: 8px; margin-bottom: 12px; }
.acrp-coupon-row .acrp-input { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--acrp-border); border-radius: 8px; }
.acrp-coupon-row .acrp-btn { flex: 0 0 auto; }

/* ---------- Step 7 — Confirmation ---------- */
.acrp-confirmation { text-align: center; padding: 30px 14px; }
.acrp-confirm-icon {
	width: 64px; height: 64px; border-radius: 50%; background: var(--acrp-green); color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 14px;
}
.acrp-confirmation h2 { margin: 0 0 6px; font-size: 22px; }
.acrp-reference { font-size: 18px; font-weight: 800; color: var(--acrp-primary); margin: 10px 0; }
.acrp-confirm-card { background: #fff; border: 1px solid var(--acrp-border); border-radius: 12px; padding: 16px; margin: 14px auto; max-width: 360px; display: flex; flex-direction: column; gap: 4px; }

/* ---------- Sticky bottom summary (mobile) ---------- */
@media (max-width: 719px) {
	.acrp-flow-panel { padding-bottom: 110px; }
	.acrp-flow-sticky {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
		background: #fff; border-top: 1px solid var(--acrp-border);
		padding: 12px 14px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
		box-shadow: 0 -2px 10px rgba(0,0,0,.08);
	}
	.acrp-flow-sticky .acrp-price { font-size: 18px; }
	.acrp-flow-sticky .acrp-btn { margin: 0; flex: 0 0 auto; }
}

.acrp-spinner { display: flex; align-items: center; justify-content: center; padding: 50px 0; }
.acrp-spinner span { width: 34px; height: 34px; border: 3px solid #e0e8f2; border-top-color: var(--acrp-primary); border-radius: 50%; animation: acrp-spin .8s linear infinite; }
@keyframes acrp-spin { to { transform: rotate(360deg); } }

/* Single vehicle page fallback template */
.acrp-single-vehicle { padding: 32px 20px; }
.acrp-vehicle-single-wrap { max-width: 1180px; margin: 0 auto; }
.acrp-breadcrumbs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; font-size:14px; opacity:.8; }
.acrp-single-vehicle-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:42px; align-items:start; }
.acrp-single-vehicle-main-image { border-radius:16px; overflow:hidden; background:#f4f4f4; aspect-ratio:16/10; }
.acrp-single-vehicle-main-image img { width:100%; height:100%; object-fit:cover; display:block; }
.acrp-single-vehicle-thumbs { display:flex; gap:10px; margin-top:12px; overflow:auto; }
.acrp-single-thumb { border:2px solid transparent; padding:0; border-radius:8px; overflow:hidden; background:none; cursor:pointer; width:76px; height:56px; flex:0 0 auto; }
.acrp-single-thumb.is-active { border-color:currentColor; }
.acrp-single-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.acrp-single-vehicle-no-image { min-height:420px; display:grid; place-items:center; background:#f4f4f4; border-radius:16px; font-size:72px; }
.acrp-single-vehicle-eyebrow { text-transform:uppercase; letter-spacing:.08em; font-size:12px; font-weight:700; opacity:.65; }
.acrp-single-vehicle-content h1 { margin:.2em 0 .1em; font-size:clamp(30px,4vw,48px); }
.acrp-single-vehicle-subtitle { font-size:18px; opacity:.7; }
.acrp-single-vehicle-specs { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:24px 0; }
.acrp-spec { padding:14px; border:1px solid rgba(0,0,0,.1); border-radius:10px; }
.acrp-spec strong,.acrp-spec span { display:block; }
.acrp-spec span { font-size:12px; opacity:.65; margin-top:3px; }
.acrp-single-vehicle-price { margin:26px 0; font-size:16px; }
.acrp-single-vehicle-price strong { font-size:30px; }
.acrp-single-vehicle-book { display:inline-block; }
@media (max-width: 800px) { .acrp-single-vehicle-grid { grid-template-columns:1fr; gap:26px; } .acrp-single-vehicle-specs { grid-template-columns:repeat(2,minmax(0,1fr)); } }

/* ---------- Search engine layouts ---------- */
.acrp-search-form.acrp-layout-horizontal .acrp-search-fields { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.acrp-search-form.acrp-layout-horizontal .acrp-search-fields-count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.acrp-search-card.acrp-search-layout-horizontal .acrp-search-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: stretch; }
.acrp-search-form.acrp-layout-horizontal .acrp-search-field { border-right: 1px solid var(--acrp-border); border-bottom: 0; }
.acrp-search-form.acrp-layout-horizontal .acrp-search-action { padding-left: 8px; }
.acrp-search-form .acrp-search-select { width: 100%; border: 0; background: transparent; font-weight: 700; }
.acrp-search-card .acrp-search-action { min-width: 0; }
.acrp-search-card .acrp-search-action .acrp-search-submit { width: 100%; min-width: 0; height: 100%; box-sizing: border-box; margin: 0; }
.acrp-search-card.acrp-search-layout-vertical .acrp-search-grid { grid-template-columns: 1fr; }
.acrp-search-card.acrp-search-layout-vertical .acrp-search-action .acrp-search-submit { height: auto; }

/* ---------- Rental detail / one-step extras ---------- */
.acrp-rental-duration-info { display:flex; justify-content:space-between; gap:16px; padding:12px 14px; margin:0 0 18px; border:1px solid var(--acrp-border); border-radius:10px; background:#fafafa; }
.acrp-rental-duration-info span { color:#666; font-size:13px; }
.acrp-section-title { margin:22px 0 10px; }
.acrp-insurance-list { display:grid; gap:8px; margin-bottom:18px; }
.acrp-insurance-row { display:flex; align-items:flex-start; gap:10px; padding:12px; border:1px solid var(--acrp-border); border-radius:10px; background:#fff; cursor:pointer; }
.acrp-insurance-row small { display:block; margin-top:3px; color:#777; }
.acrp-single-vehicle-pricing-modes { display:flex; flex-wrap:wrap; gap:12px; margin:12px 0; }
.acrp-single-vehicle-pricing-modes span { padding:8px 12px; border:1px solid var(--acrp-border); border-radius:8px; background:#fff; }
.acrp-rental-day-hours { color:#555; }
.acrp-single-vehicle-calendar-section { margin-top:36px; padding-top:28px; border-top:1px solid var(--acrp-border); }

@media (max-width: 768px) {
  .acrp-search-form.acrp-layout-horizontal .acrp-search-fields,
  .acrp-search-card.acrp-search-layout-horizontal .acrp-search-grid { grid-template-columns: 1fr; }
  .acrp-search-form.acrp-layout-horizontal .acrp-search-field { border-right:0; border-bottom:1px solid var(--acrp-border); }
  .acrp-rental-duration-info { flex-direction:column; }
}

/* ============================================================
   PHASE 7 — Customer UX, authentication, checkout & widgets
   ============================================================ */
.acrp-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--acrp-primary);
	margin-bottom: 5px;
}
.acrp-account-page,
.acrp-auth-page,
.acrp-checkout {
	max-width: 1120px;
	margin: 0 auto;
}
.acrp-account-header,
.acrp-checkout-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}
.acrp-account-header h2,
.acrp-checkout-header h3 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.15;
}
.acrp-account-header .acrp-muted { margin: 6px 0 0; }
.acrp-account-header-badge,
.acrp-payment-secure-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid #cfe8da;
	border-radius: 999px;
	background: #f1faf5;
	color: var(--acrp-green);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
.acrp-account-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acrp-green);
}

/* Customer account: read-only personal information with explicit edit action. */
.acrp-panel-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}
.acrp-panel-heading-row h3 { margin: 0 !important; }
.acrp-personal-info {
	display: grid;
	gap: 0;
	border-top: 1px solid #edf0f4;
}
.acrp-personal-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid #edf0f4;
}
.acrp-personal-label { color: #718096; font-size: 12px; font-weight: 700; }
.acrp-personal-value { color: var(--acrp-text); font-size: 14px; text-align: right; overflow-wrap: anywhere; }
.acrp-account-header > .acrp-btn { flex: 0 0 auto; }
@media (max-width: 620px) {
	.acrp-personal-row { flex-direction: column; gap: 4px; }
	.acrp-personal-value { text-align: left; }
}

.acrp-account-page .acrp-dashboard-grid {
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, .9fr);
	align-items: start;
	gap: 22px;
}
.acrp-account-page .acrp-panel {
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(20, 36, 60, .055);
	padding: 20px;
	margin-bottom: 18px;
}
.acrp-account-page .acrp-panel h3 {
	font-size: 17px;
	margin-bottom: 5px;
}
.acrp-account-page .acrp-profile-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 13px 14px;
}
.acrp-account-page .acrp-profile-form > p { margin: 0; min-width: 0; }
.acrp-account-page .acrp-profile-form > p:last-child { grid-column: 1 / -1; }
.acrp-account-page .acrp-profile-form label,
.acrp-register-panel label,
.acrp-payment-form > p > label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #526174;
	margin-bottom: 6px;
}
.acrp-account-page .acrp-profile-form input,
.acrp-account-page .acrp-profile-form select,
.acrp-register-panel input,
.acrp-register-panel select,
.acrp-payment-form input[type="tel"] {
	width: 100%;
	min-height: 46px;
	box-sizing: border-box;
	border: 1px solid #d7dee8;
	border-radius: 10px;
	background: #fff;
	padding: 10px 12px;
	font: inherit;
	color: var(--acrp-text);
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.acrp-account-page .acrp-profile-form input:focus,
.acrp-account-page .acrp-profile-form select:focus,
.acrp-register-panel input:focus,
.acrp-register-panel select:focus,
.acrp-payment-form input[type="tel"]:focus {
	border-color: var(--acrp-primary);
	box-shadow: 0 0 0 3px rgba(0, 59, 149, .10);
	outline: 0;
}
.acrp-account-page .acrp-profile-form .acrp-phone-row,
.acrp-register-panel .acrp-phone-row { align-items: stretch; }
.acrp-account-page .acrp-table-wrap { overflow-x: auto; }
.acrp-account-page .acrp-table { min-width: 650px; }
.acrp-account-page .acrp-status {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: #f3f6fa;
	font-size: 11px;
}

/* Registration: two clear compartments — reassurance + form. */
.acrp-auth-shell {
	display: grid;
	grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
	background: #fff;
	border: 1px solid #dfe5ec;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(20, 36, 60, .09);
}
.acrp-auth-intro {
	padding: 42px 36px;
	background: linear-gradient(145deg, #003b95, #1b5bbf);
	color: #fff;
}
.acrp-auth-intro .acrp-eyebrow { color: rgba(255,255,255,.78); }
.acrp-auth-intro h2 { color: #fff; margin: 5px 0 12px; font-size: 28px; line-height: 1.15; }
.acrp-auth-intro p { color: rgba(255,255,255,.86); margin-bottom: 24px; }
.acrp-auth-benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.acrp-auth-benefits li { position: relative; padding-left: 30px; color: #fff; font-size: 14px; }
.acrp-auth-benefits li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-weight: 800; }
.acrp-auth-shell > .acrp-register-panel { max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; padding: 38px 40px; }
.acrp-register-panel h2 { margin: 0 0 5px; font-size: 24px; }
.acrp-form-intro { color: #6a7b90; margin-top: 0; }
.acrp-register-panel form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.acrp-register-panel form > p { margin: 0; min-width: 0; }
.acrp-register-panel form > p:nth-of-type(3),
.acrp-register-panel form > p:nth-of-type(4),
.acrp-register-panel form > p:nth-of-type(5),
.acrp-register-panel form > p:nth-of-type(6) { grid-column: 1 / -1; }
.acrp-register-panel form > p.acrp-login-row { grid-column: 1 / -1; align-items: center; margin-top: 4px; }

/* Checkout: order details left, payment action right. */
.acrp-checkout-header { margin-bottom: 22px; }
.acrp-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
	gap: 20px;
	align-items: start;
}
.acrp-checkout-card {
	background: #fff;
	border: 1px solid #dfe5ec;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(20, 36, 60, .06);
	padding: 22px;
}
.acrp-checkout-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #edf0f4;
}
.acrp-checkout-card-head strong { display: block; font-size: 16px; }
.acrp-checkout-card-head small { display: block; color: #718096; margin-top: 2px; }
.acrp-checkout-step {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #edf3fb;
	color: var(--acrp-primary);
	font-weight: 800;
	font-size: 13px;
	flex: 0 0 auto;
}
.acrp-checkout-summary {
	border: 0;
	padding: 0;
	margin: 0;
	background: transparent;
}
.acrp-checkout-summary p {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 0;
	margin: 0;
	border-bottom: 1px solid #edf0f4;
	font-size: 13px;
}
.acrp-checkout-summary p:last-child { border-bottom: 0; padding-bottom: 0; }
.acrp-checkout-summary p strong { color: #657387; font-weight: 600; }
.acrp-checkout-summary p:last-child strong,
.acrp-checkout-summary p:last-child { font-size: 16px; font-weight: 800; color: var(--acrp-primary); }
.acrp-payment-form { max-width: none; }
.acrp-payment-form > p:first-of-type { margin-top: 0; }
.acrp-gateway {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid #d7dee8;
	border-radius: 10px;
	margin-bottom: 9px;
	background: #fff;
	font-size: 14px;
	font-weight: 650;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.acrp-gateway:hover { border-color: #9eb5d6; background: #f8fbff; }
.acrp-gateway input { accent-color: var(--acrp-primary); }
.acrp-payment-form .acrp-btn { width: 100%; min-height: 50px; border-radius: 10px; font-size: 15px; font-weight: 800; }

/* Native plugin widgets. */
.acrp-widget-shell { width: 100%; box-sizing: border-box; }
.acrp-widget-shell .acrp-search-form,
.acrp-widget-shell .acrp-checkout,
.acrp-widget-shell .acrp-auth-page,
.acrp-widget-shell .acrp-account-page { margin-bottom: 0; }
.acrp-widget-search .acrp-search-form { box-shadow: 0 8px 24px rgba(20, 36, 60, .08); }
.acrp-widget-vehicle-list .acrp-fleet-grid { grid-template-columns: 1fr; gap: 12px; }
.acrp-widget-customer-dashboard .acrp-account-header-badge,
.acrp-widget-customer-register .acrp-auth-intro { display: none; }
.acrp-widget-customer-register .acrp-auth-shell { grid-template-columns: 1fr; border-radius: 14px; }
.acrp-widget-customer-register .acrp-auth-shell > .acrp-register-panel { padding: 24px; }
.acrp-widget-checkout .acrp-checkout-layout { grid-template-columns: 1fr; }
.acrp-widget-checkout .acrp-checkout-header { align-items: flex-start; }
.acrp-widget-reviews .acrp-review-card { margin-bottom: 10px; }

@media (max-width: 900px) {
	.acrp-account-page .acrp-dashboard-grid,
	.acrp-checkout-layout { grid-template-columns: 1fr; }
	.acrp-auth-shell { grid-template-columns: 1fr; }
	.acrp-auth-intro { padding: 28px 26px; }
	.acrp-auth-shell > .acrp-register-panel { padding: 28px 26px; }
}
@media (max-width: 620px) {
	.acrp-account-header,
	.acrp-checkout-header { align-items: flex-start; flex-direction: column; }
	.acrp-account-page .acrp-profile-form,
	.acrp-register-panel form { grid-template-columns: 1fr; }
	.acrp-account-page .acrp-profile-form > p:last-child,
	.acrp-register-panel form > p,
	.acrp-register-panel form > p:nth-of-type(3),
	.acrp-register-panel form > p:nth-of-type(4),
	.acrp-register-panel form > p:nth-of-type(5),
	.acrp-register-panel form > p:nth-of-type(6),
	.acrp-register-panel form > p.acrp-login-row { grid-column: 1; }
	.acrp-checkout-card { padding: 17px; }
	.acrp-checkout-summary p { flex-direction: column; gap: 2px; }
	.acrp-auth-intro h2 { font-size: 24px; }
}

/* Client dashboard: the right column contains only personal information. */
.acrp-account-page .acrp-dashboard-grid > div:nth-child(2) { display: block; }

/* ============================================================
   Customer account — polished dashboard matching the reference UI
   ============================================================ */
.acrp-account-page { max-width: 1440px; }
.acrp-account-header-actions { display:flex; align-items:center; gap:16px; }
.acrp-account-logout { color:#e53935; font-weight:700; text-decoration:none; font-size:13px; white-space:nowrap; }
.acrp-account-logout:hover { text-decoration:underline; }
.acrp-account-layout { display:grid; grid-template-columns: 300px minmax(0,1fr) minmax(360px,520px); gap:16px; align-items:start; }
.acrp-account-sidebar, .acrp-account-main, .acrp-account-profile-column { min-width:0; }
.acrp-account-menu { background:#fff; border:1px solid #e5e9ef; border-radius:14px; overflow:hidden; box-shadow:0 8px 24px rgba(20,36,60,.055); }
.acrp-account-menu a { display:flex; align-items:center; gap:13px; min-height:68px; padding:0 18px; color:#26364b; text-decoration:none; font-weight:700; border-bottom:1px solid #edf0f4; transition:background .15s ease,color .15s ease; }
.acrp-account-menu a:last-child { border-bottom:0; }
.acrp-account-menu a:hover, .acrp-account-menu a.is-active { background:#fffaf0; color:#142d50; }
.acrp-menu-icon { width:28px; height:28px; display:grid; place-items:center; color:var(--acrp-primary); font-size:20px; flex:0 0 auto; }
.acrp-account-menu a.is-active .acrp-menu-icon { color:#f0a800; }
.acrp-account-menu b { margin-left:auto; min-width:22px; height:22px; padding:0 6px; display:grid; place-items:center; border-radius:999px; background:#f5b000; color:#fff; font-size:11px; }
.acrp-help-card { margin-top:16px; background:#fff; border:1px solid #e5e9ef; border-radius:14px; padding:24px 22px; box-shadow:0 8px 24px rgba(20,36,60,.055); text-align:left; }
.acrp-help-icon { width:44px; height:44px; border-radius:50%; display:grid; place-items:center; background:#fff6df; color:#efa900; font-size:21px; margin-bottom:12px; }
.acrp-help-card h3 { margin:0 0 8px; font-size:17px; }
.acrp-help-card p { color:#718096; font-size:13px; line-height:1.6; margin:0 0 16px; }
.acrp-btn-outline-accent { background:#fff; color:#e79b00; border:1px solid #efa900; }
.acrp-btn-outline-blue { background:#fff; color:#3570c5; border:1px solid #8db1e4; }
.acrp-btn-outline-accent:hover, .acrp-btn-outline-blue:hover { transform:translateY(-1px); }
.acrp-account-main .acrp-panel, .acrp-account-profile-column .acrp-panel { margin-bottom:16px; }
.acrp-current-bookings-panel { padding:26px 28px !important; }
.acrp-section-heading { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:14px; margin-bottom:2px; border-bottom:1px solid #edf0f4; }
.acrp-section-heading h3 { margin:0 !important; font-size:20px !important; }
.acrp-section-heading p { margin:5px 0 0; color:#7a8798; font-size:12px; }
.acrp-booking-card { display:grid; grid-template-columns:120px minmax(0,1fr) minmax(160px,220px); gap:18px; align-items:center; padding:20px 0; border-bottom:1px solid #edf0f4; }
.acrp-booking-card:last-child { border-bottom:0; padding-bottom:4px; }
.acrp-booking-thumb { width:120px; height:76px; border-radius:12px; overflow:hidden; background:#f4f6f8; display:grid; place-items:center; color:#8290a0; font-size:34px; }
.acrp-booking-thumb img { width:100%; height:100%; object-fit:contain; display:block; }
.acrp-booking-card-info h4 { margin:0 0 7px; font-size:16px; color:#172c47; }
.acrp-booking-dates { color:#53657a; font-size:13px; }
.acrp-booking-location { color:#657387; font-size:12px; margin-top:7px; }
.acrp-booking-card-actions { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.acrp-status-pill { display:inline-flex; align-items:center; justify-content:center; min-height:32px; padding:0 11px; border-radius:8px; font-size:12px; font-weight:700; white-space:nowrap; }
.acrp-status-pill.acrp-status-processing { background:#fff6df; color:#d58b00; }
.acrp-status-pill.acrp-status-confirmed { background:#eaf8eb; color:#1b9a45; }
.acrp-status-pill.acrp-status-cancelled { background:#fff0f0; color:#df4c4c; }
.acrp-booking-buttons { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:7px; }
.acrp-booking-buttons .acrp-btn { white-space:nowrap; }
.acrp-account-main .acrp-panel-past .acrp-panel { margin:0; padding:0; border:0; box-shadow:none; }
.acrp-account-main .acrp-panel-past .acrp-panel > h3 { display:none; }
.acrp-panel-past .acrp-table { min-width:700px; }
.acrp-loyalty-summary { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.acrp-loyalty-summary > div { background:#fafbfc; border:1px solid #edf0f4; border-radius:10px; padding:13px 15px; }
.acrp-loyalty-summary span { display:block; color:#7a8798; font-size:11px; margin-bottom:5px; }
.acrp-loyalty-summary strong { font-size:15px; color:#17304f; }
.acrp-profile-column, .acrp-account-profile-column { position:relative; }
.acrp-panel-profile { padding:22px !important; }
.acrp-profile-title { display:flex; align-items:center; gap:12px; padding-bottom:18px; border-bottom:1px solid #edf0f4; margin-bottom:0; }
.acrp-profile-title h3 { margin:0 !important; font-size:19px !important; }
.acrp-profile-title-icon { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:#fff6df; color:#efa900; font-size:22px; }
.acrp-personal-grid { display:grid; grid-template-columns:1fr 1fr; }
.acrp-personal-item { display:flex; align-items:flex-start; gap:12px; min-width:0; padding:19px 12px 18px 0; border-bottom:1px solid #edf0f4; }
.acrp-personal-item:nth-child(even) { padding-left:18px; border-left:1px solid #edf0f4; padding-right:0; }
.acrp-personal-icon { width:36px; height:36px; flex:0 0 auto; display:grid; place-items:center; border-radius:8px; background:#fff7e3; color:#efa900; font-size:18px; }
.acrp-personal-item > div { min-width:0; }
.acrp-personal-label { display:block; color:#718096; font-size:11px; font-weight:700; margin-bottom:5px; }
.acrp-personal-value { display:block; color:#172c47; font-size:13px; line-height:1.4; overflow-wrap:anywhere; }
.acrp-profile-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:18px; }
.acrp-profile-actions .acrp-btn { width:100%; box-sizing:border-box; min-height:48px; display:flex; align-items:center; justify-content:center; text-align:center; }
.acrp-profile-logout { display:flex; align-items:center; justify-content:center; gap:6px; margin-top:18px; color:#e53935; text-decoration:none; font-weight:700; font-size:13px; }
.acrp-profile-logout:hover { text-decoration:underline; }
.acrp-profile-form, .acrp-password-form { display:grid; grid-template-columns:1fr 1fr; gap:14px; padding-top:20px; }
.acrp-profile-form p, .acrp-password-form p { margin:0; }
.acrp-profile-form p:nth-child(3), .acrp-profile-form p:nth-child(4), .acrp-profile-form p:nth-child(5), .acrp-profile-form p:nth-child(6), .acrp-password-form p:nth-child(3) { grid-column:1 / -1; }
.acrp-profile-form label, .acrp-password-form label { display:block; font-size:11px; font-weight:700; color:#526174; margin-bottom:6px; }
.acrp-profile-form input, .acrp-password-form input { width:100%; min-height:44px; box-sizing:border-box; border:1px solid #d7dee8; border-radius:9px; padding:9px 11px; }
.acrp-profile-edit-actions { grid-column:1 / -1; display:flex; gap:9px; padding-top:3px; }
.acrp-empty-state { padding:35px 15px; text-align:center; color:#718096; }

/* Search engine: the action must occupy the complete final column, with no residual white strip. */
.acrp-search-form.acrp-layout-horizontal { width:100%; box-sizing:border-box; }
.acrp-search-form.acrp-layout-horizontal .acrp-search-fields { width:100%; box-sizing:border-box; grid-template-columns:minmax(0,1.12fr) minmax(0,1.12fr) minmax(0,1.12fr) minmax(0,1.12fr) minmax(170px,.95fr); gap:0; }
.acrp-search-form.acrp-layout-horizontal .acrp-search-action { min-width:0; width:100%; padding:0; margin:0; align-self:stretch; }
.acrp-search-form.acrp-layout-horizontal .acrp-search-submit { width:100% !important; min-width:0; height:100%; min-height:64px; margin:0; box-sizing:border-box; border-radius:14px; }

@media (max-width:1100px) {
  .acrp-account-layout { grid-template-columns:240px minmax(0,1fr); }
  .acrp-account-profile-column { grid-column:1 / -1; }
  .acrp-profile-actions { max-width:700px; }
}
@media (max-width:760px) {
  .acrp-account-header { align-items:flex-start; flex-direction:column; }
  .acrp-account-header-actions { width:100%; justify-content:space-between; }
  .acrp-account-layout { grid-template-columns:1fr; }
  .acrp-account-sidebar { order:1; }
  .acrp-account-main { order:2; }
  .acrp-account-profile-column { order:3; grid-column:auto; }
  .acrp-booking-card { grid-template-columns:90px minmax(0,1fr); }
  .acrp-booking-thumb { width:90px; height:65px; }
  .acrp-booking-card-actions { grid-column:1 / -1; align-items:flex-start; }
  .acrp-booking-buttons { justify-content:flex-start; }
  .acrp-personal-grid, .acrp-profile-actions, .acrp-profile-form, .acrp-password-form { grid-template-columns:1fr; }
  .acrp-personal-item:nth-child(even) { padding-left:0; border-left:0; }
  .acrp-profile-form p:nth-child(n), .acrp-password-form p:nth-child(n) { grid-column:auto; }
  .acrp-profile-edit-actions { grid-column:auto; flex-wrap:wrap; }
}

/* ============================================================
   Customer dashboard — navigation-driven center content
   ============================================================ */
.acrp-account-page .acrp-account-header { display:none; }
.acrp-account-layout { grid-template-columns: 300px minmax(0,1fr) minmax(360px,520px); gap:16px; align-items:start; }
.acrp-account-main > .acrp-panel { display:none; }
.acrp-account-main > .acrp-panel.is-visible { display:block; }
.acrp-account-menu a { position:relative; }
.acrp-account-menu a.is-active { box-shadow: inset 3px 0 0 #f0a800; }
.acrp-account-menu a:focus-visible { outline:2px solid #8db1e4; outline-offset:-2px; }
.acrp-personal-item.is-full { grid-column:1 / -1; padding-right:0; padding-left:0; border-left:0 !important; }
.acrp-panel-documents .acrp-panel { margin:0; }

@media (max-width:1100px) {
  .acrp-account-layout { grid-template-columns:240px minmax(0,1fr); }
  .acrp-account-profile-column { grid-column:1 / -1; }
}
@media (max-width:760px) {
  .acrp-account-layout { grid-template-columns:1fr; }
  .acrp-account-sidebar { order:1; }
  .acrp-account-main { order:2; }
  .acrp-account-profile-column { order:3; grid-column:auto; }
  .acrp-personal-item.is-full { grid-column:auto; }
}


/* ============================================================
   ACRP dashboard UI — hardening for themes/page builders.
   The account widget is self-contained and must keep its 3-column
   layout even when the active theme has generic widget styles.
   ============================================================ */
.acrp-widget-customer-dashboard,
.acrp-widget-customer-dashboard .acrp-account-page,
.acrp-widget-customer-dashboard .acrp-account-layout {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}
.acrp-widget-customer-dashboard .acrp-account-page *,
.acrp-widget-customer-dashboard .acrp-account-page *::before,
.acrp-widget-customer-dashboard .acrp-account-page *::after {
    box-sizing: border-box;
}
.acrp-widget-customer-dashboard .acrp-account-layout {
    display: grid !important;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) minmax(320px, 520px) !important;
    gap: 16px !important;
    align-items: start !important;
    margin: 0 !important;
}
.acrp-widget-customer-dashboard .acrp-account-sidebar,
.acrp-widget-customer-dashboard .acrp-account-main,
.acrp-widget-customer-dashboard .acrp-account-profile-column {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
}
.acrp-widget-customer-dashboard .acrp-account-menu {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #e5e9ef !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(20,36,60,.055) !important;
}
.acrp-widget-customer-dashboard .acrp-account-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 68px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid #edf0f4 !important;
    color: #26364b !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}
.acrp-widget-customer-dashboard .acrp-account-menu a:last-child { border-bottom: 0 !important; }
.acrp-widget-customer-dashboard .acrp-account-menu a:hover,
.acrp-widget-customer-dashboard .acrp-account-menu a.is-active {
    background: #fffaf0 !important;
    color: #142d50 !important;
}
.acrp-widget-customer-dashboard .acrp-account-menu a.is-active { box-shadow: inset 3px 0 0 #f0a800 !important; }
.acrp-widget-customer-dashboard .acrp-menu-icon {
    display: grid !important;
    place-items: center !important;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    color: #003b95 !important;
}
.acrp-widget-customer-dashboard .acrp-account-menu a.is-active .acrp-menu-icon { color: #f0a800 !important; }
.acrp-widget-customer-dashboard .acrp-account-menu b {
    margin-left: auto !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: #f5b000 !important;
    color: #fff !important;
    font-size: 11px !important;
}
.acrp-widget-customer-dashboard .acrp-help-card {
    width: 100% !important;
    margin: 16px 0 0 !important;
    padding: 24px 22px !important;
    background: #fff !important;
    border: 1px solid #e5e9ef !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(20,36,60,.055) !important;
}
.acrp-widget-customer-dashboard .acrp-account-main > .acrp-panel { display: none !important; }
.acrp-widget-customer-dashboard .acrp-account-main > .acrp-panel.is-visible { display: block !important; }
.acrp-widget-customer-dashboard .acrp-account-main .acrp-panel,
.acrp-widget-customer-dashboard .acrp-account-profile-column .acrp-panel {
    width: 100% !important;
    margin: 0 !important;
    padding: 22px !important;
    background: #fff !important;
    border: 1px solid #e5e9ef !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(20,36,60,.055) !important;
}
.acrp-widget-customer-dashboard .acrp-current-bookings-panel { padding: 26px 28px !important; }
.acrp-widget-customer-dashboard .acrp-section-heading { margin: 0 0 2px !important; padding: 0 0 14px !important; }
.acrp-widget-customer-dashboard .acrp-section-heading h3 { margin: 0 !important; font-size: 20px !important; line-height: 1.25 !important; }
.acrp-widget-customer-dashboard .acrp-section-heading p { margin: 5px 0 0 !important; color: #7a8798 !important; font-size: 12px !important; }
.acrp-widget-customer-dashboard .acrp-booking-card { display: grid !important; grid-template-columns: 120px minmax(0,1fr) minmax(160px,220px) !important; gap: 18px !important; align-items: center !important; padding: 20px 0 !important; margin: 0 !important; border-bottom: 1px solid #edf0f4 !important; }
.acrp-widget-customer-dashboard .acrp-booking-thumb { width: 120px !important; height: 76px !important; }
.acrp-widget-customer-dashboard .acrp-booking-card-actions { display: flex !important; flex-direction: column !important; align-items: flex-end !important; gap: 12px !important; }
.acrp-widget-customer-dashboard .acrp-profile-title { display: flex !important; align-items: center !important; gap: 12px !important; padding-bottom: 18px !important; margin: 0 !important; border-bottom: 1px solid #edf0f4 !important; }
.acrp-widget-customer-dashboard .acrp-profile-title h3 { margin: 0 !important; font-size: 19px !important; }
.acrp-widget-customer-dashboard .acrp-personal-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; margin: 0 !important; }
.acrp-widget-customer-dashboard .acrp-personal-item { display: flex !important; align-items: flex-start !important; gap: 12px !important; min-width: 0 !important; padding: 19px 12px 18px 0 !important; margin: 0 !important; border: 0 !important; border-bottom: 1px solid #edf0f4 !important; }
.acrp-widget-customer-dashboard .acrp-personal-item:nth-child(even) { padding-left: 18px !important; padding-right: 0 !important; border-left: 1px solid #edf0f4 !important; }
/* Phone is deliberately a full-width vertical information row. */
.acrp-widget-customer-dashboard .acrp-personal-item.is-full { grid-column: 1 / -1 !important; padding-left: 0 !important; padding-right: 0 !important; border-left: 0 !important; }
.acrp-widget-customer-dashboard .acrp-personal-label { display: block !important; margin: 0 0 5px !important; font-size: 11px !important; line-height: 1.2 !important; }
.acrp-widget-customer-dashboard .acrp-personal-value { display: block !important; font-size: 13px !important; line-height: 1.4 !important; }
.acrp-widget-customer-dashboard .acrp-profile-actions { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-top: 18px !important; }
.acrp-widget-customer-dashboard .acrp-profile-actions .acrp-btn { width: 100% !important; min-height: 48px !important; }
.acrp-widget-customer-dashboard .acrp-profile-logout { display: flex !important; justify-content: center !important; margin-top: 18px !important; }

@media (max-width: 1180px) {
    .acrp-widget-customer-dashboard .acrp-account-layout {
        grid-template-columns: 240px minmax(0,1fr) minmax(300px, 380px) !important;
    }
}
@media (max-width: 900px) {
    .acrp-widget-customer-dashboard .acrp-account-layout {
        grid-template-columns: 240px minmax(0,1fr) !important;
    }
    .acrp-widget-customer-dashboard .acrp-account-profile-column {
        grid-column: 1 / -1 !important;
    }
}
@media (max-width: 700px) {
    .acrp-widget-customer-dashboard .acrp-account-layout { grid-template-columns: 1fr !important; }
    .acrp-widget-customer-dashboard .acrp-account-sidebar,
    .acrp-widget-customer-dashboard .acrp-account-main,
    .acrp-widget-customer-dashboard .acrp-account-profile-column { grid-column: auto !important; }
    .acrp-widget-customer-dashboard .acrp-personal-grid { grid-template-columns: 1fr !important; }
    .acrp-widget-customer-dashboard .acrp-personal-item:nth-child(even) { padding-left: 0 !important; border-left: 0 !important; }
    .acrp-widget-customer-dashboard .acrp-booking-card { grid-template-columns: 90px minmax(0,1fr) !important; }
    .acrp-widget-customer-dashboard .acrp-booking-thumb { width: 90px !important; height: 65px !important; }
    .acrp-widget-customer-dashboard .acrp-booking-card-actions { grid-column: 1 / -1 !important; align-items: flex-start !important; }
    .acrp-widget-customer-dashboard .acrp-profile-actions { grid-template-columns: 1fr !important; }
}
