/**
 * Hi Car Match v156 — final global platform and mobile layer.
 *
 * This file intentionally loads last. It resolves the mobile cascade created by
 * the earlier marketplace, mascot and dealer layers without changing their
 * desktop layouts.
 */

:root {
	--hicm-float-red: #d82d2a;
	--hicm-float-ink: #172033;
	--hicm-float-line: #e3e7ed;
	--hicm-float-shadow: 0 16px 42px rgba(23, 32, 51, .18);
	--hicm-float-safe-bottom: max(18px, env(safe-area-inset-bottom, 0px));
}

.gab-auth-success {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 20px;
	padding: 12px 14px;
	border: 1px solid #a7e2bc;
	border-radius: 10px;
	background: #effbf3;
	color: #166534;
	font-size: 14px;
	line-height: 1.5;
	text-align: start;
}

.gab-auth-success i {
	flex: 0 0 auto;
	margin-top: 2px;
}

/* --------------------------------------------------------------------------
 * Global language and platform-inquiry float
 * ----------------------------------------------------------------------- */

.hicm-platform-float {
	position: fixed;
	inset-inline-end: max(20px, env(safe-area-inset-right, 0px));
	bottom: var(--hicm-float-safe-bottom);
	z-index: 1240;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 10px;
	max-width: calc(100vw - 32px);
	pointer-events: none;
}

[dir="rtl"] .hicm-platform-float {
	inset-inline-end: max(20px, env(safe-area-inset-left, 0px));
}

.hicm-platform-float > a,
.hicm-platform-float > button {
	pointer-events: auto;
}

.hicm-platform-float:has(.hicm-language-sheet.is-open) {
	z-index: 2100;
}

.hicm-float-inquiry,
.hicm-float-lang-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	min-height: 52px;
	border: 1px solid rgba(216, 45, 42, .2);
	background: #fff;
	box-shadow: var(--hicm-float-shadow);
	-webkit-tap-highlight-color: transparent;
}

.hicm-float-inquiry {
	gap: 9px;
	max-width: min(280px, calc(100vw - 32px));
	padding: 5px 14px 5px 5px;
	color: var(--hicm-float-ink);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
	text-decoration: none;
}

[dir="rtl"] .hicm-float-inquiry {
	padding: 5px 5px 5px 14px;
}

.hicm-float-inquiry:hover,
.hicm-float-inquiry:focus-visible {
	color: #a51f24;
	border-color: rgba(216, 45, 42, .45);
	transform: translateY(-1px);
}

.hicm-float-mascot {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border-radius: 50%;
	background: #fff2f1;
}

