/**
 * HERA Rental — frontend styles.
 *
 * Everything is scoped under .hera-* and uses CSS variables so it survives an
 * arbitrary host theme and can be re-themed from a single accent setting.
 */

.hera-search,
.hera-results,
.hera-alert,
.hera-checkout {
	--hr-ink: #15212e;
	--hr-muted: #6b7785;
	--hr-surface: #ffffff;
	--hr-sand: #f6f3ee;
	--hr-border: #e6e3dd;
	--hr-accent: #ec8300;
	--hr-accent-ink: #b45f00;
	--hr-radius: 14px;
	--hr-radius-sm: 10px;
	--hr-shadow: 0 1px 2px rgba(21, 33, 46, .06), 0 6px 24px rgba(21, 33, 46, .07);
	--hr-shadow-sm: 0 1px 2px rgba(21, 33, 46, .08);

	color: var(--hr-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.55;
	box-sizing: border-box;
}

.hera-search *,
.hera-results *,
.hera-alert *,
.hera-checkout * {
	box-sizing: border-box;
}

/* ---------- Buttons ---------- */
.hera-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: .8em 1.4em;
	border: 1px solid transparent;
	border-radius: var(--hr-radius-sm);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
}
.hera-btn--primary {
	background: var(--hr-accent);
	color: #fff;
	box-shadow: var(--hr-shadow-sm);
}
.hera-btn--primary:hover { background: var(--hr-accent-ink); color: #fff; transform: translateY(-1px); }
.hera-btn--ghost {
	background: transparent;
	color: var(--hr-ink);
	border-color: var(--hr-border);
}
.hera-btn--ghost:hover { background: var(--hr-sand); }
.hera-btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--hr-accent) 45%, transparent); outline-offset: 2px; }

/* ---------- Journey bar (signature motif) ---------- */
.hera-journey {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.hera-journey__point { display: flex; flex-direction: column; gap: 2px; }
.hera-journey__point--end { text-align: right; align-items: flex-end; }
.hera-journey__label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--hr-muted); }
.hera-journey__point strong { font-size: 16px; }
.hera-journey__station { font-size: 13px; color: var(--hr-muted); }
.hera-journey__rule { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 90px; }
.hera-journey__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hr-accent); flex: none; }
.hera-journey__line { height: 2px; background: var(--hr-border); flex: 1; min-width: 16px; }
.hera-journey__days {
	font-size: 12px;
	font-weight: 700;
	color: var(--hr-accent-ink);
	background: color-mix(in srgb, var(--hr-accent) 12%, var(--hr-surface));
	border: 1px solid color-mix(in srgb, var(--hr-accent) 26%, transparent);
	border-radius: 999px;
	padding: 3px 10px;
	white-space: nowrap;
}

/* ---------- Search widget ---------- */
.hera-search {
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius);
	box-shadow: var(--hr-shadow);
	padding: 22px;
}
.hera-search__title { margin: 0 0 2px; font-size: 22px; }
.hera-search__subtitle { margin: 0 0 18px; color: var(--hr-muted); }
.hera-search__form {
	display: flex;
	align-items: flex-end;
	gap: 14px;
	flex-wrap: wrap;
}
.hera-field { display: flex; flex-direction: column; gap: 6px; }
.hera-field label { font-size: 13px; font-weight: 600; color: var(--hr-muted); }
.hera-field__row { display: flex; gap: 6px; }
.hera-field input {
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-sm);
	padding: .7em .8em;
	font-size: 15px;
	background: var(--hr-surface);
	color: var(--hr-ink);
	min-width: 0;
}
.hera-field input:focus-visible { outline: 3px solid color-mix(in srgb, var(--hr-accent) 40%, transparent); outline-offset: 1px; border-color: var(--hr-accent); }
.hera-field--date { flex: 1 1 220px; }
.hera-field--age input { width: 90px; }
.hera-search__form .hera-journey__rule { flex: 0 0 60px; align-self: center; padding-bottom: 10px; }
.hera-search__submit { flex: 0 0 auto; }
.hera-search__hint { flex-basis: 100%; margin: 0; color: #b4231f; font-size: 13px; }

/* ---------- Results ---------- */
.hera-results__notice { margin-bottom: 16px; }
.hera-results__head {
	background: var(--hr-sand);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius);
	padding: 16px 18px;
	margin-bottom: 16px;
}
.hera-results__count { margin: 10px 0 0; font-weight: 600; color: var(--hr-muted); }

.hera-filterbar {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-bottom: 18px;
}
.hera-filterbar__field { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--hr-muted); }
.hera-filterbar select {
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-sm);
	padding: .55em .7em;
	background: var(--hr-surface);
	color: var(--hr-ink);
	font-size: 14px;
}

.hera-results__list { display: grid; gap: 16px; }

/* ---------- Vehicle card ---------- */
.hera-card-veh {
	display: grid;
	grid-template-columns: 220px 1fr 200px;
	gap: 18px;
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius);
	box-shadow: var(--hr-shadow-sm);
	overflow: hidden;
	transition: box-shadow .15s ease, transform .15s ease;
}
.hera-card-veh:hover { box-shadow: var(--hr-shadow); transform: translateY(-2px); }
.hera-card-veh__media { position: relative; background: var(--hr-sand); display: flex; align-items: center; justify-content: center; min-height: 150px; }
.hera-card-veh__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.hera-card-veh__noimg { color: var(--hr-muted); font-size: 13px; }
.hera-card-veh__chip {
	position: absolute; top: 10px; left: 10px;
	background: var(--hr-ink); color: #fff;
	font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
	padding: 4px 9px; border-radius: 999px;
}
.hera-card-veh__body { padding: 16px 0; }
.hera-card-veh__title { margin: 0 0 2px; font-size: 19px; }
.hera-card-veh__model { margin: 0 0 12px; color: var(--hr-muted); font-size: 14px; }
.hera-card-veh__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hera-card-veh__specs li {
	background: var(--hr-sand);
	border: 1px solid var(--hr-border);
	border-radius: 999px;
	padding: 4px 11px;
	font-size: 13px;
}
.hera-card-veh__badge { background: color-mix(in srgb, var(--hr-accent) 14%, var(--hr-surface)) !important; border-color: color-mix(in srgb, var(--hr-accent) 30%, transparent) !important; color: var(--hr-accent-ink); font-weight: 700; }
.hera-card-veh__more { margin-top: 12px; font-size: 14px; }
.hera-card-veh__more summary { cursor: pointer; color: var(--hr-accent-ink); font-weight: 600; }
.hera-card-veh__price {
	background: var(--hr-sand);
	border-left: 1px solid var(--hr-border);
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 2px;
	text-align: right;
}
.hera-card-veh__price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--hr-muted); }
.hera-card-veh__price-total { font-size: 27px; line-height: 1.1; }
.hera-card-veh__price-day { font-size: 13px; color: var(--hr-muted); margin-bottom: 12px; }
.hera-card-veh__cta { width: 100%; }

