/**
 * Helix Rentals - public frontend.
 *
 * A minimal, DriveLink-aligned rental UI: calm surfaces, one accent colour,
 * a clear type hierarchy and generous spacing. Tokens inherit from the
 * site-wide DriveLink design system and fall back gracefully.
 */

.hrw-search,
.hrw-detail {
	--hrw-navy: var(--dl-navy-deep, #08212b);
	--hrw-navy-soft: var(--dl-navy-soft, #1c424c);
	--hrw-accent: var(--dl-orange, #f58220);
	--hrw-accent-strong: var(--dl-orange-dark, #d96608);
	--hrw-accent-wash: rgba(245, 130, 32, 0.1);
	--hrw-bg: var(--dl-cloud, #f4f7f8);
	--hrw-surface: #ffffff;
	--hrw-cream: var(--dl-cream, #fff8f1);
	--hrw-ink: var(--dl-navy-deep, #08212b);
	--hrw-ink-soft: #51656d;
	--hrw-ink-mute: #5d6f76;
	--hrw-line: var(--dl-line, #dfe7ea);
	--hrw-line-soft: #eef2f4;
	--hrw-radius-sm: 12px;
	--hrw-radius: 16px;
	--hrw-radius-lg: 22px;
	--hrw-pill: 999px;
	--hrw-shadow: 0 1px 2px rgba(8, 33, 43, 0.04), 0 14px 34px rgba(8, 33, 43, 0.06);
	--hrw-shadow-hover: 0 1px 2px rgba(8, 33, 43, 0.05), 0 22px 50px rgba(8, 33, 43, 0.12);
	--hrw-ring: 0 0 0 3px rgba(245, 130, 32, 0.18);
	--hrw-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--hrw-head: "Montserrat", "Poppins", system-ui, -apple-system, sans-serif;
}

.hrw-search,
.hrw-search *,
.hrw-detail,
.hrw-detail * {
	box-sizing: border-box;
}

.hrw-search :where(svg),
.hrw-detail :where(svg) {
	flex: none;
	width: 1em;
	height: 1em;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

/* -------------------------------------------------------------------------
 * Shared primitives
 * ---------------------------------------------------------------------- */

.hrw-eyebrow {
	margin: 0 0 12px;
	color: var(--hrw-accent-strong);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
}

.hrw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: var(--hrw-radius-sm);
	background: var(--hrw-surface);
	color: var(--hrw-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 160ms var(--hrw-ease), border-color 160ms var(--hrw-ease),
		color 160ms var(--hrw-ease), box-shadow 160ms var(--hrw-ease), transform 160ms var(--hrw-ease);
}

.hrw-btn svg {
	font-size: 18px;
}

.hrw-btn--primary {
	border-color: var(--hrw-accent);
	background: var(--hrw-accent);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(245, 130, 32, 0.22);
}

.hrw-btn--primary:hover {
	border-color: var(--hrw-accent-strong);
	background: var(--hrw-accent-strong);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(245, 130, 32, 0.28);
}

.hrw-btn--ghost {
	border-color: var(--hrw-line);
	background: var(--hrw-surface);
	color: var(--hrw-ink);
}

.hrw-btn--ghost:hover {
	border-color: rgba(37, 211, 102, 0.7);
	background: rgba(37, 211, 102, 0.08);
	color: #128c4b;
}

.hrw-search :where(a, button, input, select, textarea):focus-visible,
.hrw-detail :where(a, button, input, select, textarea):focus-visible {
	outline: none;
	border-color: var(--hrw-accent);
	box-shadow: var(--hrw-ring);
}

/* -------------------------------------------------------------------------
 * Search + filter toolbar
 * ---------------------------------------------------------------------- */

.hrw-search {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-lg);
	background: var(--hrw-surface);
	box-shadow: var(--hrw-shadow);
	color: var(--hrw-ink);
	font-family: "Poppins", system-ui, -apple-system, sans-serif;
	line-height: 1.5;
}

.hrw-search__head {
	display: flex;
	gap: 12px;
	align-items: center;
}

.hrw-field--search {
	position: relative;
	flex: 1;
	min-width: 0;
}

.hrw-field--search > svg {
	position: absolute;
	top: 50%;
	left: 16px;
	font-size: 18px;
	color: var(--hrw-ink-mute);
	transform: translateY(-50%);
	pointer-events: none;
}

.hrw-field--search input {
	width: 100%;
	min-height: 52px;
	padding: 0 16px 0 44px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-sm);
	background: var(--hrw-surface);
	color: var(--hrw-ink);
	font: inherit;
	font-size: 15px;
}

.hrw-field--search input::placeholder {
	color: var(--hrw-ink-mute);
}

.hrw-search__reset {
	flex: none;
	min-height: 52px;
	padding: 0 16px;
	border: 0;
	border-radius: var(--hrw-radius-sm);
	background: transparent;
	color: var(--hrw-ink-mute);
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: color 160ms var(--hrw-ease), background 160ms var(--hrw-ease), opacity 160ms var(--hrw-ease);
}

.hrw-search[data-hrw-dirty="true"] .hrw-search__reset {
	opacity: 1;
	pointer-events: auto;
}

.hrw-search__reset:hover {
	background: var(--hrw-line-soft);
	color: var(--hrw-ink);
}

.hrw-search__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	align-items: end;
	padding-bottom: 4px;
}

.hrw-field--select {
	display: grid;
	gap: 6px;
	min-width: 150px;
}

.hrw-field--select > span {
	color: var(--hrw-ink-mute);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.hrw-field--select select {
	width: 100%;
	min-height: 48px;
	padding: 0 40px 0 14px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-sm);
	background-color: var(--hrw-surface);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d6f76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	color: var(--hrw-ink);
	font: inherit;
	font-size: 14px;
	appearance: none;
	cursor: pointer;
}

/* Toggle chips */
.hrw-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-pill);
	background: var(--hrw-surface);
	color: var(--hrw-ink-soft);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	user-select: none;
	transition: border-color 160ms var(--hrw-ease), background 160ms var(--hrw-ease), color 160ms var(--hrw-ease);
}

.hrw-chip input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.hrw-chip::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 1.6px solid var(--hrw-line);
	border-radius: 6px;
	background-position: center;
	background-repeat: no-repeat;
	transition: border-color 160ms var(--hrw-ease), background 160ms var(--hrw-ease);
}

.hrw-chip:hover {
	border-color: rgba(8, 33, 43, 0.28);
	color: var(--hrw-ink);
}

.hrw-chip:has(input:checked) {
	border-color: var(--hrw-accent);
	background: var(--hrw-accent-wash);
	color: var(--hrw-accent-strong);
}

.hrw-chip:has(input:checked)::before {
	border-color: var(--hrw-accent);
	background-color: var(--hrw-accent);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.hrw-chip:has(input:focus-visible) {
	border-color: var(--hrw-accent);
	box-shadow: var(--hrw-ring);
}

/* -------------------------------------------------------------------------
 * Results grid + states
 * ---------------------------------------------------------------------- */

.hrw-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
	margin-top: 6px;
	padding-top: 18px;
	border-top: 1px solid var(--hrw-line-soft);
}

.hrw-results-summary {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--hrw-ink-mute);
	font-size: 13px;
	font-weight: 600;
}

.hrw-results-summary strong {
	color: var(--hrw-ink);
	font-weight: 700;
}

.hrw-loading,
.hrw-empty {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 200px;
	padding: 32px;
	border: 1px dashed var(--hrw-line);
	border-radius: var(--hrw-radius);
	background: var(--hrw-bg);
	color: var(--hrw-ink-mute);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.hrw-empty svg {
	font-size: 30px;
	margin-bottom: 4px;
	color: var(--hrw-ink-mute);
}

.hrw-empty strong {
	color: var(--hrw-ink);
	font-size: 16px;
}

.hrw-loading {
	border-style: solid;
	background: transparent;
}

/* Skeleton */
.hrw-skeleton {
	pointer-events: none;
}

.hrw-skeleton .hrw-card__media,
.hrw-skel-line {
	position: relative;
	overflow: hidden;
	background: var(--hrw-line-soft);
}

.hrw-skeleton .hrw-card__media::after,
.hrw-skel-line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
	transform: translateX(-100%);
	animation: hrw-shimmer 1400ms infinite;
}

.hrw-skel-line {
	height: 13px;
	border-radius: var(--hrw-pill);
}

.hrw-skel-line--title {
	width: 66%;
	height: 20px;
	margin-bottom: 14px;
}

.hrw-skel-line--row {
	width: 100%;
	margin-bottom: 22px;
}

.hrw-skel-line--foot {
	width: 80%;
	height: 38px;
	border-radius: var(--hrw-radius-sm);
}

@keyframes hrw-shimmer {
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrw-skeleton .hrw-card__media::after,
	.hrw-skel-line::after {
		animation: none;
	}
}

/* -------------------------------------------------------------------------
 * Vehicle card (single anchor — whole card is the link)
 * ---------------------------------------------------------------------- */

.hrw-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius);
	background: var(--hrw-surface);
	color: var(--hrw-ink-soft);
	text-decoration: none;
	box-shadow: var(--hrw-shadow);
	transition: border-color 200ms var(--hrw-ease), box-shadow 200ms var(--hrw-ease), transform 200ms var(--hrw-ease);
}