.hicm-float-face {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hicm-float-inquiry-copy {
	min-width: 0;
	overflow-wrap: anywhere;
}

.hicm-float-inquiry > i {
	flex: 0 0 auto;
	color: var(--hicm-float-red);
	font-size: 16px;
}

.hicm-float-lang-trigger {
	gap: 6px;
	width: 52px;
	height: 52px;
	padding: 0;
	color: #fff;
	border-color: #b82125;
	border-radius: 17px;
	background: linear-gradient(145deg, #e23d37, #b92126);
	font: inherit;
	cursor: pointer;
}

.hicm-float-lang-trigger i {
	font-size: 18px;
}

.hicm-float-lang-trigger span {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .04em;
}

.hicm-float-inquiry:focus-visible,
.hicm-float-lang-trigger:focus-visible,
.hicm-language-close:focus-visible,
.hicm-language-option:focus-visible {
	outline: 3px solid rgba(48, 112, 191, .48);
	outline-offset: 3px;
}

.hicm-language-sheet[hidden] {
	display: none !important;
}

.hicm-language-sheet {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: block;
	pointer-events: none;
}

.hicm-language-sheet.is-open {
	pointer-events: auto;
}

.hicm-language-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	opacity: 0;
	border: 0;
	background: rgba(15, 23, 42, .54);
	backdrop-filter: blur(3px);
	transition: opacity .18s ease;
}

.hicm-language-sheet.is-open .hicm-language-backdrop {
	opacity: 1;
}

.hicm-language-panel {
	position: absolute;
	inset-inline-end: max(20px, env(safe-area-inset-right, 0px));
	bottom: max(86px, calc(68px + env(safe-area-inset-bottom, 0px)));
	width: min(410px, calc(100vw - 32px));
	max-height: calc(100vh - 112px);
	max-height: min(720px, calc(100dvh - 112px));
	overflow: hidden auto;
	opacity: 0;
	border: 1px solid var(--hicm-float-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
	text-align: start;
	transform: translateY(18px) scale(.98);
	transition: opacity .18s ease, transform .18s ease;
	overscroll-behavior: contain;
}

[dir="rtl"] .hicm-language-panel {
	inset-inline-end: max(20px, env(safe-area-inset-left, 0px));
}

.hicm-language-sheet.is-open .hicm-language-panel {
	opacity: 1;
	transform: none;
}

.hicm-language-head {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	border-bottom: 1px solid #edf0f3;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
}

.hicm-language-head > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.hicm-language-head strong {
	color: var(--hicm-float-ink);
	font-size: 17px;
}

.hicm-language-head span {
	color: #697589;
	font-size: 12px;
	line-height: 1.45;
}

.hicm-language-close {
	display: inline-grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #536074;
	border: 1px solid #e1e5eb;
	border-radius: 13px;
	background: #f7f8fa;
	font-size: 18px;
	cursor: pointer;
}

.hicm-language-list {
	display: grid;
	gap: 8px;
	padding: 12px;
}

.hicm-language-option {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 8px 12px;
	color: #2b3749;
	border: 1px solid #e7eaf0;
	border-radius: 15px;
	background: #fff;
	text-align: start;
	text-decoration: none;
}

.hicm-language-option:hover,
.hicm-language-option.is-active {
	color: #a72027;
	border-color: rgba(216, 45, 42, .32);
	background: #fff7f6;
}

.hicm-language-code {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	overflow: hidden;
	border: 1px solid #e5e8ed;
	border-radius: 11px;
	background: #fff;
}

.hicm-language-code svg,
.hicm-language-code img {
	width: 25px;
	height: 18px;
	object-fit: cover;
	border-radius: 3px;
}

.hicm-language-option > span:nth-child(2) {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.hicm-language-option strong {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hicm-language-option small {
	color: #7b8798;
	font-size: 10px;
	font-weight: 800;
}

.hicm-language-option > i {
	color: #9aa4b2;
}

.hicm-language-option.is-active > i {
	color: var(--hicm-float-red);
}

.hicm-language-option[dir="rtl"] > i.bi-chevron-right {
	transform: rotate(180deg);
}

html.hicm-sheet-open,
html.hicm-sheet-open body {
	overflow: hidden;
}

body.gab-has-mbar .hicm-platform-float {
	bottom: calc(86px + env(safe-area-inset-bottom, 0px));
}

html.hicm-inquiry-open .hicm-platform-float,
html.hicm-inquiry-open .gab-mbar {
	visibility: hidden;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
 * Inquiry modal: keep the modal root above every fixed mobile action surface.
 * ----------------------------------------------------------------------- */

#gab-inq-modal.gab-modal {
	z-index: 2050 !important;
}

#gab-inq-modal[aria-hidden="true"] {
	pointer-events: none;
}

#gab-inq-modal[aria-hidden="false"] {
	pointer-events: auto;
}

/* --------------------------------------------------------------------------
 * Scroll regions and dashboard fallbacks
 * ----------------------------------------------------------------------- */

.gab-table-wrap,
.hicm-scroll-table {
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

.gab-table-wrap:focus-visible,
.hicm-scroll-table:focus-visible {
	outline: 3px solid rgba(48, 112, 191, .42);
	outline-offset: 3px;
}

@media (max-width: 768px) {
	body {
		min-width: 0 !important;
	}

	/* Mobile floating actions stay above the global tab bar. */
	.hicm-platform-float {
		inset-inline-end: max(12px, env(safe-area-inset-right, 0px));
		bottom: calc(76px + env(safe-area-inset-bottom, 0px));
		gap: 8px;
	}

	[dir="rtl"] .hicm-platform-float {
		inset-inline-end: max(12px, env(safe-area-inset-left, 0px));
	}

	body.gab-has-mbar .hicm-platform-float {
		bottom: calc(84px + env(safe-area-inset-bottom, 0px));
	}

	.hicm-float-inquiry,
	.hicm-float-lang-trigger {
		min-width: 52px;
		min-height: 52px;
	}

	.hicm-language-panel {
		inset-inline: 0;
		bottom: 0;
		width: 100%;
		max-height: 88vh;
		max-height: min(88dvh, 720px);
		padding-bottom: env(safe-area-inset-bottom, 0px);
		border-inline: 0;
		border-bottom: 0;
		border-radius: 24px 24px 0 0;
		transform: translateY(100%);
	}

	.hicm-language-panel::before {
		content: "";
		display: block;
		width: 42px;
		height: 4px;
		margin: 9px auto 0;
		border-radius: 999px;
		background: #cbd2dc;
	}

	.hicm-language-head {
		padding: 12px 16px 14px;
	}

	.hicm-language-list {
		padding: 10px 12px 14px;
	}

	/* Actual inquiry markup uses .gab-modal as the backdrop/root. */
	#gab-inq-modal.gab-modal {
		align-items: flex-end !important;
		justify-content: stretch !important;
		padding: 0 !important;
	}

	#gab-inq-modal .gab-modal-box {
		width: 100% !important;
		max-width: 100% !important;
		max-height: calc(100vh - 20px) !important;
		max-height: calc(100dvh - max(20px, env(safe-area-inset-top, 0px))) !important;
		padding: 24px 18px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
		overflow-y: auto;
		border-radius: 22px 22px 0 0 !important;
		overscroll-behavior: contain;
	}

	#gab-inq-modal .gab-modal-box::before {
		margin-top: -13px;
	}

	#gab-inq-modal .gab-modal-x {
		width: 44px;
		height: 44px;
	}

	/* One deliberate card system after the earlier full/compact conflicts. */
	.gab-cars-grid .gab-car-card,
	.gab-cars-grid-3 .gab-car-card,
	.gab-cars-grid-4 .gab-car-card {
		grid-template-columns: clamp(124px, 36vw, 156px) minmax(0, 1fr) !important;
		max-width: 100%;
	}

	.gab-car-card-gallery {
		width: clamp(124px, 36vw, 156px) !important;
		max-width: 100%;
	}

	.gab-car-card-body,
	.gab-car-card-price-main,
	.gab-car-card-price-row {
		min-width: 0;
	}

	.gab-car-card-fav,
	.gab-car-card-compare {
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
	}

	.gab-car-card-fav {
		top: 8px;
	}

	.gab-car-card-compare {
		top: 60px;
	}

	.gab-car-card-inquiry {
		min-width: 44px;
		min-height: 44px;
	}

	.gab-qbar-filter,
	.gab-qbar-reset,
	.gab-qbar-sort,
	.gab-qbar-view-btn,
	.gab-qchip,
	.gab-filter-sheet-close,
	.gab-sort-sheet-x,
	.gab-sort-opt {
		min-height: 44px;
	}

	.gab-filter-sheet-close,
	.gab-sort-sheet-x {
		min-width: 44px;
	}

	.gab-drawer-lang-btn {
		min-height: 44px;
		text-decoration: none;
	}

	.gab-filter-sidebar,
	.gab-sort-sheet {
		max-height: 88vh;
		max-height: min(88dvh, 780px);
		overscroll-behavior: contain;
	}

	.gab-filter-sidebar[aria-hidden="true"]:not(.is-open),
	.gab-sort-sheet[aria-hidden="true"]:not(.is-open) {
		pointer-events: none;
	}

	.gab-table-wrap .gab-table {
		min-width: 640px;
	}

	/* Authentication controls retain a real touch target. */
	.gab-auth-input {
		padding-inline-end: 54px;
	}

	.gab-auth-input-toggle {
		left: auto;
		right: 4px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border-radius: 10px;
	}

	[dir="rtl"] .gab-auth-input-toggle {
		left: 4px;
		right: auto;
	}

	.gab-auth-options {
		flex-wrap: wrap;
		gap: 8px 14px;
	}

	.gab-auth-remember,
	.gab-auth-forgot,
	.gab-auth-lang {
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.hicm-float-inquiry {
		width: 52px;
		height: 52px;
		padding: 4px;
		border-radius: 17px;
	}

	.hicm-float-inquiry-copy,
	.hicm-float-inquiry > i {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.hicm-float-mascot {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.gab-reg-header-inner {
		gap: 10px;
		height: 64px;
		padding-inline: 14px;
	}

	.gab-reg-logo {
		gap: 7px;
		min-width: 0;
	}

	.gab-reg-logo-icon,
	.gab-reg-logo-svg {
		width: 40px;
		height: 40px;
	}

	.gab-reg-logo-tag {
		display: none;
	}

	.gab-reg-logo-name {
		font-size: 16px;
		white-space: nowrap;
	}

	.gab-reg-header-right {
		min-width: 0;
	}

	.gab-reg-header-right .gab-reg-pill {
		max-width: 98px;
		min-height: 44px;
		padding-inline: 9px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.gab-reg-body {
		padding: 24px 14px 72px;
	}

	.gab-reg-card,
	.gab-reg-side {
		padding: 20px 18px;
	}

	.gab-reg-title-wrap {
		margin: 22px 0 26px;
	}

	.gab-steps {
		margin-bottom: 22px;
	}
}

@media (max-width: 390px) {
	/* Admin summary cards need the full row at phone widths. */
	.gab-dash-stats,
	.gab-astat-row,
	.gab-kpi-row {
		grid-template-columns: 1fr !important;
	}

	.gab-dash-stat,
	.gab-astat {
		min-width: 0;
	}

	/* Long multilingual specification labels remain scannable. */
	.gab-spec-grid {
		grid-template-columns: 1fr !important;
	}

	.gab-cars-grid .gab-car-card,
	.gab-cars-grid-3 .gab-car-card,
	.gab-cars-grid-4 .gab-car-card {
		grid-template-columns: clamp(108px, 31vw, 122px) minmax(0, 1fr) !important;
		min-height: 142px;
	}

	.gab-car-card-gallery {
		width: clamp(108px, 31vw, 122px) !important;
		min-height: 142px;
	}

	.gab-ccg-main {
		min-height: 142px !important;
	}

	.gab-car-card-body {
		padding: 9px 10px !important;
	}

	.gab-car-card-price-row {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		gap: 6px;
	}

	.gab-car-card-price-value {
		display: block;
		max-width: 100%;
		overflow: hidden;
		font-size: 15px !important;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.gab-car-card-inquiry {
		width: 44px;
		min-width: 44px;
		min-height: 44px;
		padding: 0;
		overflow: hidden;
		color: transparent;
		white-space: nowrap;
	}

	.gab-car-card-inquiry i {
		color: #b9211b;
	}

	.gab-qbar {
		max-width: 100%;
	}

	.gab-qbar-filter {
		flex: 0 0 auto;
	}

	.gab-qbar-sort {
		flex: 1 1 0;
		max-width: none;
		min-width: 0;
	}

	.gab-qbar-chips {
		flex-basis: 100%;
	}

	.gab-auth-form-box {
		min-width: 0;
	}
}

@media (max-width: 340px) {
	.gab-cars-grid .gab-car-card,
	.gab-cars-grid-3 .gab-car-card,
	.gab-cars-grid-4 .gab-car-card {
		grid-template-columns: 104px minmax(0, 1fr) !important;
	}

	.gab-car-card-gallery {
		width: 104px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hicm-float-inquiry,
	.hicm-language-backdrop,
	.hicm-language-panel {
		transition: none !important;
	}
}

/* --------------------------------------------------------------------------
 * v156 marketplace identity: country, seller source and internal inquiry
 * ----------------------------------------------------------------------- */

.gab-seller-type {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	min-height: 26px;
	padding: 4px 8px;
	border: 1px solid #e4e8ee;
	border-radius: 999px;
	background: #f8fafc;
	color: #445067;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.gab-seller-type.is-platform {
	border-color: #fac9c6;
	background: #fff1f0;
	color: #b42324;
}

.gab-seller-type.is-dealer {
	border-color: #bed8f3;
	background: #eef6ff;
	color: #185a93;
}

.gab-seller-type.is-seller {
	border-color: #cde6d8;
	background: #f0faf4;
	color: #227149;
}

.gab-seller-type.is-direct {
	border-color: #e1d3f2;
	background: #f8f3ff;
	color: #68429a;
}

.gab-vehicle-country {
	border-color: #dce2eb;
	background: rgba(255, 255, 255, .94);
	color: #37445a;
}

.hicm-card-media-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}

.gab-ccg-ribbon,
.hicm-demo-asset-label,
.gab-car-card-badges,
.gab-car-card-fav,
.gab-car-card-compare,
.gab-ccg-meta,
.gab-ccg-thumb {
	position: relative;
	z-index: 3;
}

.gab-car-card-title a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.gab-car-card-title a:hover,
.gab-car-card-title a:focus-visible {
	color: var(--gab-primary-600, #c92824);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gab-car-card-inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #b42324;
	text-decoration: none;
}

.hicm-market-tabs,
.hicm-global-country-nav {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 2px 12px;
	scrollbar-width: none;
}

.hicm-market-tabs::-webkit-scrollbar,
.hicm-global-country-nav::-webkit-scrollbar {
	display: none;
}

.hicm-market-tab,
.hicm-global-country-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 7px;
	min-height: 44px;
	padding: 0 15px;
	border: 1px solid #dfe4eb;
	border-radius: 12px;
	background: #fff;
	color: #344056;
	font-size: 13px;
	font-weight: 820;
	text-decoration: none;
	cursor: pointer;
}

.hicm-market-tab.is-on,
.hicm-global-country-nav a:hover,
.hicm-global-country-nav a:focus-visible {
	border-color: #d52f2b;
	background: #fff2f1;
	color: #b42324;
	box-shadow: 0 6px 18px rgba(180, 35, 36, .08);
}

.hicm-country-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 20px;
	padding: 0 4px;
	border: 1px solid #dce2e9;
	border-radius: 6px;
	background: #fff;
	color: #334155;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .04em;
}

.hicm-country-filter-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
}

.hicm-country-filter {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	min-height: 44px;
	padding: 7px 9px;
	border: 1px solid #e2e7ed;
	border-radius: 10px;
	background: #fff;
	color: #475569;
	font: inherit;
	font-size: 12px;
	font-weight: 720;
	text-align: start;
	cursor: pointer;
}

.hicm-country-filter span:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hicm-country-filter.is-on {
	border-color: #dc3c36;
	background: #fff3f2;
	color: #af2424;
	box-shadow: inset 0 0 0 1px rgba(220, 60, 54, .08);
}

.hicm-seller-filter .gab-filter-option > .bi {
	width: 18px;
	color: #6a7689;
	text-align: center;
}

/* --------------------------------------------------------------------------
 * Global model showcase built from the existing staged model assets
 * ----------------------------------------------------------------------- */

.hicm-global-showcase {
	padding: 76px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 10%, rgba(214, 43, 39, .08), transparent 28%),
		linear-gradient(180deg, #fff, #f7f9fc);
	border-block: 1px solid #eef1f5;
}

.hicm-global-showcase-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 22px;
}

.hicm-global-showcase-head > div {
	max-width: 760px;
}

.hicm-global-showcase-head > div > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 9px;
	color: #bd2927;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
}