/* ---------- Alerts ---------- */
.hera-alert {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-left: 4px solid var(--hr-accent);
	border-radius: var(--hr-radius);
	padding: 18px 20px;
	box-shadow: var(--hr-shadow-sm);
}
.hera-alert--error { border-left-color: #b4231f; }
.hera-alert--empty { border-left-color: var(--hr-muted); }
.hera-alert__icon {
	width: 26px; height: 26px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; color: #fff; background: var(--hr-accent);
}
.hera-alert--error .hera-alert__icon { background: #b4231f; }
.hera-alert--empty .hera-alert__icon { background: var(--hr-muted); }
.hera-alert__message { margin: 0; font-size: 16px; }

.hera-muted { color: var(--hr-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 781px) {
	.hera-card-veh { grid-template-columns: 1fr; }
	.hera-card-veh__price { border-left: 0; border-top: 1px solid var(--hr-border); align-items: stretch; text-align: left; }
	.hera-card-veh__media { min-height: 180px; }
	.hera-search__form { flex-direction: column; align-items: stretch; }
	.hera-search__form .hera-journey__rule { display: none; }
	.hera-field--age input { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.hera-btn, .hera-card-veh { transition: none; }
	.hera-btn--primary:hover, .hera-card-veh:hover { transform: none; }
}

/* v3.1 — polished booking UI / filter bar refinements */
.hera-results__head {
	background: var(--hr-surface);
	box-shadow: var(--hr-shadow-sm);
}
.hera-filterbar {
	position: sticky;
	top: 0;
	z-index: 12;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(8px);
	border: 1px solid var(--hr-border);
	border-radius: 16px;
	box-shadow: var(--hr-shadow-sm);
	padding: 12px;
}
.hera-filterbar__field {
	flex: 1 1 160px;
	min-width: 150px;
}
.hera-filterbar select {
	width: 100%;
	min-height: 42px;
	box-shadow: none;
}
.hera-card-veh {
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(21,33,46,.05), 0 14px 40px rgba(21,33,46,.06);
}
.hera-card-veh__price {
	background: #fbfaf8;
}
.hera-card-veh__cta {
	min-height: 44px;
}
@media (max-width: 781px) {
	.hera-filterbar { position: static; }
}

/* v3.2 — Greek UI + Motors theme hardening for visible form controls */
.hera-search input,
.hera-search select,
.hera-results input,
.hera-results select,
.hera-filterbar select.hera-filter {
	visibility: visible !important;
	opacity: 1 !important;
	display: block !important;
	position: static !important;
	transform: none !important;
	float: none !important;
	clip: auto !important;
	clip-path: none !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 44px !important;
	appearance: auto !important;
	-webkit-appearance: auto !important;
}
.hera-search .nice-select,
.hera-results .nice-select,
.hera-filterbar .nice-select {
	display: none !important;
}
.hera-search__form {
	display: grid;
	grid-template-columns: minmax(260px, 1.25fr) 86px minmax(260px, 1.25fr) minmax(110px, .45fr) auto;
	align-items: end;
	gap: 14px;
}
.hera-search__form .hera-journey__rule {
	flex: none;
	width: 86px;
	padding-bottom: 16px;
}
.hera-field__row input[type="date"] { flex: 1 1 auto; min-width: 165px; }
.hera-field__row input[type="time"] { flex: 0 0 112px; min-width: 112px; }
.hera-field--age input { width: 100% !important; min-width: 88px; }
.hera-search__submit { min-height: 48px; white-space: nowrap; }
.hera-filterbar {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
	gap: 14px;
	align-items: end;
}
.hera-filterbar__field {
	min-width: 0;
	width: 100%;
}
.hera-filter-reset {
	min-height: 44px;
	white-space: nowrap;
}
@media (max-width: 1100px) {
	.hera-search__form { grid-template-columns: 1fr 1fr; }
	.hera-search__form .hera-journey__rule { display: none; }
	.hera-search__submit { width: 100%; }
	.hera-filterbar { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
}
@media (max-width: 640px) {
	.hera-search__form,
	.hera-filterbar { grid-template-columns: 1fr; }
	.hera-field__row { flex-direction: column; }
	.hera-field__row input[type="date"],
	.hera-field__row input[type="time"] { flex-basis: auto; min-width: 0; width: 100%; }
}

/* v3.4 — compact datetime search + reliable filter hiding */
.hera-search--compact {
	padding: 26px 28px;
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(21,33,46,.06), 0 12px 34px rgba(21,33,46,.08);
}
.hera-search--compact .hera-search__head {
	margin-bottom: 18px;
}
.hera-search--compact .hera-search__title {
	font-size: 26px;
	letter-spacing: -.02em;
}
.hera-search__form--datetime {
	display: grid;
	grid-template-columns: minmax(240px, 1.2fr) minmax(240px, 1.2fr) minmax(110px, .42fr) auto;
	gap: 16px;
	align-items: end;
}
.hera-search__form--datetime .hera-field--datetime,
.hera-search__form--datetime .hera-field--age {
	min-width: 0;
}
.hera-search__form--datetime input[type="datetime-local"],
.hera-search__form--datetime input[type="number"] {
	width: 100% !important;
	min-height: 54px !important;
	padding: 13px 15px !important;
	border-radius: 14px !important;
	font-size: 16px !important;
}
.hera-search__form--datetime .hera-search__submit {
	min-height: 54px;
	padding-left: 28px;
	padding-right: 28px;
	border-radius: 12px;
}
.hera-search__form--datetime .hera-journey__rule {
	display: none !important;
}
.hera-card-veh.is-filtered-out {
	display: none !important;
}
@media (max-width: 980px) {
	.hera-search__form--datetime { grid-template-columns: 1fr 1fr; }
	.hera-search__form--datetime .hera-search__submit { width: 100%; }
}
@media (max-width: 640px) {
	.hera-search--compact { padding: 20px; }
	.hera-search__form--datetime { grid-template-columns: 1fr; }
}

/* v3.9 — orange hero search, dynamic locations and static fleet list */
.hera-search--orange {
	background: var(--hr-accent);
	border: 0;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(0,0,0,.12);
	padding: 28px 30px;
	max-width: 430px;
}
.hera-search__form--hero {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 20px !important;
	align-items: stretch;
}
.hera-search--orange .hera-search__block { display: grid; gap: 12px; }
.hera-search--orange h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #101820;
}
.hera-select-field,
.hera-datetime-field {
	position: relative;
	display: block;
}
.hera-field-icon {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	opacity: .55;
	z-index: 2;
	pointer-events: none;
}
.hera-search--orange select,
.hera-search--orange input[type="datetime-local"],
.hera-search--orange input[type="number"] {
	width: 100% !important;
	min-height: 46px !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: #fff !important;
	color: #182331 !important;
	font-size: 15px !important;
	padding: 11px 13px 11px 42px !important;
	box-shadow: none !important;
}
.hera-search--orange select {
	color: var(--hr-accent-ink) !important;
	appearance: auto !important;
}
.hera-select-field.is-disabled select {
	opacity: .72 !important;
	cursor: not-allowed;
}
.hera-same-return,
.hera-age-check {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 650;
	color: #111;
	margin: 0;
}
.hera-same-return input,
.hera-age-check input {
	width: 18px !important;
	height: 18px !important;
	min-height: 18px !important;
	margin: 0 !important;
	accent-color: #111;
}
.hera-age-custom { display: grid; gap: 6px; color: #111; font-weight: 700; }
.hera-search--orange .hera-btn--black,
.hera-btn--black {
	background: #050505;
	color: #fff;
	border-color: #050505;
	min-height: 58px;
	border-radius: 6px;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 3px 0 rgba(0,0,0,.25);
}
.hera-search--orange .hera-search__submit { justify-self: start; margin-top: 8px; padding: 14px 22px; }
.hera-search--orange .hera-search__hint { color: #111; background: rgba(255,255,255,.72); border-radius: 6px; padding: 8px 10px; }

.hera-fleet {
	display: grid;
	gap: 18px;
}
.hera-fleet--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hera-fleet--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hera-fleet--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hera-fleet-card {
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: 18px;
	box-shadow: var(--hr-shadow-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.hera-fleet-card__media {
	position: relative;
	background: var(--hr-sand);
	height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hera-fleet-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.hera-fleet-card__body { padding: 18px; display: grid; gap: 10px; flex: 1; }
.hera-fleet-card__group { color: var(--hr-accent-ink); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.hera-fleet-card h3 { margin: 0; font-size: 21px; line-height: 1.18; }
.hera-fleet-card p { margin: 0; color: var(--hr-muted); }
.hera-fleet-card__price { margin-top: 4px; font-size: 16px; font-weight: 900; color: var(--hr-ink); }
.hera-fleet-card .hera-btn { margin-top: auto; }
@media (max-width: 980px) {
	.hera-fleet--cols-3,
	.hera-fleet--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.hera-search--orange { max-width: none; padding: 24px; }
	.hera-fleet,
	.hera-fleet--cols-2,
	.hera-fleet--cols-3,
	.hera-fleet--cols-4 { grid-template-columns: 1fr; }
}
.hera-select-field.is-disabled select { pointer-events: none; }

/* v4.0 — polished orange search panel, true hidden dependent fields and line icons */
.hera-search [hidden],
.hera-search .is-hidden {
	display: none !important;
}
.hera-search--orange {
	max-width: 430px;
	padding: 30px;
	border-radius: 10px;
	background: #f18700;
	box-shadow: 0 16px 38px rgba(0,0,0,.16);
}
.hera-search--orange .hera-search__form--hero {
	gap: 22px !important;
}
.hera-search__panel-head {
	margin-bottom: -2px;
}
.hera-search__panel-head h2 {
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -.02em;
	color: #08131f;
}
.hera-search__panel-head p {
	margin: 0;
	font-size: 14px;
	color: rgba(8,19,31,.72);
}
.hera-search--orange .hera-search__block {
	gap: 11px;
}
.hera-search--orange h3 {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: .01em;
	color: #07131f;
}
.hera-control {
	position: relative;
	display: block;
}
.hera-search--orange .hera-control select,
.hera-search--orange .hera-control input[type="datetime-local"],
.hera-search--orange .hera-control input[type="number"] {
	min-height: 52px !important;
	border-radius: 7px !important;
	background: #fff !important;
	color: #172230 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	padding: 13px 14px 13px 46px !important;
	border: 1px solid rgba(255,255,255,.85) !important;
	box-shadow: 0 1px 0 rgba(0,0,0,.03) !important;
}
.hera-search--orange .hera-control select:focus,
.hera-search--orange .hera-control input:focus {
	outline: 3px solid rgba(255,255,255,.32) !important;
	border-color: #fff !important;
}
.hera-search--orange .hera-control select {
	appearance: auto !important;
	-webkit-appearance: auto !important;
}
.hera-svg svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	display: block;
}
.hera-field-icon.hera-svg {
	left: 15px;
	color: #000;
	opacity: 1;
}
.hera-btn__icon.hera-svg svg {
	width: 17px;
	height: 17px;
	stroke-width: 2.5;
}
.hera-search .nice-select,
.hera-search label > .nice-select,
.hera-search .select2,
.hera-search .select2-container {
	display: none !important;
	visibility: hidden !important;
}
.hera-checkline {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 800;
	color: #111;
	margin: 0;
	cursor: pointer;
}
.hera-checkline input[type="checkbox"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	border-radius: 4px !important;
	border: 2px solid #111 !important;
	background: transparent !important;
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	display: inline-block !important;
}
.hera-checkline input[type="checkbox"]:checked {
	background: #111 !important;
}
.hera-checkline input[type="checkbox"]:checked:after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.hera-search--orange .hera-btn--black {
	min-height: 58px;
	padding: 16px 24px;
	border-radius: 6px;
	
	color: #fff;
	box-shadow: 0 4px 0 rgba(0,0,0,.22);
	letter-spacing: .01em;
}
.hera-search--orange .hera-btn--black:hover {
	background: #15212e;
	transform: translateY(-1px);
}
.hera-search--orange .hera-search__submit {
	justify-self: start;
	margin-top: 4px;
}

/* v4.0 — polished static fleet cards with line icons */
.hera-fleet {
	--hr-fleet-media: #f7f3ed;
}
.hera-fleet-card {
	border-radius: 20px;
	box-shadow: 0 1px 2px rgba(21,33,46,.05), 0 14px 36px rgba(21,33,46,.08);
	transition: transform .16s ease, box-shadow .16s ease;
}
.hera-fleet-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 2px 6px rgba(21,33,46,.06), 0 20px 46px rgba(21,33,46,.12);
}
.hera-fleet-card__media {
	height: 210px;
	background: linear-gradient(180deg, #fbfaf8 0%, var(--hr-fleet-media) 100%);
}
.hera-fleet-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
}
.hera-fleet-card__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 36px);
	height: calc(100% - 36px);
	border: 1px dashed var(--hr-border);
	border-radius: 14px;
	color: var(--hr-muted);
	font-size: 14px;
}
.hera-fleet-card__body {
	padding: 22px;
	gap: 12px;
}
.hera-fleet-card h3 {
	font-size: 23px;
}
.hera-fleet-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.hera-fleet-card__group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(236,131,0,.1);
	color: var(--hr-accent-ink);
}
.hera-fleet-card__specs {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}
.hera-fleet-card__specs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 10px;
	border: 1px solid var(--hr-border);
	border-radius: 999px;
	background: #fbfaf8;
	font-size: 13px;
	color: #263241;
}
.hera-fleet-card__specs .hera-svg {
	color: var(--hr-accent-ink);
	flex: 0 0 auto;
}
.hera-fleet-card__specs .hera-svg svg {
	width: 15px;
	height: 15px;
	stroke-width: 2.2;
}
.hera-fleet-card__price {
	padding: 12px 14px;
	border-radius: 14px;
	background: #fbfaf8;
	border: 1px solid var(--hr-border);
}
@media (max-width: 640px) {
	.hera-search--orange { padding: 26px 24px; }
	.hera-fleet-card__specs { grid-template-columns: 1fr; }
}

/* v4.3.1 — working-hour controlled date/time combo fields */
.hera-search--orange .hera-datetime-combo {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 112px;
	gap: 8px;
	align-items: stretch;
}
.hera-search--orange .hera-datetime-combo .hera-field-icon {
	top: 26px;
}
.hera-search--orange .hera-datetime-combo input[type="date"],
.hera-search--orange .hera-datetime-combo select.hera-time-select {
	width: 100% !important;
	min-height: 52px !important;
	border-radius: 7px !important;
	background: #fff !important;
	color: #172230 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	border: 1px solid rgba(255,255,255,.85) !important;
	box-shadow: 0 1px 0 rgba(0,0,0,.03) !important;
}
.hera-search--orange .hera-datetime-combo input[type="date"] {
	padding: 0px 14px 0px 46px !important;
}
.hera-search--orange .hera-datetime-combo select.hera-time-select {
	padding: 13px 10px !important;
	appearance: auto !important;
	-webkit-appearance: auto !important;
}
.hera-search--orange .hera-datetime-combo input[type="date"]:focus,
.hera-search--orange .hera-datetime-combo select.hera-time-select:focus {
	outline: 3px solid rgba(255,255,255,.32) !important;
	border-color: #fff !important;
}
@media (max-width: 420px) {
	.hera-search--orange .hera-datetime-combo {
		grid-template-columns: 1fr;
	}
	.hera-search--orange .hera-datetime-combo select.hera-time-select {
		padding-left: 46px !important;
	}
}


/* v4.5.1 — premium results card grid */
.hera-results {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 18px 34px;
}
.hera-results__head {
	background: #fff;
	border: 1px solid var(--hr-border);
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(21, 33, 46, .07);
	padding: 24px 30px;
	margin: 0 0 20px;
}
.hera-results .hera-journey {
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.hera-results .hera-journey__point {
	min-width: 190px;
}
.hera-results .hera-journey__point strong {
	font-size: 17px;
	letter-spacing: -.01em;
}
.hera-results .hera-journey__rule {
	flex: 1 1 auto;
	min-width: 220px;
}
.hera-results .hera-journey__line {
	height: 2px;
	background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--hr-accent) 70%, #fff) 0 5px, transparent 5px 10px);
}
.hera-results .hera-journey__days {
	background: color-mix(in srgb, var(--hr-accent) 8%, #fff);
	border-color: color-mix(in srgb, var(--hr-accent) 34%, var(--hr-border));
	color: var(--hr-accent-ink);
	font-weight: 850;
}
.hera-filterbar {
	background: #fff;
	border: 1px solid var(--hr-border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(21, 33, 46, .055);
	padding: 22px 24px;
	margin: 0 0 18px;
	display: block;
}
.hera-filterbar__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}
.hera-filterbar__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: var(--hr-ink);
}
.hera-filterbar__icon {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	background: color-mix(in srgb, var(--hr-accent) 10%, #fff);
	color: var(--hr-accent-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}
.hera-filter-reset {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: transparent;
	color: var(--hr-ink);
	font-weight: 800;
	cursor: pointer;
	padding: 6px 0;
}
.hera-filterbar__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(130px, 1fr)) minmax(150px, auto);
	gap: 16px;
	align-items: end;
}
.hera-filterbar__field {
	gap: 7px;
	font-size: 12px;
	font-weight: 700;
	color: var(--hr-muted);
}
.hera-filterbar select,
.hera-results__sort select {
	min-height: 44px;
	width: 100%;
	border: 1px solid var(--hr-border);
	border-radius: 12px;
	background: #fff;
	color: var(--hr-ink);
	padding: 0 14px;
	box-shadow: none;
}
.hera-filter-apply {
	min-height: 44px;
	border-radius: 12px;
	font-weight: 900;
}
.hera-results__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 12px 2px 16px;
}
.hera-results__count {
	margin: 0;
	font-size: 14px;
	color: var(--hr-ink);
	font-weight: 650;
}
.hera-results__sort {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--hr-muted);
}
.hera-results__sort select {
	min-width: 220px;
}
.hera-results__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.hera-card-veh {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hr-border);
	box-shadow: 0 14px 34px rgba(21, 33, 46, .065);
	min-height: 100%;
	position: relative;
}
.hera-card-veh:hover {
	box-shadow: 0 22px 48px rgba(21, 33, 46, .105);
	transform: translateY(-3px);
}
.hera-card-veh__media {
	min-height: 245px;
	background: linear-gradient(180deg, #fbfbfa 0%, #f1efec 100%);
	border-bottom: 1px solid var(--hr-border);
}
.hera-card-veh__media img {
	width: 100%;
	height: 245px;
	object-fit: contain;
	padding: 18px 24px 8px;
	transform: scale(1.08);
	transform-origin: center bottom;
}
.hera-card-veh__chip {
	top: 16px;
	left: 16px;
	background: var(--hr-ink);
	color: #fff;
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 900;
	box-shadow: 0 8px 16px rgba(21,33,46,.12);
}
.hera-card-veh__body {
	padding: 20px 20px 10px;
}
.hera-card-veh__title {
	font-size: 22px;
	letter-spacing: -.025em;
	margin-bottom: 1px;
}
.hera-card-veh__model {
	margin-bottom: 14px;
}
.hera-card-veh__specs {
	gap: 8px;
}
.hera-card-veh__specs li {
	background: #fff;
	border-color: var(--hr-border);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #364353;
}
.hera-card-veh__badge {
	background: color-mix(in srgb, var(--hr-accent) 10%, #fff) !important;
	border-color: color-mix(in srgb, var(--hr-accent) 25%, var(--hr-border)) !important;
	color: var(--hr-accent-ink);
}
.hera-card-veh__more {
	margin-top: 10px;
}
.hera-card-veh__price {
	background: #fff;
	border-left: 0;
	border-top: 1px solid var(--hr-border);
	padding: 18px 20px 20px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px 18px;
	text-align: left;
}
.hera-card-veh__price-label {
	grid-column: 2;
	text-align: right;
	font-size: 11px;
	font-weight: 800;
}
.hera-card-veh__price-total {
	grid-column: 2;
	text-align: right;
	font-size: 32px;
	letter-spacing: -.05em;
	line-height: .95;
}
.hera-card-veh__price-day {
	grid-column: 2;
	text-align: right;
	margin: -4px 0 0;
	font-size: 13px;
}
.hera-card-veh__cta {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 50px;
	border-radius: 12px;
	font-weight: 900;
	justify-content: center;
}
.hera-card-veh__cta span {
	margin-left: auto;
	font-size: 20px;
	line-height: 1;
}
.hera-card-veh.is-filtered-out {
	display: none !important;
}
@media (max-width: 900px) {
	.hera-filterbar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hera-filter-apply {
		grid-column: 1 / -1;
	}
	.hera-results__list {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.hera-results {
		padding: 0 12px 28px;
	}
	.hera-results__head,
	.hera-filterbar {
		border-radius: 16px;
		padding: 18px;
	}
	.hera-results .hera-journey__point,
	.hera-results .hera-journey__rule {
		min-width: 100%;
	}
	.hera-results .hera-journey__point--end {
		text-align: left;
		align-items: flex-start;
	}
	.hera-filterbar__grid,
	.hera-results__toolbar {
		grid-template-columns: 1fr;
		display: grid;
	}
	.hera-results__sort {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.hera-results__sort select {
		min-width: 0;
	}
	.hera-card-veh__media,
	.hera-card-veh__media img {
		height: 220px;
		min-height: 220px;
	}
}


/* v4.5.7 — premium hero booking card */
.hera-search--orange {
	--hr-search-orange: #f58a00;
	--hr-search-orange-dark: #e87800;
	width: 100%;
	max-width: 470px;
	padding: 0;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(145deg, #ff9800 0%, var(--hr-search-orange) 58%, var(--hr-search-orange-dark) 100%);
	box-shadow: 0 28px 70px rgba(19, 27, 37, .24), 0 8px 24px rgba(19, 27, 37, .14);
	border: 1px solid rgba(255,255,255,.22);
}
.hera-search--orange .hera-search__form--hero {
	gap: 18px !important;
	padding: 22px 24px 0;
}
.hera-search__panel-head { margin: 2px 0 2px; }
.hera-search__panel-head h2 {
	margin: 0 0 5px;
	font-size: clamp(24px, 2vw, 29px);
	line-height: 1.12;
	font-weight: 950;
	letter-spacing: -.035em;
	color: #111a23;
}
.hera-search__panel-head p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	color: rgba(17,26,35,.7);
}
.hera-search--orange .hera-search__block { gap: 9px; }
.hera-search--orange h3 {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .055em;
	color: #17212b;
}
.hera-search--orange .hera-control select,
.hera-search--orange .hera-control input[type="date"],
.hera-search--orange .hera-control input[type="datetime-local"],
.hera-search--orange .hera-control input[type="number"],
.hera-search--orange .hera-datetime-combo select.hera-time-select {
	min-height: 54px !important;
	border-radius: 10px !important;
	border: 1px solid rgba(17,26,35,.05) !important;
	background: rgba(255,255,255,.98) !important;
	box-shadow: 0 6px 14px rgba(20,28,38,.07), inset 0 1px 0 #fff !important;
	font-weight: 650 !important;
	color: #000 !important;
	transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.hera-search--orange .hera-control select:hover,
.hera-search--orange .hera-control input:hover {
	border-color: rgba(17,26,35,.12) !important;
}
.hera-search--orange .hera-control select:focus,
.hera-search--orange .hera-control input:focus,
.hera-search--orange .hera-datetime-combo select.hera-time-select:focus {
	outline: 0 !important;
	border-color: rgba(17,26,35,.26) !important;
	box-shadow: 0 0 0 4px rgba(255,255,255,.28), 0 8px 18px rgba(20,28,38,.08) !important;
}
.hera-search--orange .hera-datetime-combo {
	grid-template-columns: minmax(0, 1fr) 116px;
	gap: 9px;
}
.hera-search--orange .hera-datetime-combo .hera-field-icon { top: 27px; }
.hera-field-icon.hera-svg { color: #000; }
.hera-checkline {
	font-size: 13px;
	font-weight: 800;
	color: #000;
	gap: 9px;
}
.hera-checkline input[type="checkbox"] {
	width: 17px !important;
	height: 17px !important;
	min-width: 17px !important;
	min-height: 17px !important;
	border-radius: 5px !important;
	border-color: #17212b !important;
}
.hera-checkline input[type="checkbox"]:checked { background: #17212b !important; }
.hera-search--orange .hera-btn--black {
	width: 100%;
	min-height: 60px;
	margin-top: 2px;
	padding: 16px 22px;
	border-radius: 10px;
	background: #17212b;
	border-color: #17212b;
	box-shadow: 0 9px 22px rgba(10,16,22,.22);
	font-size: 14px;
	font-weight: 950;
	letter-spacing: .035em;
}
.hera-search--orange .hera-btn--black:hover {
	background: #0f171f;
	transform: translateY(-2px);
	box-shadow: 0 13px 28px rgba(10,16,22,.28);
}
.hera-search--orange .hera-search__submit { justify-self: stretch; }
.hera-search__trust {
	margin: 2px -24px 0;
	padding: 15px 18px 17px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	background: rgba(255,255,255,.96);
	border-top: 1px solid rgba(17,26,35,.08);
	box-shadow: 0 -7px 20px rgba(20,28,38,.05);
}
.hera-search__trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	padding: 0 9px;
	color: #17212b;
}
.hera-search__trust-item + .hera-search__trust-item { border-left: 1px solid #e8ebee; }
.hera-search__trust-icon {
	flex: 0 0 auto;
	width: 23px;
	height: 23px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #17212b;
}
.hera-search__trust-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.hera-search__trust-item > span:last-child { display: grid; line-height: 1.1; min-width: 0; }
.hera-search__trust-item strong {
	font-size: 10px;
	font-weight: 900;
	white-space: nowrap;
}
.hera-search__trust-item small {
	margin-top: 3px;
	font-size: 10px;
	color: #68737d;
	white-space: nowrap;
}
@media (max-width: 520px) {
	.hera-search--orange { max-width: none; border-radius: 15px; }
	.hera-search--orange .hera-search__form--hero { padding: 18px 18px 0; gap: 16px !important; }
	.hera-search__vehicle-tab { min-height: 45px; padding: 11px 8px; font-size: 12px; }
	.hera-search__panel-head h2 { font-size: 26px; }
	.hera-search__trust { margin-inline: -18px; padding-inline: 8px; }
	.hera-search__trust-item { gap: 5px; padding-inline: 5px; }
	.hera-search__trust-icon { width: 18px; height: 18px; }
	.hera-search__trust-icon svg { width: 17px; height: 17px; }
	.hera-search__trust-item strong,
	.hera-search__trust-item small { font-size: 9px; }
}
@media (max-width: 390px) {
	.hera-search__trust-icon { display: none; }
}


/* v4.5.10 — clean premium vehicle family switch */
.hera-search__vehicle-switch {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	width: 100%;
	min-height: 58px;
	padding: 4px;
	border-radius: 18px;
	background: rgba(17, 26, 35, .18);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(17,26,35,.08);
	isolation: isolate;
	overflow: hidden;
}
.hera-search__vehicle-switch-thumb {
	position: absolute;
	z-index: 0;
	top: 4px;
	bottom: 4px;
	left: 4px;
	width: calc(50% - 4px);
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
	box-shadow: 0 10px 24px rgba(17,26,35,.18), 0 2px 8px rgba(17,26,35,.08);
	transition: transform .28s cubic-bezier(.22,.8,.28,1);
}
.hera-search__vehicle-switch.is-commercial .hera-search__vehicle-switch-thumb {
	transform: translateX(100%);
}
.hera-search__vehicle-switch-option {
	position: relative;
	z-index: 1;
	appearance: none;
	border: 0;
	background: transparent;
	min-width: 0;
	min-height: 50px;
	padding: 10px 14px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: rgba(255,255,255,.92);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.01em;
	text-transform: none;
	cursor: pointer;
	transition: color .22s ease, transform .14s ease, opacity .2s ease;
}
.hera-search__vehicle-switch-option:hover {
	transform: translateY(-1px);
}
.hera-search__vehicle-switch-option.is-active {
	color: #15202b;
}
.hera-search__vehicle-switch-option:not(.is-active) {
	opacity: .9;
}
.hera-search__vehicle-switch-option:focus-visible {
	outline: 3px solid rgba(255,255,255,.35);
	outline-offset: 2px;
}
.hera-search__vehicle-switch-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hera-search__vehicle-switch-option.is-active .hera-search__vehicle-switch-icon {
	color: #ec8b00;
}
.hera-search__vehicle-switch-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}
@media (max-width: 420px) {
	.hera-search__vehicle-switch {
		min-height: 54px;
		border-radius: 16px;
	}
	.hera-search__vehicle-switch-thumb {
		border-radius: 12px;
	}
	.hera-search__vehicle-switch-option {
		padding-inline: 8px;
		font-size: 12px;
		gap: 6px;
	}
	.hera-search__vehicle-switch-icon {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
	}
}


/* v4.5.11 — isolate the vehicle switch from Motors theme button rules */
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option,
.stm-template-car_rental_elementor .hera-search__vehicle-switch .hera-search__vehicle-switch-option,
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	border: 0 !important;
	outline: 0;
	text-shadow: none !important;
	filter: none !important;
}
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:hover,
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:focus,
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:active,
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option:hover,
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option:focus,
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option:active {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	border: 0 !important;
}
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option.is-active,
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option.is-active {
	color: #15202b ;
}
.stm-template-car_rental_elementor .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:not(.is-active),
.hera-search__vehicle-switch button.hera-search__vehicle-switch-option:not(.is-active) {
	color: rgba(255,255,255,.92);
}


/* v4.5.12 — cleaner vehicle title and icon specifications */
.hera-card-veh__title {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 16px;
}
.hera-card-veh__title strong {
	font: inherit;
	font-weight: 850;
	color: var(--hr-ink);
}
.hera-card-veh__title span {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--hr-muted);
}
.hera-card-veh__model { display: none !important; }
.hera-card-veh__specs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
}
.hera-card-veh__specs li,
.hera-card-veh__specs li.hera-card-veh__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	padding: 7px 10px;
	border: 1px solid #e6e8ea !important;
	border-radius: 10px;
	background: #f8f9f9 !important;
	box-shadow: none;
	color: #263542;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}
.hera-card-veh__specs li svg {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	fill: none;
	stroke: #f28a00;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.hera-card-veh__specs li.hera-card-veh__spec--wide {
	padding-inline: 11px;
}
.hera-card-veh__specs li.hera-card-veh__badge {
	color: #9b5700;
	border-color: #f3d0a1 !important;
	background: #fff7ec !important;
}
@media (max-width: 520px) {
	.hera-card-veh__title { margin-bottom: 14px; }
	.hera-card-veh__title span { font-size: 13px; }
	.hera-card-veh__specs { gap: 7px; }
	.hera-card-veh__specs li,
	.hera-card-veh__specs li.hera-card-veh__badge {
		min-height: 34px;
		padding: 6px 9px;
	}
}


/* v4.5.13 — richer live result cards */
.hera-card-veh__media { min-height: 225px; }
.hera-card-veh__media img { height: 225px; padding-top: 12px; }
.hera-card-veh__media-badges {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	z-index: 2;
}
.hera-card-veh__media-badges .hera-card-veh__chip {
	position: static;
	box-shadow: 0 6px 16px rgba(21,33,46,.1);
}
.hera-card-veh__group {
	display: inline-flex;
	align-items: center;
	min-height: 27px;
	padding: 5px 9px;
	border: 1px solid rgba(21,33,46,.1);
	border-radius: 999px;
	background: rgba(255,255,255,.9);
	box-shadow: 0 6px 16px rgba(21,33,46,.08);
	color: #65707b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .02em;
}
.hera-card-veh__availability {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 9px;
	border: 1px solid #d7eadf;
	border-radius: 999px;
	background: rgba(247,253,249,.94);
	color: #247447;
	font-size: 10px;
	font-weight: 850;
	z-index: 2;
}
.hera-card-veh__availability i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2cad62;
	box-shadow: 0 0 0 3px rgba(44,173,98,.12);
}
.hera-card-veh__included {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #eceeef;
}
.hera-card-veh__included-title {
	display: block;
	margin-bottom: 8px;
	color: #68737d;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .07em;
	text-transform: uppercase;
}
.hera-card-veh__included ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 7px 14px;
}
.hera-card-veh__included li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #43505b;
	font-size: 11px;
	font-weight: 650;
}
.hera-card-veh__included li svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: #27a25d;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.hera-card-veh__price-main {
	grid-column: 2;
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 6px;
}
.hera-card-veh__price-main .hera-card-veh__price-total { grid-column: auto; }
.hera-card-veh__price-main > span {
	color: var(--hr-muted);
	font-size: 11px;
	font-weight: 650;
}
.hera-card-veh__cta { min-height: 52px; }
@media (max-width: 520px) {
	.hera-card-veh__media,
	.hera-card-veh__media img { min-height: 210px; height: 210px; }
	.hera-card-veh__availability { top: 14px; right: 12px; }
	.hera-card-veh__media-badges { left: 12px; }
	
	.hera-card-veh__included ul { gap: 7px 11px; }
	.hera-card-veh__price-main { flex-wrap: wrap; gap: 3px 6px; }
}