a.hrw-card:hover {
	border-color: rgba(245, 130, 32, 0.4);
	box-shadow: var(--hrw-shadow-hover);
	transform: translateY(-4px);
}

.hrw-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--hrw-line-soft);
}

.hrw-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--hrw-ease);
}

a.hrw-card:hover .hrw-card__media img {
	transform: scale(1.04);
}

.hrw-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.hrw-card__title {
	margin: 0 0 14px;
	color: var(--hrw-ink);
	font-family: var(--hrw-head);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.hrw-card__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px 14px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.hrw-card__specs li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	color: var(--hrw-ink-soft);
	font-size: 13px;
	font-weight: 500;
}

.hrw-card__specs li svg {
	font-size: 16px;
	color: var(--hrw-ink-mute);
}

.hrw-card__specs li span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hrw-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--hrw-line-soft);
}

.hrw-card__price {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.hrw-card__price strong {
	color: var(--hrw-accent-strong);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hrw-card__price span {
	color: var(--hrw-ink-mute);
	font-size: 12px;
	font-weight: 500;
}

.hrw-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 16px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-pill);
	color: var(--hrw-ink);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: background 200ms var(--hrw-ease), border-color 200ms var(--hrw-ease), color 200ms var(--hrw-ease);
}

.hrw-card__cta svg {
	font-size: 15px;
	transition: transform 200ms var(--hrw-ease);
}