.hicm-global-showcase-head h2 {
	margin: 0;
	color: #172033;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.16;
	letter-spacing: -.04em;
}

.hicm-global-showcase-head p {
	margin: 12px 0 0;
	color: #647087;
	font-size: 15px;
	line-height: 1.7;
}

.hicm-global-showcase-head > a,
.hicm-global-assurance > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid #d52f2b;
	border-radius: 13px;
	background: #fff;
	color: #b42324;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.hicm-global-model-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 8px;
}

.hicm-global-model-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e1e6ed;
	border-radius: 18px;
	background: #fff;
	color: #172033;
	box-shadow: 0 10px 30px rgba(24, 36, 57, .06);
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hicm-global-model-card:hover,
.hicm-global-model-card:focus-visible {
	border-color: #e4a7a4;
	box-shadow: 0 18px 38px rgba(31, 42, 64, .12);
	transform: translateY(-3px);
}

.hicm-global-model-media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: linear-gradient(145deg, #eef2f7, #fff);
}

.hicm-global-model-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hicm-global-model-media small,
.hicm-global-model-media em {
	position: absolute;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 7px;
	border-radius: 7px;
	background: rgba(17, 24, 39, .78);
	color: #fff;
	font-size: 9px;
	font-style: normal;
	font-weight: 750;
	backdrop-filter: blur(5px);
}