/* v4.5.22 — mobile polish for results */
@media (max-width: 767px) {
	.hera-results {
		padding: 0 10px 26px;
	}
	.hera-results__head {
		padding: 14px 14px 16px;
		border-radius: 20px;
		margin-bottom: 16px;
	}
	.hera-results .hera-journey {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.hera-results .hera-journey__point {
		min-width: 0;
		background: #fafafa;
		border: 1px solid var(--hr-border);
		border-radius: 16px;
		padding: 12px 14px;
	}
	.hera-results .hera-journey__label {
		display: block;
		margin-bottom: 5px;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: var(--hr-muted);
	}
	.hera-results .hera-journey__point strong {
		font-size: 18px;
		line-height: 1.18;
	}
	.hera-results .hera-journey__station {
		display: block;
		margin-top: 4px;
	}
	.hera-results .hera-journey__rule {
		min-width: 0;
		display: grid;
		grid-template-columns: 14px 1fr auto 1fr 14px;
		align-items: center;
		gap: 8px;
		padding: 0 4px;
	}
	.hera-results .hera-journey__dot {
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: var(--hr-accent);
		justify-self: center;
	}
	.hera-results .hera-journey__days {
		justify-self: center;
		padding: 8px 13px;
		font-size: 13px;
	}
	.hera-filterbar {
		padding: 16px 14px 14px;
		border-radius: 20px;
		margin-bottom: 16px;
	}
	.hera-filterbar__top {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-bottom: 12px;
	}
	.hera-filterbar__title strong {
		font-size: 17px;
		line-height: 1.25;
	}
	.hera-filterbar__icon {
		width: 32px;
		height: 32px;
		border-radius: 12px;
		font-size: 15px;
	}
	.hera-filter-reset {
		width: 100%;
		justify-content: center;
		min-height: 44px;
		padding: 0 14px;
		border: 1px solid var(--hr-border);
		border-radius: 12px;
		background: #f8f8f8;
	}
	.hera-filterbar__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.hera-filterbar__field {
		gap: 6px;
	}
	.hera-filterbar__field span {
		font-size: 11px;
	}
	.hera-filterbar select,
	.hera-results__sort select {
		min-height: 48px;
		border-radius: 14px;
		padding: 0 12px;
	}
	.hera-filter-apply {
		grid-column: 1 / -1;
		min-height: 50px;
		border-radius: 14px;
	}
	.hera-results__toolbar {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 10px 2px 14px;
	}
	.hera-results__count {
		margin: 0;
		font-size: 14px;
	}
	.hera-results__sort {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.hera-results__sort > span {
		font-size: 11px;
		font-weight: 800;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: var(--hr-muted);
	}
	.hera-results__list {
		gap: 16px;
	}
	.hera-card-veh {
		border-radius: 22px;
		overflow: hidden;
		box-shadow: 0 14px 30px rgba(21, 33, 46, .08);
	}
	.hera-card-veh__media {
		height: 186px;
		min-height: 186px;
		padding: 12px 12px 0;
	}
	.hera-card-veh__media img {
		height: 168px;
		min-height: 168px;
		object-fit: contain;
	}
	.hera-card-veh__media-badges {
		top: 12px;
		left: 12px;
		gap: 8px;
	}
	.hera-card-veh__availability {
		top: 12px;
		right: 12px;
		padding: 6px 10px;
		font-size: 11px;
	}
	.hera-card-veh__body {
		padding: 18px 14px 14px;
	}
	.hera-card-veh__title {
		gap: 6px;
		align-items: flex-start;
		margin-bottom: 14px;
	}
	.hera-card-veh__title strong {
		font-size: 19px;
		line-height: 1.15;
	}
	.hera-card-veh__title span {
		font-size: 13px;
	}
	.hera-card-veh__specs {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}
	.hera-card-veh__specs li {
		min-width: 0;
		justify-content: center;
		padding: 8px 8px;
		border-radius: 12px;
		font-size: 13px;
	}
	.hera-card-veh__spec--wide {
		grid-column: 1 / -1;
		justify-content: flex-start !important;
	}
	.hera-card-veh__included {
		margin-top: 12px;
		padding-top: 12px;
	}
	.hera-card-veh__included-title {
		margin-bottom: 10px;
		font-size: 11px;
	}
	.hera-card-veh__included ul {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.hera-card-veh__price {
		padding: 16px 14px 16px;
		grid-template-columns: 1fr;
		gap: 8px;
		text-align: center;
	}
	.hera-card-veh__price-label,
	.hera-card-veh__price-total,
	.hera-card-veh__price-day {
		grid-column: auto;
		text-align: center;
	}
	.hera-card-veh__price-main {
		display: inline-flex;
		align-items: flex-end;
		justify-content: center;
		gap: 6px;
		flex-wrap: wrap;
	}
	.hera-card-veh__price-total {
		font-size: 30px;
	}
	.hera-card-veh__cta {
		min-height: 52px;
		border-radius: 14px;
		margin-top: 4px;
	}
	.hera-card-veh__cta span {
		margin-left: 12px;
	}
}
@media (max-width: 420px) {
	.hera-results {
		padding-inline: 8px;
	}
	.hera-results__head,
	.hera-filterbar {
		padding: 14px 12px;
	}
	.hera-filterbar__grid {
		grid-template-columns: 1fr;
	}
	.hera-card-veh__media {
		height: 172px;
		min-height: 172px;
	}
	.hera-card-veh__media img {
		height: 154px;
		min-height: 154px;
	}
	.hera-card-veh__title strong {
		font-size: 18px;
	}
	.hera-card-veh__specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hera-card-veh__spec--wide {
		grid-column: 1 / -1;
	}
	.hera-card-veh__price-total {
		font-size: 28px;
	}
}


/* v4.5.23 — mobile vehicle cards refinement */
@media (max-width: 767px) {
	.hera-card-veh__body {
		padding: 16px 16px 14px;
	}
	.hera-card-veh__title {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 4px;
		margin-bottom: 14px;
	}
	.hera-card-veh__title strong {
		display: block;
		width: 100%;
		font-size: 18px;
		line-height: 1.18;
	}
	.hera-card-veh__title span {
		display: block;
		width: 100%;
		font-size: 12px;
		line-height: 1.2;
		color: var(--hr-muted);
	}
	.hera-card-veh__specs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}
	.hera-card-veh__specs li {
		min-height: 42px;
		padding: 9px 8px;
		align-items: center;
		justify-content: center;
	}
	.hera-card-veh__included {
		text-align: center;
	}
	.hera-card-veh__included ul {
		justify-items: center;
	}
	.hera-card-veh__price {
		grid-template-columns: minmax(0,1fr) auto;
		align-items: end;
		gap: 4px 12px;
		padding: 16px;
		text-align: left;
	}
	.hera-card-veh__price-label {
		grid-column: 1;
		grid-row: 1;
		text-align: left;
		font-size: 11px;
	}
	.hera-card-veh__price-main {
		grid-column: 2;
		grid-row: 1 / span 2;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		gap: 4px;
		flex-wrap: nowrap;
	}
	.hera-card-veh__price-total {
		font-size: 24px;
		line-height: 1;
		text-align: right;
	}
	.hera-card-veh__price-main span {
		font-size: 11px;
		font-weight: 700;
	}
	.hera-card-veh__price-day {
		grid-column: 1;
		grid-row: 2;
		text-align: left;
		margin: 0;
		font-size: 13px;
	}
	.hera-card-veh__cta {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 54px;
		padding: 0 16px;
		box-sizing: border-box;
		white-space: nowrap;
	}
	.hera-card-veh__cta span {
		margin-left: auto;
	}
}
@media (max-width: 420px) {
	.hera-card-veh__title strong {
		font-size: 17px;
	}
	.hera-card-veh__specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hera-card-veh__price {
		grid-template-columns: 1fr auto;
	}
	.hera-card-veh__price-total {
		font-size: 22px;
	}
	.hera-card-veh__cta {
		white-space: normal;
	}
}


/* v4.5.24 — compact mobile vehicle card rebuild */
@media (max-width: 767px) {
	.hera-card-veh {
		border-radius: 20px;
	}

	.hera-card-veh__media {
		height: 158px;
		min-height: 158px;
		padding: 8px 10px 0;
	}

	.hera-card-veh__media img {
		height: 148px;
		min-height: 148px;
		width: 100%;
		object-fit: contain;
	}

	.hera-card-veh__media-badges {
		top: 10px;
		left: 10px;
	}

	.hera-card-veh__availability {
		top: 10px;
		right: 10px;
	}

	.hera-card-veh__body {
		padding: 14px 14px 12px;
	}

	.hera-card-veh__title {
		display: flex;
		flex-direction: row;
		align-items: baseline;
		justify-content: center;
		gap: 6px;
		margin: 0 0 12px;
		text-align: center;
	}

	.hera-card-veh__title strong,
	.hera-card-veh__title span {
		display: inline;
		width: auto;
	}

	.hera-card-veh__title strong {
		font-size: 18px;
		line-height: 1.15;
	}

	.hera-card-veh__title span {
		font-size: 12px;
		line-height: 1.2;
		color: var(--hr-muted);
	}

	.hera-card-veh__specs {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		margin: 0;
	}

	.hera-card-veh__specs li {
		flex: 0 0 auto;
		min-width: 58px;
		min-height: 38px;
		padding: 7px 10px;
		border-radius: 11px;
		justify-content: center;
		font-size: 13px;
	}

	.hera-card-veh__spec--wide {
		grid-column: auto;
	}

	.hera-card-veh__included {
		margin-top: 12px;
		padding-top: 11px;
		text-align: left;
	}

	.hera-card-veh__included-title {
		display: block;
		margin: 0 0 8px;
		text-align: center;
	}

	.hera-card-veh__included ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 14px;
	}

	.hera-card-veh__included li {
		font-size: 12px;
		line-height: 1.2;
	}

	.hera-card-veh__price {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto auto;
		align-items: center;
		gap: 3px 12px;
		padding: 14px;
		text-align: left;
	}

	.hera-card-veh__price-label {
		grid-column: 1;
		grid-row: 1;
		align-self: end;
		font-size: 10px;
		line-height: 1.2;
		text-align: left;
	}

	.hera-card-veh__price-main {
		grid-column: 2;
		grid-row: 1 / span 2;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		gap: 4px;
	}

	.hera-card-veh__price-total {
		font-size: 24px;
		line-height: 1;
		text-align: right;
	}

	.hera-card-veh__price-main span {
		font-size: 10px;
		line-height: 1.2;
		padding-bottom: 2px;
	}

	.hera-card-veh__price-day {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
		font-size: 12px;
		line-height: 1.25;
		text-align: left;
	}

	.hera-card-veh__cta {
		grid-column: 1 / -1;
		grid-row: 3;
		width: 100%;
		min-height: 50px;
		margin-top: 8px;
		padding: 0 16px;
		border-radius: 13px;
		box-sizing: border-box;
		white-space: nowrap;
	}
}

@media (max-width: 420px) {
	.hera-card-veh__media {
		height: 150px;
		min-height: 150px;
	}

	.hera-card-veh__media img {
		height: 140px;
		min-height: 140px;
	}

	.hera-card-veh__title {
		flex-wrap: wrap;
		row-gap: 2px;
	}

	.hera-card-veh__specs li {
		min-width: 56px;
		padding-inline: 9px;
	}

	.hera-card-veh__price {
		grid-template-columns: 1fr auto;
	}

	.hera-card-veh__price-total {
		font-size: 22px;
	}
}


/* v4.5.27 — homepage fleet CTA target */
#hera-rental-search {
	scroll-margin-top: 110px;
}
@media (max-width: 767px) {
	#hera-rental-search {
		scroll-margin-top: 84px;
	}
}