a.hrw-card:hover .hrw-card__cta {
	border-color: var(--hrw-navy);
	background: var(--hrw-navy);
	color: #ffffff;
}

a.hrw-card:hover .hrw-card__cta svg {
	transform: translateX(3px);
}

/* -------------------------------------------------------------------------
 * Detail page
 * ---------------------------------------------------------------------- */

.hrw-vehicle-detail-page .post-title,
.hrw-vehicle-detail-page .mst-post-meta,
.hrw-vehicle-detail-page .post-meta,
.hrw-vehicle-detail-page .post-meta-tags,
.single-hrw_vehicle .post-title,
.single-hrw_vehicle .mst-post-meta,
.single-hrw_vehicle .post-meta,
.single-hrw_vehicle .post-meta-tags {
	display: none !important;
}

.hrw-detail {
	/* Shared column split so the hero and the content section line up vertically. */
	--hrw-cols: minmax(0, 1.06fr) minmax(340px, 0.94fr);
	width: min(1180px, calc(100% - 40px));
	margin: clamp(28px, 4vw, 56px) auto 90px;
	color: var(--hrw-ink-soft);
	font-family: "Poppins", system-ui, -apple-system, sans-serif;
	/* Re-establish a sane line-height; single-vehicle templates can leak a fixed px value. */
	line-height: 1.5;
}

.hrw-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 22px;
	color: var(--hrw-ink-mute);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: color 160ms var(--hrw-ease);
}

.hrw-detail__back svg {
	font-size: 16px;
	transition: transform 160ms var(--hrw-ease);
}

.hrw-detail__back:hover {
	color: var(--hrw-accent-strong);
}

.hrw-detail__back:hover svg {
	transform: translateX(-3px);
}

.hrw-detail__hero {
	display: grid;
	grid-template-columns: var(--hrw-cols);
	gap: clamp(20px, 3vw, 34px);
	align-items: stretch;
}

.hrw-detail__gallery {
	overflow: hidden;
	min-height: 440px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-lg);
	background: var(--hrw-line-soft);
	box-shadow: var(--hrw-shadow);
}