.hicm-global-model-media small {
	inset-inline-start: 8px;
	bottom: 8px;
}

.hicm-global-model-media em {
	inset-inline-end: 8px;
	top: 8px;
	background: rgba(255, 255, 255, .94);
	color: #303d52;
}

.hicm-global-model-copy {
	display: grid;
	gap: 4px;
	padding: 15px;
}

.hicm-global-model-copy b {
	overflow: hidden;
	font-size: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hicm-global-model-copy small {
	color: #6a7689;
	font-size: 12px;
}

.hicm-global-model-copy strong {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	color: #b42324;
	font-size: 12px;
}

.hicm-global-assurance {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	margin-top: 22px;
	padding: 10px 18px 10px 8px;
	overflow: hidden;
	border: 1px solid #f0d4d2;
	border-radius: 18px;
	background: #fff6f5;
}

.hicm-global-assurance-mascot {
	width: 92px;
	height: 74px;
	object-fit: contain;
	object-position: center bottom;
}

.hicm-global-assurance > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.hicm-global-assurance strong {
	color: #2b3446;
	font-size: 14px;
}

.hicm-global-assurance span {
	color: #707b8d;
	font-size: 12px;
	line-height: 1.55;
}

.hicm-global-assurance > a {
	min-height: 44px;
	background: #c62b28;
	color: #fff;
}

/* --------------------------------------------------------------------------
 * Platform quote and account-type polish
 * ----------------------------------------------------------------------- */

.hicm-platform-quote {
	max-width: 1000px;
}

.hicm-platform-privacy {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 22px;
	padding: 13px 15px;
	border: 1px solid #cfe3d7;
	border-radius: 12px;
	background: #f1faf5;
	color: #276347;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.gab-contact-btn.hicm-contact-action-save,
.gab-contact-btn.hicm-contact-action-compare {
	border: 1px solid #d9dee8 !important;
	background: #fff !important;
	color: #374155 !important;
	box-shadow: none;
}

.gab-contact-btn.hicm-contact-action-save:hover,
.gab-contact-btn.hicm-contact-action-save:focus-visible,
.gab-contact-btn.hicm-contact-action-compare:hover,
.gab-contact-btn.hicm-contact-action-compare:focus-visible {
	border-color: #c62b28 !important;
	background: #fff5f4 !important;
	color: #a61f1d !important;
}

.hicm-quote-types {
	margin-bottom: 20px;
}

.hicm-quote-submit-wrap {
	display: grid;
	justify-items: center;
	gap: 10px;
	margin-top: 24px;
	text-align: center;
}

.hicm-quote-submit-wrap p {
	margin: 0;
	color: #667286;
	font-size: 12px;
}

.hicm-field-help {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	margin-top: 6px;
	color: #768195;
	font-size: 11px;
	line-height: 1.45;
}

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

.gab-type-card {
	min-width: 0;
}

.gab-lang-tabs {
	overflow-x: auto;
	scrollbar-width: none;
}

.gab-lang-tabs::-webkit-scrollbar {
	display: none;
}

.hicm-admin-empty {
	display: grid;
	justify-items: center;
	gap: 5px;
	padding: 34px 16px;
	color: #6b778a;
	text-align: center;
}

.hicm-admin-empty > i {
	font-size: 28px;
	color: #c3cad4;
}

.hicm-admin-empty strong {
	color: #374155;
}

@media (max-width: 980px) {
	.hicm-global-model-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.gab-members-layout {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.gab-atable-wrap,
	.gab-table-wrap {
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.gab-drawer-panel {
		width: min(100%, 480px);
		max-width: 100vw;
	}

	.hicm-global-showcase {
		padding: 54px 0;
	}

	.hicm-global-showcase-head {
		display: grid;
		align-items: start;
	}

	.hicm-global-showcase-head > a {
		justify-self: start;
	}

	.hicm-global-assurance {
		grid-template-columns: 72px minmax(0, 1fr);
		padding: 9px 12px 9px 4px;
	}

	.hicm-global-assurance-mascot {
		width: 72px;
		height: 66px;
	}

	.hicm-global-assurance > a {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hicm-global-model-grid {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		margin-inline: -16px;
		padding: 0 16px 8px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.hicm-global-model-card {
		flex: 0 0 min(78vw, 284px);
		scroll-snap-align: start;
	}

	.hicm-global-model-grid::-webkit-scrollbar {
		display: none;
	}

	.hicm-global-showcase-head h2 {
		font-size: 27px;
	}

	.hicm-country-filter-grid,
	.gab-type-grid {
		grid-template-columns: 1fr;
	}

	.hicm-market-tabs {
		margin-inline: -16px;
		padding-inline: 16px;
	}

	.hicm-platform-privacy {
		font-size: 12px;
	}
}

.hicm-my-inquiry-reply {
	margin-top: 12px;
	padding: 12px 14px;
	border: 1px solid #fecaca;
	border-radius: 12px;
	background: #fff7f7;
	color: #374151;
}

.hicm-my-inquiry-reply strong {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #b91c1c;
	font-size: 13px;
}

.hicm-my-inquiry-reply p {
	margin: 7px 0 0;
	line-height: 1.65;
	white-space: normal;
}

.hicm-my-inquiry-reply time {
	display: block;
	margin-top: 7px;
	color: #6b7280;
	font-size: 11px;
}