/* Custom specification icons configured from HERA Rental settings. */
.hera-card-veh__spec-icon{width:22px;height:22px;object-fit:contain;display:block;flex:0 0 22px}


/* v4.5.36 — keep HERA result filters single-rendered under theme select enhancers */
.hera-results .hera-filterbar .nice-select,
.hera-results .hera-filterbar .select2-container,
.hera-results .hera-results__sort .nice-select,
.hera-results .hera-results__sort .select2-container {
	display: none !important;
}

.hera-search__vehicle-switch-icon img{display:block;width:100%;height:100%;max-width:24px;max-height:24px;object-fit:contain}

/* v4.5.58 — premium horizontal booking widget matching the approved mockup */
.hera-search--horizontal {
	--hr-horizontal-orange: #ff4f0a;
	--hr-horizontal-ink: #151b23;
	--hr-horizontal-muted: #657180;
	max-width: none;
	padding: 0;
	border: 1px solid rgba(21, 27, 35, .1);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 64px rgba(11, 19, 28, .2), 0 5px 18px rgba(11, 19, 28, .08);
	overflow: visible;
}
.hera-search--horizontal .hera-search__form--horizontal {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px !important;
	padding: 28px 30px 24px;
}
.hera-search-horizontal__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.hera-search--horizontal .hera-search__panel-head {
	min-width: 0;
	margin: 0;
}
.hera-search-horizontal__eyebrow {
	display: block;
	margin: 0 0 5px;
	color: var(--hr-horizontal-orange);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.hera-search--horizontal .hera-search__panel-head h2 {
	margin: 0;
	color: var(--hr-horizontal-ink);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.035em;
}
.hera-search--horizontal .hera-search__panel-head p {
	margin: 6px 0 0;
	color: var(--hr-horizontal-muted);
	font-size: 13px;
}
.hera-search--horizontal .hera-search__vehicle-switch {
	flex: 0 0 min(405px, 40%);
	width: auto;
	min-height: 56px;
	padding: 4px;
	border: 1px solid #e1e5ea;
	border-radius: 14px;
	background: #fff;
	box-shadow: none;
	min-width:350px;
}
.hera-search--horizontal .hera-search__vehicle-switch-thumb {
	top: 4px;
	bottom: 4px;
	left: 4px;
	width: calc(50% - 4px);
	border-radius: 10px;
	background: var(--hr-horizontal-orange);
	
}
.stm-template-car_rental_elementor .hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option,
.hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option {
	min-height: 46px;
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 14px;
}
.stm-template-car_rental_elementor .hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option.is-active,
.hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option.is-active {
	color: #fff !important;
}
.stm-template-car_rental_elementor .hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:not(.is-active),
.hera-search--horizontal .hera-search__vehicle-switch button.hera-search__vehicle-switch-option:not(.is-active) {
	color: #313b46 !important;
}
.hera-search--horizontal .hera-search__vehicle-switch-option.is-active .hera-search__vehicle-switch-icon {
	color: #fff;
}
.hera-search-horizontal__fields {
	display: grid;
	grid-template-columns: minmax(235px, 1.22fr) minmax(250px, 1.08fr) minmax(250px, 1.08fr) minmax(175px, .72fr);
	align-items: center;
	gap: 0;
	padding: 0;
	border: 1px solid #dfe4e9;
	border-radius: 16px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
	overflow: visible;
}
.hera-search--horizontal .hera-search__block {
	display: grid;
	align-self: stretch;
	align-content: center;
	gap: 3px;
	min-width: 0;
	padding: 5px 17px 5px;
	border-right: 1px solid #dfe4e9;
}
.hera-search--horizontal .hera-search__block h3 {
	margin: 0;
	color: #000;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .07em;
	text-transform: none!important;
}
.hera-search--horizontal .hera-control {
	min-width: 0;
}
.hera-search--horizontal select.hera-native-select--enhanced {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	min-height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	pointer-events: none !important;
}
.hera-search--horizontal .hera-custom-select {
	position: relative;
	width: 100%;
	min-width: 0;
}
.hera-search--horizontal .hera-custom-select__button {
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 9px;
	width: 100%;
	min-width: 0;
	min-height: 38px;
	margin: 0;
	padding: 5px 2px 5px 31px;
	border: 0 !important;
	border-radius: 8px;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hr-horizontal-ink) !important;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.25;
	text-align: left;
	text-transform: none;
	cursor: pointer;
}
.hera-search--horizontal .hera-custom-select--time .hera-custom-select__button {
	padding-left: 13px;
	border-left: 1px solid #dfe4e9 !important;
	border-radius: 0;
}
.hera-search--horizontal .hera-custom-select__button:focus-visible {
	outline: 2px solid rgba(255, 79, 10, .36) !important;
	outline-offset: 2px;
}
.hera-search--horizontal .hera-custom-select__button.is-placeholder {
	color: #737f8c !important;
}
.hera-search--horizontal .hera-custom-select__value {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hera-search--horizontal .hera-custom-select__chevron {
	flex: 0 0 auto;
	color: #4e5965;
	transition: transform .16s ease;
}
.hera-search--horizontal .hera-custom-select__chevron svg {
	width: 15px;
	height: 15px;
}
.hera-search--horizontal .hera-custom-select.is-open .hera-custom-select__chevron {
	transform: rotate(180deg);
}
.hera-search--horizontal .hera-custom-select__menu {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 9px);
	left: -9px;
	display: none;
	width: max-content;
	min-width: calc(100% + 18px);
	max-width: min(360px, 90vw);
	max-height: 260px;
	padding: 7px;
	border: 1px solid #e0e4e8;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(14, 22, 31, .18), 0 3px 10px rgba(14, 22, 31, .08);
	overflow: auto;
}
.hera-search--horizontal .hera-custom-select--time .hera-custom-select__menu {
	left: 0;
	min-width: 118px;
}
.hera-search--horizontal .hera-custom-select.is-open .hera-custom-select__menu {
	display: grid;
	gap: 2px;
}
.stm-template-car_rental_elementor .hera-search--horizontal button.hera-custom-select__option,
.hera-search--horizontal button.hera-custom-select__option {
	appearance: none;
	display: block;
	width: 100%;
	min-height: 38px;
	margin: 0;
	padding: 9px 34px 9px 12px;
	border: 0 !important;
	border-radius: 8px;
	background: #fff !important;
	box-shadow: none !important;
	color: #28333f !important;
	font: inherit;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
	text-align: left;
	text-transform: none;
	white-space: normal;
	cursor: pointer;
}
.hera-search--horizontal .hera-custom-select--time .hera-custom-select__option {
	white-space: nowrap;
}
.stm-template-car_rental_elementor .hera-search--horizontal button.hera-custom-select__option:hover,
.stm-template-car_rental_elementor .hera-search--horizontal button.hera-custom-select__option:focus,
.hera-search--horizontal button.hera-custom-select__option:hover,
.hera-search--horizontal button.hera-custom-select__option:focus {
	outline: 0;
	background: #f2f4f6 !important;
	color: #151b23 !important;
}
.stm-template-car_rental_elementor .hera-search--horizontal button.hera-custom-select__option.is-selected,
.hera-search--horizontal button.hera-custom-select__option.is-selected {
	position: relative;
	background: #fff1eb !important;
	color: #d93e00 !important;
}
.hera-search--horizontal .hera-custom-select__option.is-selected:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 5px;
	height: 9px;
	border: solid var(--hr-horizontal-orange);
	border-width: 0 2px 2px 0;
	transform: translateY(-60%) rotate(45deg);
}
.hera-search--horizontal .hera-control select,
.hera-search--horizontal .hera-control input[type="date"],
.hera-search--horizontal .hera-control input[type="number"],
.hera-search--horizontal .hera-datetime-combo select.hera-time-select {
	min-height: 38px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hr-horizontal-ink) !important;
	font-size: 14px !important;
	font-weight: 750 !important;
}
.hera-search--horizontal .hera-control select:hover,
.hera-search--horizontal .hera-control input:hover,
.hera-search--horizontal .hera-control select:focus,
.hera-search--horizontal .hera-control input:focus,
.hera-search--horizontal .hera-datetime-combo select.hera-time-select:focus {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}
.hera-search--horizontal .hera-select-field select {
	padding: 5px 24px 5px 31px !important;
}
.hera-search--horizontal .hera-datetime-combo {
	grid-template-columns: minmax(0, 1fr) 84px;
	gap: 0;
}
.hera-search--horizontal .hera-datetime-combo input[type="date"] {
	padding: 5px 10px 5px 31px !important;
}
.hera-search--horizontal .hera-datetime-combo select.hera-time-select {
	padding: 5px 5px 5px 13px !important;
	border-left: 1px solid #dfe4e9 !important;
}
.hera-search--horizontal .hera-datetime-combo .hera-field-icon,
.hera-search--horizontal .hera-field-icon.hera-svg {
	top: 25px;
	left: 1px;
	color: #000;
}
.hera-search--horizontal .hera-return-station-field:not([hidden]) {
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px solid #e1e5e9;
}
.hera-search--horizontal .hera-search__submit {
	
	width: auto;
	height: 58px;
	margin: 10px 12px;
	padding: 13px 20px;
	border: 0;
	border-radius: 12px;
	background: #111820;
	box-shadow: 0 8px 18px rgba(17, 24, 32, .16);
	font-size: 13px;
	letter-spacing: .035em;
}
.hera-search--horizontal .hera-search__submit:hover {
	background: #05090d;
	box-shadow: 0 10px 22px rgba(17, 24, 32, .22);
}
.hera-search-horizontal__options {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 24px;
	padding: 0 3px;
}
.hera-search--horizontal .hera-search__block--age {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	border: 0;
}
.hera-search--horizontal .hera-checkline {
	color: #000;
	font-size: 12px;
	font-weight: 700;
}
.hera-search--horizontal .hera-checkline input[type="checkbox"] {
	width: 17px !important;
	height: 17px !important;
	min-width: 17px !important;
	min-height: 17px !important;
	border: 1px solid #d3d9df !important;
	border-radius: 5px !important;
	background: #fff !important;
}
.hera-search--horizontal .hera-checkline input[type="checkbox"]:checked {
	border-color: var(--hr-horizontal-orange) !important;
	background: var(--hr-horizontal-orange) !important;
}
.hera-search--horizontal .hera-checkline input[type="checkbox"]:checked:after {
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
}
.hera-search--horizontal .hera-age-custom {
	width: auto;
}
.hera-search--horizontal .hera-age-custom:not([hidden]) {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 5px 10px;
	border: 1px solid #dfe4e9;
	border-radius: 10px;
	background: #fff;
}
.hera-search--horizontal .hera-age-custom .hera-field-icon {
	position: static;
	transform: none;
	color: #000;
}
.hera-search--horizontal .hera-age-custom__label,
.hera-search--horizontal .hera-age-custom__suffix {
	color: #000;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
.hera-search--horizontal .hera-age-custom input[type="number"] {
	width: 56px !important;
	min-width: 56px !important;
	min-height: 30px !important;
	padding: 3px 4px !important;
	border: 0 !important;
	border-radius: 7px !important;
	background: #fff !important;
	box-shadow: inset 0 0 0 1px #dfe4e9 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-align: center;
}
.hera-search--horizontal .hera-search__hint {
	margin: 0;
	color: #9c2e22;
	background: #fff2ef;
}
@media (max-width: 1180px) {
	.hera-search--horizontal .hera-search__form--horizontal {
		padding: 24px;
	}
	.hera-search-horizontal__fields {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 12px;
		border: 0;
		background: transparent;
		box-shadow: none;
		overflow: visible;
	}
	.hera-search--horizontal .hera-search-horizontal__fields .hera-search__block {
		border: 1px solid #dfe4e9;
		border-radius: 13px;
		background: #fff;
	}
	.hera-search--horizontal .hera-search-horizontal__fields .hera-search__block--return {
		grid-column: 1 / -1;
	}
	.hera-search--horizontal .hera-search__submit {
		grid-column: 1 / -1;
		min-height: 56px;
		margin: 0;
	}
}
@media (max-width: 767px) {
	.hera-search--horizontal {
		border-radius: 18px;
	}
	.hera-search--horizontal .hera-search__form--horizontal {
		padding: 20px 18px;
		gap: 16px !important;
	}
	.hera-search-horizontal__top {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}
	.hera-search--horizontal .hera-search__vehicle-switch {
		flex-basis: auto;
		width: 100%;
	}
	.hera-search-horizontal__fields {
		grid-template-columns: minmax(0, 1fr);
	}
	.hera-search--horizontal .hera-search-horizontal__fields .hera-search__block--return {
		grid-column: auto;
	}
	.hera-search--horizontal .hera-search__submit {
		grid-column: auto;
	}
	.hera-search-horizontal__options {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}
	.hera-search--horizontal .hera-search__block--age {
		align-items: stretch;
		flex-direction: column;
	}
	.hera-search--horizontal .hera-age-custom {
		width: max-content;
		max-width: 100%;
	}
}


/* v4.5.40 — clean vehicle spec icons without pills */
.hera-card-veh__specs li,
.hera-card-veh__specs li.hera-card-veh__badge {
	border: 0 !important;
	background: transparent !important;
	border-radius: 0;
	padding: 4px 2px;
	min-height: 28px;
}
.hera-card-veh__specs li.hera-card-veh__badge {
	color: inherit;
}


/* v4.5.42 — presentation fleet shortcodes reuse the live results card component. */
.hera-fleet--result-cards {
	display: grid;
	gap: 24px;
}
.hera-fleet--result-cards.hera-fleet--cols-1 { grid-template-columns: 1fr; }
.hera-fleet--result-cards.hera-fleet--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hera-fleet--result-cards.hera-fleet--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hera-fleet--result-cards.hera-fleet--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hera-fleet--result-cards .hera-card-veh { min-width: 0; }
.hera-fleet--result-cards .hera-card-veh__price--cta-only {
	display: block;
}
.hera-fleet--result-cards .hera-card-veh__price--cta-only .hera-card-veh__cta {
	margin: 0;
}
@media (max-width: 1180px) {
	.hera-fleet--result-cards.hera-fleet--cols-3,
	.hera-fleet--result-cards.hera-fleet--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
	.hera-fleet--result-cards,
	.hera-fleet--result-cards.hera-fleet--cols-1,
	.hera-fleet--result-cards.hera-fleet--cols-2,
	.hera-fleet--result-cards.hera-fleet--cols-3,
	.hera-fleet--result-cards.hera-fleet--cols-4 { grid-template-columns: 1fr; }
}


/* ---------- Full-page search status ---------- */
.hera-status-page {
	--hr-status-accent: #ec8300;
	position: relative;
	isolation: isolate;
	display: grid;
	align-items: center;
	width: 100vw;
	max-width: 100vw;
	min-height: min(82vh, 920px);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	margin-bottom: 0;
	padding: clamp(44px, 6vw, 84px) clamp(18px, 4vw, 48px);
	overflow: hidden;
	border-radius: 0;
	background-image: url('/wp-content/uploads/2026/08/hera-rental.jpg');
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.hera-status-page--error { --hr-status-accent: #df5a4a; }
.hera-status-page--empty { --hr-status-accent: #ec8300; }
.hera-status-page__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(7, 17, 27, .94) 0%, rgba(7, 17, 27, .86) 32%, rgba(7, 17, 27, .56) 58%, rgba(7, 17, 27, .18) 100%),
		linear-gradient(180deg, rgba(7,17,27,.18), rgba(7,17,27,.18));
}
.hera-status-page__content {
	width: min(100%, 1320px);
	margin: 0 auto;
	padding: 0;
	color: #fff;
}
.hera-status-page__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: rgba(255,255,255,.95);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.hera-status-page__eyebrow::before {
	content: '';
	width: 34px;
	height: 3px;
	border-radius: 99px;
	background: #ff5000;
}
.hera-status-page__title {
	max-width: 640px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(42px, 5vw, 52px);
	font-weight: 850;
	line-height: 1.09;
	letter-spacing: -.045em;
	text-wrap: balance;
}
.hera-status-page__message {
	max-width: 700px;
	margin: 0 0 30px;
	color: rgba(255,255,255,.84);
	font-size: clamp(17px, 1.7vw, 20px);
	line-height: 1.65;
}
.hera-status-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 14px 24px;
	border: 1px solid #ff5000;
	border-radius: 14px;
	background: rgba(12, 19, 28, .34);
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 28px rgba(0,0,0,.18);
	color: #fff !important;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hera-status-page__button:hover {
	transform: translateY(-2px);
	background: rgba(12, 19, 28, .5);
	border-color: rgba(236,131,0,1);
	box-shadow: 0 16px 34px rgba(0,0,0,.24);
}
.hera-status-page__button:focus-visible {
	outline: 3px solid rgba(255,255,255,.88);
	outline-offset: 4px;
}
.hera-status-summary {
	margin-top: 30px;
	max-width: 840px;
	padding: 0;
	background: rgba(9, 16, 24, .36);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0,0,0,.2);
	overflow: hidden;
}
.hera-status-summary__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.hera-status-summary__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	color: #ff5000;
	background: rgba(236,131,0,.10);
}
.hera-status-summary__title {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}
.hera-status-summary__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
	align-items: stretch;
}
.hera-status-summary__item {
	padding: 20px 22px 22px;
}
.hera-status-summary__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: rgba(255,255,255,.78);
	font-size: 14px;
	font-weight: 700;
}
.hera-status-summary__mini-icon {
	color: #ff5000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hera-status-summary__value {
	color: #fff;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.03em;
}
.hera-status-summary__meta {
	margin-top: 8px;
	color: rgba(255,255,255,.66);
	font-size: 16px;
	line-height: 1.4;
}
.hera-status-summary__swap {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.hera-status-summary__swap::before,
.hera-status-summary__swap::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	background: rgba(255,255,255,.10);
}
.hera-status-summary__swap::before {
	top: 18px;
	bottom: calc(50% + 25px);
}
.hera-status-summary__swap::after {
	top: calc(50% + 25px);
	bottom: 18px;
}
.hera-status-summary__swap span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.16);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