.hrw-detail__gallery img,
.hrw-detail__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.hrw-detail__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--hrw-line-soft), #ffffff);
	color: var(--hrw-line);
}

.hrw-detail__placeholder svg {
	font-size: 64px;
}

.hrw-detail__intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(8px, 2vw, 24px) 0;
}

.hrw-detail__intro h1 {
	margin: 0;
	color: var(--hrw-ink);
	font-family: var(--hrw-head);
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.hrw-detail__lead {
	max-width: 46ch;
	margin: 18px 0 0;
	color: var(--hrw-ink-soft);
	font-size: 16px;
	line-height: 1.7;
}

.hrw-detail__pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 22px;
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--hrw-line-soft);
}

.hrw-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.hrw-price strong {
	color: var(--hrw-accent-strong);
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
}

.hrw-price span {
	color: var(--hrw-ink-mute);
	font-size: 13px;
	font-weight: 600;
}

.hrw-detail__assurances {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.hrw-detail__assurances li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--hrw-ink-soft);
	font-size: 13px;
	font-weight: 500;
}

.hrw-detail__assurances svg {
	font-size: 16px;
	color: #2f9e63;
}

/* Specs grid */
.hrw-detail__specs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 18px 0;
}

.hrw-spec {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 16px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius);
	background: var(--hrw-surface);
}

.hrw-spec__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--hrw-cream);
	color: var(--hrw-accent-strong);
	font-size: 19px;
}

.hrw-spec__text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.hrw-spec__text strong {
	color: var(--hrw-ink-mute);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.hrw-spec__text em {
	overflow: hidden;
	color: var(--hrw-ink);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Content + overview */
.hrw-detail__content {
	display: grid;
	grid-template-columns: var(--hrw-cols);
	gap: clamp(20px, 3vw, 34px);
	align-items: start;
	margin-top: 18px;
}

.hrw-detail__overview {
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-lg);
	background: var(--hrw-surface);
	box-shadow: var(--hrw-shadow);
}

.hrw-detail__overview p:not(.hrw-eyebrow) {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.8;
}

.hrw-detail__overview :where(h2, h3) {
	color: var(--hrw-ink);
	font-family: var(--hrw-head);
	letter-spacing: -0.02em;
}

.hrw-detail__overview > :last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
 * Booking card
 * ---------------------------------------------------------------------- */

.hrw-booking {
	position: sticky;
	top: 100px;
	padding: clamp(22px, 2.6vw, 30px);
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-lg);
	background: var(--hrw-surface);
	box-shadow: var(--hrw-shadow);
}