@media (max-width: 1180px) {
	.hera-status-page {
		padding-left: 24px;
		padding-right: 24px;
		background-position: 64% center;
	}
	.hera-status-page__title {
		max-width: 560px;
		font-size: clamp(40px, 6vw, 60px);
	}
	.hera-status-summary__value {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.hera-status-page {
		min-height: 640px;
		padding: 26px 14px 34px;
		align-items: end;
		background-position: 68% center;
	}
	.hera-status-page__overlay {
		background: linear-gradient(180deg, rgba(7,17,27,.66) 0%, rgba(7,17,27,.88) 48%, rgba(7,17,27,.98) 100%);
	}
	.hera-status-page__content {
		width: 100%;
	}
	.hera-status-page__eyebrow {
		font-size: 12px;
		letter-spacing: .11em;
	}
	.hera-status-page__title {
		max-width: none;
		font-size: 40px;
		line-height: 1.04;
	}
	.hera-status-page__message {
		font-size: 16px;
		line-height: 1.55;
	}
	.hera-status-page__button {
		width: 100%;
		font-size: 16px;
	}
	.hera-status-summary {
		margin-top: 22px;
	}
	.hera-status-summary__head {
		padding: 16px 16px;
	}
	.hera-status-summary__grid {
		grid-template-columns: 1fr;
	}
	.hera-status-summary__swap {
		min-height: 60px;
	}
	.hera-status-summary__swap::before,
	.hera-status-summary__swap::after {
		display: none;
	}
	.hera-status-summary__item {
		padding: 16px;
	}
	.hera-status-summary__item + .hera-status-summary__item {
		border-top: 1px solid rgba(255,255,255,.08);
	}
	.hera-status-summary__value {
		font-size: 22px;
	}
	.hera-status-summary__meta {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hera-status-page__button { transition: none; }
	.hera-status-page__button:hover { transform: none; }
}

.hera-search--horizontal .hera-search__vehicle-switch-thumb {
	background:#ff4f0a!important;
}
input::placeholder {
  color: #000 !important;
  opacity: 1; /* για να μην το κάνει πιο αχνό ο browser */
}