.hrw-booking__head h2 {
	margin: 0 0 8px;
	color: var(--hrw-ink);
	font-family: var(--hrw-head);
	font-size: clamp(24px, 2.6vw, 30px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.hrw-booking__head p {
	margin: 0 0 20px;
	color: var(--hrw-ink-soft);
	font-size: 14px;
	line-height: 1.6;
}

.hrw-booking__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hrw-booking__form label {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: var(--hrw-ink-mute);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hrw-booking__form input,
.hrw-booking__form textarea {
	width: 100%;
	min-width: 0;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-sm);
	background: var(--hrw-surface);
	color: var(--hrw-ink);
	font: inherit;
	font-size: 14px;
}

.hrw-booking__form textarea {
	min-height: 88px;
	padding-top: 12px;
	resize: vertical;
}

.hrw-booking__wide,
.hrw-booking__check,
.hrw-quote,
.hrw-booking__actions,
.hrw-booking__status {
	grid-column: 1 / -1;
}

.hrw-booking__check {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid var(--hrw-line);
	border-radius: var(--hrw-radius-sm);
	background: var(--hrw-bg);
	color: var(--hrw-ink-soft);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
}

.hrw-booking__check input {
	width: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	accent-color: var(--hrw-accent);
}

/* Live quote */
.hrw-quote {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(245, 130, 32, 0.22);
	border-radius: var(--hrw-radius);
	background: var(--hrw-cream);
}

.hrw-quote__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	color: var(--hrw-ink-mute);
	font-size: 12px;
	font-weight: 600;
}

.hrw-quote__days {
	color: var(--hrw-ink);
	font-weight: 700;
}

.hrw-quote__total {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 10px;
}

.hrw-quote__total strong {
	color: var(--hrw-accent-strong);
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
}

.hrw-quote__total em {
	color: var(--hrw-ink-mute);
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
}

.hrw-quote__meta {
	display: grid;
	gap: 4px;
	margin: 0;
	padding-top: 12px;
	border-top: 1px solid rgba(245, 130, 32, 0.18);
	color: var(--hrw-ink-soft);
	font-size: 12.5px;
	line-height: 1.5;
}

.hrw-booking__actions {
	display: grid;
	gap: 10px;
	margin-top: 4px;
}

.hrw-booking__actions button[type="submit"] {
	width: 100%;
	border: 1px solid var(--hrw-accent);
	border-radius: var(--hrw-radius-sm);
	background: var(--hrw-accent);
	color: #ffffff;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	min-height: 52px;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(245, 130, 32, 0.22);
	transition: background 160ms var(--hrw-ease), transform 160ms var(--hrw-ease), box-shadow 160ms var(--hrw-ease);
}

.hrw-booking__actions button[type="submit"]:hover:not(:disabled) {
	background: var(--hrw-accent-strong);
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(245, 130, 32, 0.28);
}

.hrw-booking__actions button[type="submit"]:disabled {
	cursor: wait;
	opacity: 0.72;
	box-shadow: none;
}

.hrw-booking__wa {
	width: 100%;
}

.hrw-booking__wa[hidden] {
	display: none;
}

.hrw-booking__trap {
	position: absolute !important;
	left: -9999px;
}

.hrw-booking__status {
	min-height: 18px;
	margin: 2px 0 0;
	color: var(--hrw-ink-soft);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.hrw-booking__status[data-status="success"] {
	color: #1f7a4d;
}

.hrw-booking__status[data-status="error"] {
	color: #c0392b;
}

/* -------------------------------------------------------------------------
 * Account dashboard + language switcher
 * ---------------------------------------------------------------------- */

.hrw-account {
	width: min(1180px, calc(100% - 40px));
	margin: 28px auto;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--dl-line, #dfe7ea);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(8, 33, 43, 0.04), 0 14px 34px rgba(8, 33, 43, 0.06);
	font-family: "Poppins", system-ui, sans-serif;
}

.hrw-account h2 {
	margin: 0 0 8px;
	color: var(--dl-navy-deep, #08212b);
	font-family: "Montserrat", "Poppins", sans-serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.hrw-account__hint {
	margin: 0;
	color: #5d6f76;
	font-size: 14px;
	line-height: 1.6;
}

.hrw-language {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--dl-line, #dfe7ea);
	border-radius: 999px;
	background: #ffffff;
}

.hrw-language a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	color: var(--dl-navy-deep, #08212b);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease;
}

.hrw-language a:hover {
	background: var(--dl-orange, #f58220);
	color: #ffffff;
}

/* -------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.hrw-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hrw-detail__hero,
	.hrw-detail__content {
		grid-template-columns: 1fr;
	}

	.hrw-booking {
		position: static;
	}

	.hrw-detail__specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hrw-detail__gallery {
		min-height: 340px;
	}
}

@media (max-width: 680px) {
	.hrw-search {
		padding: 14px;
		border-radius: var(--hrw-radius);
	}

	.hrw-search__filters {
		gap: 8px;
	}

	.hrw-field--select {
		flex: 1 1 calc(50% - 4px);
		min-width: 0;
	}

	.hrw-chip {
		flex: 1 1 calc(50% - 4px);
		justify-content: center;
	}

	.hrw-results {
		grid-template-columns: 1fr;
	}

	.hrw-card__specs {
		grid-template-columns: 1fr 1fr;
	}

	.hrw-detail {
		width: min(100% - 28px, 1180px);
		margin-bottom: 64px;
	}

	.hrw-detail__gallery {
		min-height: 240px;
		border-radius: var(--hrw-radius);
	}

	.hrw-detail__specs {
		gap: 10px;
	}

	.hrw-detail__overview,
	.hrw-booking {
		padding: 20px;
		border-radius: var(--hrw-radius);
	}

	.hrw-booking__form {
		grid-template-columns: 1fr;
	}

	.hrw-booking__form label.hrw-half {
		grid-column: auto;
	}
}
