/**
 * HARCHI KOLO Core — professional catalog.
 */

.hk-catalog-page {
	--hk-green: #123f2f;
	--hk-green-deep: #0c3023;
	--hk-gold: #c79a2b;
	--hk-text: #173d30;
	--hk-muted: #667a72;
	--hk-border: #d8e4df;
	--hk-surface: #ffffff;
	--hk-surface-soft: #f5f8f6;
	--hk-shadow-sm: 0 8px 24px rgba(18, 63, 47, 0.07);
	--hk-shadow-md: 0 18px 50px rgba(18, 63, 47, 0.14);
	--hk-radius-sm: 12px;
	--hk-radius: 16px;
	--hk-radius-lg: 22px;
}

.hk-catalog-page .hp-page,
.hk-catalog-page .hp-page * {
	box-sizing: border-box;
}

.hk-catalog-page .hp-page {
	color: var(--hk-text);
}

/* Safe baseline: these styles work even before the JavaScript enhancement. */
.hk-catalog-page .hp-page input[type="text"],
.hk-catalog-page .hp-page input[type="search"],
.hk-catalog-page .hp-page input[type="number"],
.hk-catalog-page .hp-page select {
	min-height: 52px;
	border: 1px solid var(--hk-border);
	border-radius: var(--hk-radius-sm);
	background: var(--hk-surface);
	color: var(--hk-text);
	font: inherit;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hk-catalog-page .hp-page input:hover,
.hk-catalog-page .hp-page select:hover {
	border-color: rgba(18, 63, 47, 0.42);
}

.hk-catalog-page .hp-page input:focus,
.hk-catalog-page .hp-page select:focus {
	border-color: var(--hk-gold);
	outline: none;
	box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.17);
}

.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"]:focus,
.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"]:focus,
.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"]:focus-visible,
.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"]:focus-visible {
	border-color: var(--hk-gold) !important;
	outline: 0 !important;
	box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.18) !important;
}

.hk-catalog-page .hp-page button,
.hk-catalog-page .hp-page input[type="submit"],
.hk-catalog-page .hp-page .hp-button {
	border-radius: var(--hk-radius-sm);
	font-weight: 750;
}

/* Enhanced layout is enabled only after the DOM has been prepared. */
.hk-catalog-enhanced .hp-page {
	width: min(100%, 1380px);
	margin-inline: auto;
	padding-inline: clamp(16px, 3vw, 34px);
}

.hk-catalog-heading {
	margin: 8px 0 22px;
}

.hk-catalog-heading h1 {
	margin: 0;
	color: var(--hk-green);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.hk-catalog-heading p {
	max-width: 720px;
	margin: 9px 0 0;
	color: var(--hk-muted);
	font-size: clamp(15px, 1.7vw, 18px);
	line-height: 1.55;
}

.hk-catalog-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding: 14px;
	background: var(--hk-surface);
	border: 1px solid rgba(18, 63, 47, 0.11);
	border-radius: var(--hk-radius);
	box-shadow: var(--hk-shadow-sm);
}

.hk-catalog-toolbar__search,
.hk-catalog-search-form,
.hk-catalog-search-form .hp-form__fields,
.hk-catalog-search-form .hp-form__field,
.hk-catalog-search-form .hp-field {
	min-width: 0;
	width: 100%;
}

.hk-catalog-search-form {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin: 0 !important;
}

.hk-catalog-search-form .hp-form__fields {
	flex: 1 1 auto;
	margin: 0 !important;
}

.hk-catalog-search-form .hp-form__footer {
	flex: 0 0 auto;
	margin: 0 !important;
}

.hk-catalog-search-form input[type="text"],
.hk-catalog-search-form input[type="search"] {
	width: 100%;
	min-height: 52px;
	padding-inline: 18px;
}

.hk-catalog-search-form button[type="submit"],
.hk-catalog-search-form input[type="submit"] {
	min-height: 52px;
	padding: 10px 24px;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
	background: var(--hk-green) !important;
	border: 1px solid var(--hk-green) !important;
	box-shadow: none;
}

.hk-catalog-search-form button[type="submit"]:hover,
.hk-catalog-search-form input[type="submit"]:hover {
	background: var(--hk-green-deep) !important;
	border-color: var(--hk-green-deep) !important;
	transform: translateY(-1px);
}

.hk-catalog-toolbar__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.hk-catalog-filter-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	margin: 0;
	padding: 10px 18px;
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green);
	background: #ffffff !important;
	border: 1px solid rgba(18, 63, 47, 0.3) !important;
	box-shadow: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.hk-catalog-filter-toggle svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hk-catalog-filter-toggle:hover {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold);
	background: rgba(199, 154, 43, 0.06) !important;
	border-color: var(--hk-gold) !important;
	transform: translateY(-1px);
}

.hk-catalog-filter-toggle__count {
	display: grid;
	place-items: center;
	min-width: 23px;
	height: 23px;
	padding: 0 6px;
	color: #ffffff;
	-webkit-text-fill-color: #ffffff;
	background: var(--hk-gold);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.hk-catalog-filter-toggle__count[hidden] {
	display: none;
}

.hk-catalog-sort-form {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.hk-catalog-sort-form label {
	margin: 0;
	color: var(--hk-green);
	font-weight: 700;
	white-space: nowrap;
}

.hk-catalog-sort-form select {
	min-width: 155px;
	min-height: 52px;
	padding-inline: 14px 38px;
}

.hk-catalog-active-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.hk-catalog-active-filters[hidden] {
	display: none;
}

.hk-catalog-chip,
.hk-catalog-active-filters__reset {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	margin: 0;
	padding: 7px 11px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.hk-catalog-chip {
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green);
	background: rgba(18, 63, 47, 0.055) !important;
	border: 1px solid rgba(18, 63, 47, 0.16) !important;
	border-radius: 999px !important;
}

.hk-catalog-chip:hover {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold);
	border-color: rgba(199, 154, 43, 0.65) !important;
	background: rgba(199, 154, 43, 0.07) !important;
}

.hk-catalog-active-filters__reset {
	color: #8a4a36 !important;
	-webkit-text-fill-color: #8a4a36;
	background: transparent !important;
	border: 0 !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hk-catalog-result-count {
	margin: 2px 0 6px !important;
	color: var(--hk-muted) !important;
	font-size: 14px;
}

.hk-catalog-enhanced .hp-page__sidebar {
	display: none !important;
}

.hk-catalog-enhanced .hp-page__content {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-top: 0 !important;
}

.hk-catalog-enhanced .hp-listings {
	margin-top: 0 !important;
}

.hk-catalog-enhanced .hp-page__topbar:empty,
.hk-catalog-enhanced .hk-catalog-native-filter-toggle {
	display: none !important;
}

/* Stable 3 / 2 / 1 listing grid. */
.hk-catalog-enhanced .hp-listings.hp-grid,
.hk-catalog-enhanced .hp-listings .hp-grid {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: stretch;
	margin-inline: -12px !important;
}

.hk-catalog-enhanced .hp-listings .hp-grid__item,
.hk-catalog-enhanced .hp-listings.hp-grid > .hp-grid__item {
	flex: 0 0 33.333333% !important;
	width: 33.333333% !important;
	max-width: 33.333333% !important;
	padding: 12px !important;
}

.hk-catalog-enhanced .hp-listing--view-block,
.hk-catalog-enhanced .hp-listing {
	height: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(18, 63, 47, 0.13);
	border-radius: var(--hk-radius);
	box-shadow: var(--hk-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hk-catalog-enhanced .hp-listing--view-block:hover,
.hk-catalog-enhanced .hp-listing:hover {
	border-color: rgba(199, 154, 43, 0.55);
	box-shadow: 0 16px 38px rgba(18, 63, 47, 0.13);
	transform: translateY(-3px);
}

.hk-catalog-enhanced .hp-listing__image,
.hk-catalog-enhanced .hp-listing__images {
	overflow: hidden;
	background: var(--hk-surface-soft);
}

.hk-catalog-enhanced .hp-listing__image img,
.hk-catalog-enhanced .hp-listing__images img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.hk-catalog-enhanced .hp-listing:hover .hp-listing__image img,
.hk-catalog-enhanced .hp-listing:hover .hp-listing__images img {
	transform: scale(1.025);
}

/* Off-canvas filters. */
.hk-catalog-drawer[hidden] {
	display: none !important;
}

.hk-catalog-drawer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	justify-content: flex-end;
}

.hk-catalog-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: rgba(8, 24, 17, 0.58) !important;
	border: 0 !important;
	border-radius: 0 !important;
	backdrop-filter: blur(3px);
	cursor: default;
}

.hk-catalog-drawer__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(100%, 430px);
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	color: var(--hk-text);
	background: #ffffff;
	box-shadow: -18px 0 55px rgba(8, 25, 18, 0.24);
	animation: hk-catalog-drawer-in 0.22s ease-out;
}

.hk-catalog-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 22px 18px;
	border-bottom: 1px solid var(--hk-border);
}

.hk-catalog-drawer__eyebrow {
	display: block;
	margin-bottom: 3px;
	color: var(--hk-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hk-catalog-drawer__header h2 {
	margin: 0;
	color: var(--hk-green);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
}

.hk-catalog-drawer__close {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green);
	background: var(--hk-surface-soft) !important;
	border: 1px solid rgba(18, 63, 47, 0.12) !important;
	border-radius: 50% !important;
	cursor: pointer;
}

.hk-catalog-drawer__close svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.hk-catalog-drawer__close:hover {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold);
	border-color: var(--hk-gold) !important;
}

.hk-catalog-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 20px 22px 26px;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
}

.hk-catalog-filter-form {
	margin: 0 !important;
}

.hk-catalog-filter-form .hp-form__fields {
	display: grid;
	gap: 18px;
}

.hk-catalog-filter-form .hp-form__field {
	margin: 0 !important;
}

.hk-catalog-filter-form .hp-field__label,
.hk-catalog-filter-form .hp-form__label,
.hk-catalog-filter-form label.hp-field__label,
.hk-catalog-filter-form > label {
	margin-bottom: 8px;
	color: var(--hk-green) !important;
	font-weight: 750 !important;
}

/* Let the whole drawer scroll; do not trap categories in a tiny internal box. */
.hk-catalog-filter-form [class*="category"] .hp-field,
.hk-catalog-filter-form [class*="category"] .hp-field__options,
.hk-catalog-filter-form [class*="category"] ul,
.hk-catalog-filter-form .hp-field--radio,
.hk-catalog-filter-form .hp-field--checkbox {
	max-height: none !important;
	height: auto !important;
	overflow: visible !important;
}

.hk-catalog-filter-form input[type="number"],
.hk-catalog-filter-form select {
	width: 100%;
}

.hk-catalog-filter-form .hp-field--number-range,
.hk-catalog-filter-form [data-component="range-slider"] {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.hk-catalog-filter-form .hp-field--number-range > * {
	min-width: 0;
}

.hk-catalog-filter-form .hp-form__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(110px, auto);
	gap: 10px;
	position: sticky;
	bottom: 0;
	z-index: 2;
	margin: 22px -22px -26px !important;
	padding: 16px 22px 22px;
	background: linear-gradient(to top, #ffffff 78%, rgba(255, 255, 255, 0));
}

.hk-catalog-apply,
.hk-catalog-reset {
	min-height: 50px;
	margin: 0 !important;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.hk-catalog-apply {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
	background: var(--hk-green) !important;
	border: 1px solid var(--hk-green) !important;
}

.hk-catalog-apply:hover {
	background: var(--hk-green-deep) !important;
	border-color: var(--hk-green-deep) !important;
}

.hk-catalog-reset,
.hk-catalog-reset:visited,
.hk-catalog-reset:focus,
.hk-catalog-reset:focus-visible,
.hk-catalog-reset:active {
	min-width: 110px;
	padding-inline: 18px;
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green) !important;
	background: #ffffff !important;
	border: 1px solid rgba(18, 63, 47, 0.3) !important;
	text-indent: 0 !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	opacity: 1 !important;
}

.hk-catalog-reset span {
	display: inline !important;
	visibility: visible !important;
	color: inherit !important;
	-webkit-text-fill-color: inherit !important;
	opacity: 1 !important;
}

.hk-catalog-reset:hover {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold) !important;
	background: #ffffff !important;
	border-color: var(--hk-gold) !important;
}

.hk-catalog-filters-open {
	overflow: hidden;
}

.hk-catalog-page button:focus-visible,
.hk-catalog-page input:focus-visible,
.hk-catalog-page select:focus-visible,
.hk-catalog-drawer button:focus-visible {
	outline: 2px solid var(--hk-gold);
	outline-offset: 3px;
}

@keyframes hk-catalog-drawer-in {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

@media (max-width: 1100px) {
	.hk-catalog-toolbar {
		grid-template-columns: 1fr;
	}

	.hk-catalog-toolbar__actions {
		justify-content: space-between;
	}

	.hk-catalog-enhanced .hp-listings .hp-grid__item,
	.hk-catalog-enhanced .hp-listings.hp-grid > .hp-grid__item {
		flex-basis: 50% !important;
		width: 50% !important;
		max-width: 50% !important;
	}
}

@media (max-width: 700px) {
	.hk-catalog-enhanced .hp-page {
		padding-inline: 14px;
	}

	.hk-catalog-heading {
		margin-bottom: 16px;
	}

	.hk-catalog-heading h1 {
		font-size: 31px;
	}

	.hk-catalog-toolbar {
		gap: 11px;
		padding: 11px;
		border-radius: 14px;
	}

	.hk-catalog-search-form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}

	.hk-catalog-search-form button[type="submit"],
	.hk-catalog-search-form input[type="submit"] {
		padding-inline: 18px;
	}

	.hk-catalog-toolbar__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 8px;
	}

	.hk-catalog-filter-toggle,
	.hk-catalog-sort-form,
	.hk-catalog-sort-form select {
		width: 100%;
	}

	.hk-catalog-sort-form label {
		display: none;
	}

	.hk-catalog-sort-form select {
		min-width: 0;
	}

	.hk-catalog-enhanced .hp-listings.hp-grid,
	.hk-catalog-enhanced .hp-listings .hp-grid {
		margin-inline: -6px !important;
	}

	.hk-catalog-enhanced .hp-listings .hp-grid__item,
	.hk-catalog-enhanced .hp-listings.hp-grid > .hp-grid__item {
		flex-basis: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 8px 6px !important;
	}

	.hk-catalog-drawer__panel {
		width: 100%;
	}

	.hk-catalog-drawer__header {
		padding: 18px 18px 15px;
	}

	.hk-catalog-drawer__body {
		padding: 18px 18px 24px;
	}

	.hk-catalog-filter-form .hp-form__footer {
		bottom: 0;
		margin: 20px -18px -24px !important;
		padding: 15px 18px 20px;
	}
}

@media (max-width: 480px) {
	.hk-catalog-filter-form .hp-form__footer {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.hk-catalog-reset {
		min-width: 0;
		padding-inline: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hk-catalog-page *,
	.hk-catalog-drawer__panel {
		scroll-behavior: auto !important;
		animation: none !important;
		transition-duration: 0.01ms !important;
	}
}

/* Core 1.6.2: precise toolbar alignment and reliable filter controls. */
.hk-catalog-toolbar {
	align-items: stretch;
}

.hk-catalog-toolbar__search,
.hk-catalog-toolbar__actions {
	display: flex;
	align-items: stretch;
	min-height: 52px;
}

.hk-catalog-search-form,
.hk-catalog-search-form .hp-form__fields,
.hk-catalog-search-form .hp-form__field,
.hk-catalog-search-form .hp-form__footer {
	min-height: 52px;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.hk-catalog-search-form .hp-form__fields,
.hk-catalog-search-form .hp-form__footer {
	display: flex;
	align-items: stretch;
}

.hk-catalog-search-form input[type="text"],
.hk-catalog-search-form input[type="search"],
.hk-catalog-search-form button[type="submit"],
.hk-catalog-search-form input[type="submit"],
.hk-catalog-filter-toggle,
.hk-catalog-sort-form,
.hk-catalog-sort-form select {
	height: 52px;
	min-height: 52px;
	max-height: 52px;
}

.hk-catalog-toolbar__actions > * {
	align-self: stretch;
}

/* Keep the reset label visible even if the theme replaces button text styles. */
.hk-catalog-drawer .hk-catalog-filter-form .hp-form__footer .hk-catalog-reset,
.hk-catalog-drawer .hk-catalog-filter-form .hp-form__footer .hk-catalog-reset:hover,
.hk-catalog-drawer .hk-catalog-filter-form .hp-form__footer .hk-catalog-reset:focus,
.hk-catalog-drawer .hk-catalog-filter-form .hp-form__footer .hk-catalog-reset:active {
	appearance: none !important;
	-webkit-appearance: none !important;
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green) !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border: 1px solid rgba(18, 63, 47, 0.3) !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	text-indent: 0 !important;
	overflow: visible !important;
}

.hk-catalog-reset::before {
	content: attr(data-label);
	display: inline-block !important;
	visibility: visible !important;
	color: inherit !important;
	-webkit-text-fill-color: inherit !important;
	font: inherit !important;
	line-height: inherit !important;
	opacity: 1 !important;
}

.hk-catalog-reset:hover::before,
.hk-catalog-reset:focus::before {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold) !important;
}

/* Number fields stay clean; visitors can type any positive range themselves. */
.hk-catalog-filter-form input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.hk-catalog-filter-form input[type="number"]::-webkit-inner-spin-button,
.hk-catalog-filter-form input[type="number"]::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

@media (max-width: 1100px) {
	.hk-catalog-toolbar__search,
	.hk-catalog-toolbar__actions {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.hk-catalog-toolbar__search,
	.hk-catalog-search-form,
	.hk-catalog-toolbar__actions {
		min-height: auto;
	}

	.hk-catalog-search-form .hp-form__fields,
	.hk-catalog-search-form .hp-form__footer,
	.hk-catalog-search-form input[type="text"],
	.hk-catalog-search-form input[type="search"],
	.hk-catalog-search-form button[type="submit"],
	.hk-catalog-search-form input[type="submit"],
	.hk-catalog-filter-toggle,
	.hk-catalog-sort-form,
	.hk-catalog-sort-form select {
		height: 52px;
		min-height: 52px;
		max-height: 52px;
	}
}


/* Core 1.6.3: remove the unreliable sales-unit filter and lock result-card widths. */
.hk-catalog-reset::before {
	content: none !important;
}

.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid > .hk-catalog-listing-item {
	min-width: 0 !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: none !important;
}

@media (max-width: 1100px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px !important;
	}
}

@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 16px !important;
	}
}


/* Core 1.6.6: disable the empty native HivePress mobile filter modal.
 * The real filter form is moved into the HARCHI KOLO drawer.
 */
.hk-catalog-page.hk-catalog-enhanced #listing_filter_modal,
.hk-catalog-page.hk-catalog-enhanced .hk-catalog-native-filter-modal,
.hk-catalog-page.hk-catalog-enhanced [href*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced [data-target*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced [data-modal*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced [data-url*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced [data-id*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced [aria-controls*="listing_filter_modal"],
.hk-catalog-page.hk-catalog-enhanced .hk-catalog-native-filter-toggle {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Core 1.7.11: professional mobile filter and sorting controls. */
.hk-catalog-sort-form {
	position: relative;
	min-width: 0;
}

.hk-catalog-sort-form select {
	width: 100%;
	border-color: rgba(18, 63, 47, 0.3) !important;
	border-radius: var(--hk-radius-sm) !important;
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green) !important;
	background-color: #ffffff !important;
	font-weight: 700;
	box-shadow: none !important;
	cursor: pointer;
}

.hk-catalog-sort-form select:hover {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold) !important;
	border-color: var(--hk-gold) !important;
	background-color: rgba(199, 154, 43, 0.06) !important;
}

.hk-catalog-sort-form select:focus,
.hk-catalog-sort-form select:focus-visible {
	color: var(--hk-green) !important;
	-webkit-text-fill-color: var(--hk-green) !important;
	border-color: var(--hk-gold) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.17) !important;
}

@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		gap: 14px;
		padding: 12px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 10px !important;
		width: 100%;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__fields,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__footer,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"] {
		width: 100% !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
		gap: 10px;
		width: 100%;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		width: 100% !important;
		min-width: 0 !important;
		height: 54px;
		min-height: 54px;
		max-height: 54px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		padding: 0 14px;
		border-radius: 14px !important;
		font-size: 17px;
		font-weight: 750;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle svg {
		flex: 0 0 auto;
		width: 20px;
		height: 20px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		appearance: none;
		-webkit-appearance: none;
		padding: 0 40px 0 16px !important;
		border-radius: 14px !important;
		font-size: 16px;
		line-height: 1.2;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23123F2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 15 5 5 5-5'/%3E%3Cpath d='m7 9 5-5 5 5'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 13px center !important;
		background-size: 17px 17px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 4px 0 12px !important;
		font-size: 15px;
		line-height: 1.45;
	}
}

@media (max-width: 380px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 8px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		font-size: 15px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		padding-inline: 10px;
		gap: 6px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		padding-left: 12px !important;
		padding-right: 34px !important;
		background-position: right 10px center !important;
	}
}

/* Core 1.7.13: refined professional desktop catalog toolbar. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading {
		margin-bottom: 24px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		gap: 12px;
		margin-bottom: 14px;
		padding: 16px;
		border-color: rgba(18, 63, 47, 0.12);
		border-radius: 18px;
		background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
		box-shadow: 0 14px 34px rgba(18, 63, 47, 0.09);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form {
		gap: 12px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		height: 54px;
		min-height: 54px;
		max-height: 54px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"] {
		padding-inline: 18px;
		border-color: rgba(18, 63, 47, 0.2);
		background: #ffffff;
		font-size: 16px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"] {
		min-width: 120px;
		padding-inline: 24px;
		border-radius: 12px !important;
		font-size: 16px;
		letter-spacing: 0.005em;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 12px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		min-width: 126px;
		padding-inline: 17px;
		border-radius: 12px !important;
		font-size: 16px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		display: grid;
		grid-template-columns: auto minmax(92px, 1fr);
		align-items: center;
		gap: 9px;
		min-width: 220px;
		padding: 0 10px 0 14px !important;
		border: 1px solid rgba(18, 63, 47, 0.3) !important;
		border-radius: 12px !important;
		background: #ffffff !important;
		transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form:hover {
		border-color: var(--hk-gold) !important;
		background: rgba(199, 154, 43, 0.045) !important;
		transform: translateY(-1px);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form:focus-within {
		border-color: var(--hk-gold) !important;
		box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.17) !important;
		transform: none;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		margin: 0;
		color: var(--hk-muted);
		font-size: 12px;
		font-weight: 750;
		line-height: 1;
		letter-spacing: 0.015em;
		white-space: nowrap;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		appearance: none;
		-webkit-appearance: none;
		min-width: 0 !important;
		width: 100% !important;
		padding: 0 32px 0 0 !important;
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		border: 0 !important;
		border-radius: 0 !important;
		background-color: transparent !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23123F2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 15 5 5 5-5'/%3E%3Cpath d='m7 9 5-5 5 5'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 4px center !important;
		background-size: 17px 17px !important;
		box-shadow: none !important;
		font-size: 15px;
		font-weight: 800;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select:hover,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select:focus,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select:focus-visible {
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		background-color: transparent !important;
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 34px;
		margin: 2px 0 22px !important;
		padding: 6px 12px;
		color: var(--hk-muted) !important;
		background: var(--hk-surface-soft);
		border: 1px solid rgba(18, 63, 47, 0.1);
		border-radius: 999px;
		font-size: 13px;
		font-weight: 650;
		line-height: 1.25;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count::before {
		content: "";
		flex: 0 0 auto;
		width: 6px;
		height: 6px;
		background: var(--hk-gold);
		border-radius: 50%;
	}
}

@media (min-width: 701px) and (max-width: 1180px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		grid-template-columns: minmax(0, 1fr);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		justify-content: flex-start;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		min-width: 230px;
	}
}

@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
		white-space: nowrap !important;
		border: 0 !important;
	}
}


/* Core 1.7.14: compact desktop sorting and tighter catalog rhythm. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		grid-template-columns: minmax(0, 1fr) max-content;
		align-items: center;
		gap: 10px;
		margin-bottom: 12px;
		padding: 12px 14px;
		border-radius: 16px;
		box-shadow: 0 12px 30px rgba(18, 63, 47, 0.085);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		flex: 0 0 auto;
		gap: 10px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		height: 52px;
		min-height: 52px;
		max-height: 52px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"] {
		min-width: 118px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		min-width: 126px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		display: flex;
		align-items: center;
		flex: 0 0 244px;
		width: 244px;
		min-width: 244px;
		max-width: 244px;
		gap: 6px;
		padding: 0 12px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		flex: 0 0 auto;
		color: var(--hk-muted);
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: 0;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		flex: 1 1 auto;
		min-width: 0 !important;
		width: auto !important;
		max-width: none !important;
		padding: 0 27px 0 2px !important;
		background-position: right 1px center !important;
		font-size: 15px;
		font-weight: 800;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 0 0 12px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content,
	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}
}

@media (min-width: 701px) and (max-width: 1180px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		grid-template-columns: minmax(0, 1fr);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		justify-content: flex-start;
	}
}


/* Core 1.7.15: calmer desktop composition and tighter vertical rhythm. */
@media (min-width: 701px) {
	body.hk-catalog-page {
		--content-vertical-spacing: 32px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page {
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading {
		margin: 0 0 18px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading h1 {
		font-size: clamp(36px, 3.3vw, 44px);
		line-height: 1.04;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading p {
		margin-top: 8px;
		font-size: 17px;
		line-height: 1.45;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		gap: 12px;
		margin-bottom: 14px;
		padding: 10px 12px;
		border-color: rgba(18, 63, 47, 0.12);
		border-radius: 14px;
		background: #ffffff;
		box-shadow: 0 10px 26px rgba(18, 63, 47, 0.07);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form {
		gap: 10px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		height: 50px;
		min-height: 50px;
		max-height: 50px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"] {
		padding-inline: 17px;
		font-size: 15px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form button[type="submit"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="submit"] {
		min-width: 116px;
		padding-inline: 22px;
		font-size: 15px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 10px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		min-width: 122px;
		padding-inline: 16px;
		font-size: 15px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		flex-basis: 218px;
		width: 218px;
		min-width: 218px;
		max-width: 218px;
		padding: 0 10px 0 12px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		font-size: 13px;
		font-weight: 700;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		padding-right: 25px !important;
		font-size: 14px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__topbar {
		display: none !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		display: flex;
		align-items: center;
		gap: 8px;
		min-height: 24px;
		margin: 0 0 18px !important;
		padding: 0;
		color: var(--hk-muted) !important;
		background: transparent;
		border: 0;
		border-radius: 0;
		font-size: 13px;
		font-weight: 650;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count::before {
		width: 6px;
		height: 6px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content,
	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}


/* Core 1.7.16: corrected desktop spacing and refined catalog cards. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hp-page__columns,
	.hk-catalog-page.hk-catalog-enhanced .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hp-page__content,
	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content {
		display: block !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		display: flex;
		align-items: center;
		gap: 8px;
		min-height: 22px;
		margin: 0 0 14px !important;
		padding: 0;
		color: var(--hk-muted) !important;
		background: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		font-size: 13px;
		font-weight: 650;
		line-height: 1.3;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count::before {
		content: "";
		flex: 0 0 auto;
		width: 6px;
		height: 6px;
		background: var(--hk-gold);
		border-radius: 50%;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 22px !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listing-item {
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing--view-block,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing {
		border: 1px solid rgba(18, 63, 47, 0.12);
		border-radius: 14px;
		box-shadow: 0 8px 24px rgba(18, 63, 47, 0.075);
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing--view-block:hover,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing:hover {
		border-color: rgba(199, 154, 43, 0.5);
		box-shadow: 0 14px 34px rgba(18, 63, 47, 0.12);
		transform: translateY(-2px);
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__image,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__images {
		margin: 0 !important;
		padding: 0 !important;
		background: var(--hk-surface-soft) !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__image img,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__images img {
		display: block;
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__content {
		margin: 0 !important;
		padding: 18px 20px 20px !important;
		background: #ffffff !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__title {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin: 0 0 9px !important;
		color: var(--hk-green) !important;
		font-size: 22px !important;
		font-weight: 800 !important;
		line-height: 1.22 !important;
		letter-spacing: -0.012em;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__title a,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__title a:visited {
		color: var(--hk-green) !important;
		text-decoration: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__title a:hover {
		color: var(--hk-gold) !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--secondary {
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--primary {
		color: var(--hk-text) !important;
		font-size: 15px;
		line-height: 1.45;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--secondary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__created-date {
		margin-top: 4px !important;
		color: var(--hk-muted) !important;
		font-size: 13px;
		line-height: 1.4;
	}
}

@media (min-width: 701px) and (max-width: 1100px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px !important;
	}
}


/* Core 1.7.17: desktop results rhythm, clean image header and roomier sorting. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		margin-bottom: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-results {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 24px 0 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-layout {
		display: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 0 0 12px !important;
		font-size: 14px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		flex: 0 0 238px;
		width: 238px;
		min-width: 238px;
		max-width: 238px;
		gap: 9px;
		padding: 0 12px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		flex: 0 0 auto;
		line-height: 1;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		flex: 1 1 auto;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
		line-height: 0;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__image,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__images,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__image > a,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__images > a {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		line-height: 0;
	}
}

/* Core 1.7.18: remove the residual desktop media spacer and show full sorting labels. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		flex: 0 0 266px;
		width: 266px;
		min-width: 266px;
		max-width: 266px;
		gap: 10px;
		padding: 0 13px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		flex: 1 0 92px;
		width: 92px !important;
		min-width: 92px !important;
		max-width: none !important;
		padding-right: 25px !important;
		text-overflow: clip;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background: transparent !important;
		font-size: 0 !important;
		line-height: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header::before,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header::after {
		display: none !important;
		content: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header > .hp-listing__image,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header > .hp-listing__images {
		display: block !important;
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		aspect-ratio: 3 / 2;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background: var(--hk-surface-soft) !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header > .hp-listing__image > a,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header > .hp-listing__images > a {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header .hp-listing__image img,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header .hp-listing__images img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 0 !important;
		max-height: none !important;
		aspect-ratio: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		object-fit: cover !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__header > :empty:not(.hp-listing__image):not(.hp-listing__images) {
		display: none !important;
	}
}


/* Core 1.7.19: align every desktop toolbar control to one horizontal top line. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		align-items: start !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__search,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		align-self: start !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		height: 50px !important;
		min-height: 50px !important;
		max-height: 50px !important;
		align-items: flex-start !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		align-self: flex-start !important;
		margin-top: 0 !important;
	}
}


/* Core 1.7.20: stable toolbar without sorting, clearer active filters and a useful empty state. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar--without-sort {
		grid-template-columns: minmax(0, 1fr) auto !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar--without-sort .hk-catalog-toolbar__search {
		justify-content: stretch !important;
		width: 100% !important;
		max-width: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar--without-sort .hk-catalog-search-form {
		flex: 1 1 auto !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar--without-sort .hk-catalog-toolbar__actions {
		width: auto !important;
		min-width: 0 !important;
		justify-content: flex-end !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-active-filters:not([hidden]) {
		margin: 10px 0 22px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-active-filters__reset {
		min-height: 34px;
		padding: 6px 12px;
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		background: #ffffff !important;
		border: 1px solid rgba(18, 63, 47, 0.2) !important;
		border-radius: 999px !important;
		text-decoration: none !important;
		transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-active-filters__reset:hover,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-active-filters__reset:focus-visible {
		color: var(--hk-gold) !important;
		-webkit-text-fill-color: var(--hk-gold) !important;
		background: rgba(199, 154, 43, 0.06) !important;
		border-color: rgba(199, 154, 43, 0.68) !important;
		outline: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-results--empty {
		margin-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state {
		display: flex;
		align-items: flex-start;
		gap: 18px;
		width: 100%;
		max-width: 760px;
		margin: 0;
		padding: 26px 28px;
		background: #ffffff;
		border: 1px solid rgba(18, 63, 47, 0.12);
		border-radius: 16px;
		box-shadow: 0 10px 28px rgba(18, 63, 47, 0.06);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__icon {
		display: grid;
		place-items: center;
		flex: 0 0 48px;
		width: 48px;
		height: 48px;
		color: var(--hk-green);
		background: rgba(18, 63, 47, 0.065);
		border-radius: 50%;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__icon svg {
		width: 24px;
		height: 24px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.8;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__copy {
		min-width: 0;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h1,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h2,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h3,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h4 {
		margin: 1px 0 8px !important;
		color: var(--hk-green) !important;
		font-size: 28px !important;
		font-weight: 800 !important;
		line-height: 1.18 !important;
		letter-spacing: -0.015em;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state p {
		max-width: 560px;
		margin: 0 0 18px !important;
		color: var(--hk-muted) !important;
		font-size: 15px;
		line-height: 1.55;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action:visited {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 10px 18px;
		color: #ffffff !important;
		background: var(--hk-green);
		border: 1px solid var(--hk-green);
		border-radius: 11px;
		font-size: 14px;
		font-weight: 800;
		line-height: 1.2;
		text-decoration: none !important;
		transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action:hover,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action:focus-visible {
		color: #ffffff !important;
		background: var(--hk-green-deep);
		border-color: var(--hk-green-deep);
		transform: translateY(-1px);
		outline: none;
	}
}

@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-active-filters__reset {
		min-height: 34px;
		padding: 6px 11px;
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		background: #ffffff !important;
		border: 1px solid rgba(18, 63, 47, 0.2) !important;
		border-radius: 999px !important;
		text-decoration: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state {
		display: block;
		margin: 2px 0 0;
		padding: 22px 18px;
		background: #ffffff;
		border: 1px solid rgba(18, 63, 47, 0.12);
		border-radius: 14px;
		box-shadow: 0 8px 22px rgba(18, 63, 47, 0.055);
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__icon {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		margin-bottom: 14px;
		color: var(--hk-green);
		background: rgba(18, 63, 47, 0.065);
		border-radius: 50%;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__icon svg {
		width: 22px;
		height: 22px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.8;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h1,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h2,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h3,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state h4 {
		margin: 0 0 8px !important;
		color: var(--hk-green) !important;
		font-size: 25px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state p {
		margin: 0 0 17px !important;
		color: var(--hk-muted) !important;
		font-size: 14px;
		line-height: 1.5;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-state__action:visited {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 10px 16px;
		color: #ffffff !important;
		background: var(--hk-green);
		border: 1px solid var(--hk-green);
		border-radius: 11px;
		font-size: 14px;
		font-weight: 800;
		line-height: 1.2;
		text-decoration: none !important;
	}
}

/* Core 1.7.21: vertically centered desktop toolbar and branded filter actions. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		align-items: center !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__search,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__fields,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__field,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-field,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__footer {
		align-self: center !important;
		align-items: center !important;
		height: 50px !important;
		min-height: 50px !important;
		max-height: 50px !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		align-items: center !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		align-self: center !important;
	}
}

@media (min-width: 1181px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		height: 72px !important;
		min-height: 72px !important;
		max-height: 72px !important;
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
}

.hk-catalog-drawer .hk-catalog-apply,
.hk-catalog-drawer .hk-catalog-reset {
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

.hk-catalog-drawer .hk-catalog-apply:hover,
.hk-catalog-drawer .hk-catalog-apply:focus-visible,
.hk-catalog-drawer .hk-catalog-apply:active {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	background: var(--hk-gold) !important;
	border-color: var(--hk-gold) !important;
	box-shadow: 0 7px 18px rgba(199, 154, 43, 0.24) !important;
	transform: translateY(-1px);
	outline: none !important;
}

.hk-catalog-drawer .hk-catalog-reset:hover,
.hk-catalog-drawer .hk-catalog-reset:focus-visible,
.hk-catalog-drawer .hk-catalog-reset:active {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold) !important;
	background: rgba(199, 154, 43, 0.08) !important;
	border-color: var(--hk-gold) !important;
	box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.13) !important;
	transform: translateY(-1px);
	outline: none !important;
}

.hk-catalog-drawer .hk-catalog-reset:hover::before,
.hk-catalog-drawer .hk-catalog-reset:focus-visible::before,
.hk-catalog-drawer .hk-catalog-reset:active::before {
	color: var(--hk-gold) !important;
	-webkit-text-fill-color: var(--hk-gold) !important;
}

/* Core 1.7.27: tighter mobile catalog spacing without changing desktop. */
@media (max-width: 700px) {
	body.hk-catalog-page {
		--content-vertical-spacing: 22px;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page {
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading {
		margin: 0 0 12px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading p {
		margin-top: 7px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		gap: 10px !important;
		margin-bottom: 0 !important;
		padding: 10px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__fields,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__field,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-field,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form .hp-form__footer,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form {
		gap: 8px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 8px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-page__columns,
	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-page__columns {
		margin-top: 18px !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content,
	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 0 0 10px !important;
	}
}


/* Core 1.7.28: final mobile catalog rhythm — remove residual theme/topbar gaps. */
@media (max-width: 700px) {
	body.hk-catalog-page {
		--content-vertical-spacing: 8px;
	}

	body.hk-catalog-page .site-main,
	body.hk-catalog-page #main {
		padding-top: 8px !important;
	}

	body.hk-catalog-page .site-main > .ct-container,
	body.hk-catalog-page .site-main > .ct-container-full,
	body.hk-catalog-page #main > .ct-container,
	body.hk-catalog-page #main > .ct-container-full {
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading {
		margin: 0 0 10px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-heading p {
		margin-top: 5px !important;
		line-height: 1.42;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar {
		gap: 8px !important;
		margin-bottom: 0 !important;
		padding: 8px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 7px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-page__columns,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-page__columns {
		margin-top: 10px !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__topbar {
		display: none !important;
		height: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 0 0 8px !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}


/* Core 1.7.36: mobile catalog — tighter gap before results count. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar ~ .hp-page__columns,
	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-row,
	.hk-catalog-page.hk-catalog-enhanced .hp-page > .hp-page__columns {
		margin-top: 2px !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-result-count {
		margin: 0 0 6px !important;
		padding-top: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-page__content,
	.hk-catalog-page.hk-catalog-enhanced .hp-listings,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}


/* Core 1.7.37: mobile results are detached from the native HivePress
 * columns wrapper, which was reserving the large invisible vertical gap. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-results--mobile {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 12px 0 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-empty-layout--mobile {
		display: none !important;
		height: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-results--mobile .hk-catalog-result-count {
		margin: 0 0 8px !important;
	}
}


/* Core 1.7.38: mobile catalog — readable search placeholder and wider sorting. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"],
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"] {
		padding-inline: 14px !important;
		font-size: 15px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="text"]::placeholder,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-search-form input[type="search"]::placeholder {
		font-size: 14px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		gap: 10px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		flex: 0 0 126px !important;
		width: 126px !important;
		min-width: 126px !important;
		max-width: 126px !important;
		padding-inline: 15px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		flex: 0 0 148px !important;
		width: 148px !important;
		min-width: 148px !important;
		max-width: 148px !important;
		padding: 0 10px !important;
		gap: 4px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		padding: 0 22px 0 0 !important;
		font-size: 13px !important;
		background-position: right 0 center !important;
	}
}


/* Core 1.7.39: mobile catalog — short placeholder and clearer sorting text. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		flex: 0 0 118px !important;
		width: 118px !important;
		min-width: 118px !important;
		max-width: 118px !important;
		padding-inline: 12px !important;
		font-size: 15px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		flex: 0 0 156px !important;
		width: 156px !important;
		min-width: 156px !important;
		max-width: 156px !important;
		padding: 0 10px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		font-size: 14px !important;
		padding-right: 22px !important;
	}
}


/* Core 1.7.40: mobile catalog — rebalance filter and sorting button sizes. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		display: grid !important;
		grid-template-columns: minmax(108px, 0.95fr) minmax(164px, 1.05fr) !important;
		align-items: center !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		height: 54px !important;
		min-height: 54px !important;
		max-height: 54px !important;
		align-self: stretch !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		padding-inline: 12px !important;
		font-size: 15px !important;
		justify-content: center !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		padding: 0 12px !important;
		gap: 6px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		padding: 0 24px 0 0 !important;
		font-size: 14px !important;
	}
}


/* Core 1.7.44: mobile catalog — one native sorting control, no duplicate enhanced UI. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		align-items: center !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 54px !important;
		min-height: 54px !important;
		max-height: 54px !important;
		align-self: stretch !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-filter-toggle {
		padding-inline: 10px !important;
		font-size: 15px !important;
		justify-content: center !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		margin: 0 !important;
		padding: 0 10px !important;
		overflow: hidden !important;
		background: #ffffff !important;
		border: 1px solid rgba(18, 63, 47, 0.30) !important;
		border-radius: 12px !important;
		box-shadow: none !important;
	}

	/* HivePress/Select2 can render a second visual select. It is hidden only in
	 * this compact mobile sorting control; the real select remains functional. */
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .select2-container,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .choices,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .selectize-control,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .nice-select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .ts-wrapper,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .ss-main,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .hk-catalog-sort-generated-ui {
		display: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form select.select2-hidden-accessible {
		position: static !important;
		inset: auto !important;
		clip: auto !important;
		clip-path: none !important;
		z-index: auto !important;
		display: block !important;
		visibility: visible !important;
		width: 100% !important;
		height: 52px !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 26px 0 8px !important;
		overflow: visible !important;
		opacity: 1 !important;
		color: #44525B !important;
		-webkit-text-fill-color: #44525B !important;
		background-color: transparent !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7F78' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 4px center !important;
		background-size: 14px 14px !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		cursor: pointer !important;
	}
}


/* Core 1.7.45: stable mobile sorting control.
 * The real native select covers the whole button transparently, while one
 * deterministic label is drawn underneath. This avoids Samsung truncation and
 * prevents HivePress/Select2 duplicate controls from becoming visible. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form.hk-catalog-sort-form--mobile-overlay {
		position: relative !important;
		display: block !important;
		height: 54px !important;
		min-height: 54px !important;
		max-height: 54px !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background: #ffffff !important;
		border: 1px solid rgba(18, 63, 47, 0.30) !important;
		border-radius: 12px !important;
		box-shadow: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay > *:not(select):not(.hk-catalog-sort-display),
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .hk-catalog-sort-generated-ui,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .select2-container,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .choices,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .selectize-control,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .nice-select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .ts-wrapper,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .ss-main {
		display: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay > select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay > select.select2-hidden-accessible {
		position: absolute !important;
		inset: 0 !important;
		z-index: 3 !important;
		display: block !important;
		visibility: visible !important;
		width: 100% !important;
		height: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		opacity: 0 !important;
		clip: auto !important;
		clip-path: none !important;
		border: 0 !important;
		cursor: pointer !important;
		appearance: auto !important;
		-webkit-appearance: menulist !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay .hk-catalog-sort-display {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		min-width: 0 !important;
		padding: 0 36px 0 16px !important;
		overflow: hidden !important;
		pointer-events: none !important;
		color: #44525B !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1 !important;
		white-space: nowrap !important;
		text-overflow: ellipsis !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form--mobile-overlay::after {
		position: absolute !important;
		top: 50% !important;
		right: 14px !important;
		z-index: 2 !important;
		width: 0 !important;
		height: 0 !important;
		margin-top: -2px !important;
		pointer-events: none !important;
		border-top: 6px solid #6E7F78 !important;
		border-right: 5px solid transparent !important;
		border-left: 5px solid transparent !important;
		content: "" !important;
	}
}


/* Core 1.7.52: desktop catalog — one sorting control only.
 * HivePress may rebuild Select2/Choices markup after the toolbar is moved.
 * Hide every generated visual shell on desktop and expose only the native
 * select. Mobile keeps the stable 1.7.45 transparent-overlay implementation. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		position: relative !important;
		display: grid !important;
		grid-template-columns: auto minmax(92px, 1fr) !important;
		align-items: center !important;
		gap: 9px !important;
		min-width: 220px !important;
		max-width: 260px !important;
		height: 52px !important;
		min-height: 52px !important;
		margin: 0 !important;
		padding: 0 10px 0 14px !important;
		overflow: hidden !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .hk-catalog-sort-display,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .hk-catalog-sort-generated-ui,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .select2-container,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .choices,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .selectize-control,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .nice-select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .ts-wrapper,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form .ss-main {
		display: none !important;
		visibility: hidden !important;
		width: 0 !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form > select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form > select.select2-hidden-accessible {
		position: static !important;
		inset: auto !important;
		z-index: auto !important;
		display: block !important;
		visibility: visible !important;
		clip: auto !important;
		clip-path: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 50px !important;
		margin: 0 !important;
		padding: 0 30px 0 0 !important;
		overflow: visible !important;
		opacity: 1 !important;
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		background-color: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		font-size: 15px !important;
		font-weight: 800 !important;
		appearance: none !important;
		-webkit-appearance: none !important;
	}
}


/* Core 1.7.53: desktop sorting cosmetics only.
 * No structural changes — just a calmer label, more breathing room,
 * and a cleaner arrow so the control looks polished on desktop. */
@media (min-width: 701px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-toolbar__actions {
		align-items: center !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		grid-template-columns: auto minmax(112px, 1fr) !important;
		gap: 12px !important;
		min-width: 286px !important;
		max-width: 286px !important;
		height: 52px !important;
		padding: 0 14px 0 16px !important;
		border: 1px solid rgba(18, 63, 47, 0.28) !important;
		border-radius: 12px !important;
		background: #ffffff !important;
		box-shadow: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form:hover {
		border-color: rgba(199, 154, 43, 0.78) !important;
		background: rgba(199, 154, 43, 0.03) !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form:focus-within {
		border-color: var(--hk-gold) !important;
		box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.16) !important;
		background: #ffffff !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-label {
		margin: 0 !important;
		color: #5f746b !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1 !important;
		letter-spacing: 0 !important;
		white-space: nowrap !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form > select,
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form > select.select2-hidden-accessible {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 50px !important;
		padding: 0 34px 0 0 !important;
		color: var(--hk-green) !important;
		-webkit-text-fill-color: var(--hk-green) !important;
		background-color: transparent !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23123F2F' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 3px center !important;
		background-size: 14px 14px !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		font-size: 15px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		text-overflow: ellipsis !important;
	}
}

@media (min-width: 701px) and (max-width: 1160px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-sort-form {
		min-width: 274px !important;
		max-width: 274px !important;
	}
}


/* Core 1.7.54: compact, consistent mobile listing cards.
 * CSS-only correction: no price parsing, cloning or DOM movement.
 * All cards keep natural height, and the complete commercial line stays
 * beside the message button instead of wrapping the package to a new line. */
@media (max-width: 700px) {
	.hk-catalog-page.hk-catalog-enhanced .hk-catalog-listings-grid > .hk-catalog-listing-item {
		align-self: start !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing--view-block {
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__content {
		display: flex !important;
		flex: 0 0 auto !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 14px 16px 8px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__title {
		margin: 0 0 8px !important;
		font-size: 22px !important;
		line-height: 1.18 !important;
		letter-spacing: -0.015em !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__details--secondary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__created-date {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__created-date {
		margin-top: 3px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hk-listing-views--owner-card {
		margin: 7px 0 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 44px !important;
		align-items: center !important;
		gap: 10px !important;
		flex: 0 0 auto !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 8px 16px 16px !important;
		background: #ffffff !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer > * {
		min-width: 0 !important;
		margin: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__attributes--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__details--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer > :first-child {
		overflow: visible !important;
		color: var(--hk-green) !important;
		font-size: clamp(15px, 4.4vw, 18px) !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
		letter-spacing: -0.018em !important;
		white-space: nowrap !important;
		word-break: normal !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__actions--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__actions,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer > :last-child {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		width: 44px !important;
		min-width: 44px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__action--message,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer a[href*="message"] {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		min-height: 42px !important;
		margin: 0 !important;
		padding: 0 !important;
		border-radius: 50% !important;
	}
}

@media (max-width: 370px) {
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer {
		grid-template-columns: minmax(0, 1fr) 40px !important;
		gap: 7px !important;
		padding-inline: 14px !important;
	}

	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__attributes--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer .hp-listing__details--primary,
	.hk-catalog-page.hk-catalog-enhanced .hp-listing__footer > :first-child {
		font-size: 14px !important;
	}
}


/* ==================================================
   Mobile catalog card title anti-clipping — Core 1.7.66
   ==================================================
   Fixes slight top clipping of the first letter (e.g. 'З') in mobile
   listing cards by adding a little inner top space and a touch more line
   height. Only the mobile catalog title is affected.
*/
@media (max-width: 700px) {
    .hk-catalog-page.hk-catalog-enhanced .hp-listing__title {
        padding-top: 2px !important;
        line-height: 1.22 !important;
    }

    .hk-catalog-page.hk-catalog-enhanced .hp-listing__title a,
    .hk-catalog-page.hk-catalog-enhanced .hp-listing__title a:visited {
        display: block !important;
        line-height: inherit !important;
    }
}


/* ==================================================
   Clean native desktop sorting — Core 1.7.69
   ==================================================
   Desktop only. The sort form is rebuilt in JavaScript with one clean native
   select, preventing Select2/list-box rendering. Mobile remains unchanged.
 */
@media (min-width: 701px) {
    .hk-catalog-page.hk-catalog-enhanced
        .hk-catalog-sort-form.hk-catalog-sort-form--desktop-native {
        display: block !important;
        flex: 0 0 210px !important;
        width: 210px !important;
        min-width: 210px !important;
        max-width: 210px !important;
        height: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hk-catalog-page.hk-catalog-enhanced
        .hk-catalog-sort-form--desktop-native
        > *:not(select):not(input[type="hidden"]) {
        display: none !important;
    }

    .hk-catalog-page.hk-catalog-enhanced
        .hk-catalog-sort-form--desktop-native
        select.hk-catalog-desktop-native-sort {
        position: static !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 52px !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: 52px !important;
        max-height: 52px !important;
        margin: 0 !important;
        padding: 0 42px 0 20px !important;
        overflow: hidden !important;
        opacity: 1 !important;
        color: var(--hk-green) !important;
        -webkit-text-fill-color: var(--hk-green) !important;
        background-color: #ffffff !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7F78' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 14px 14px !important;
        border: 1px solid rgba(18, 63, 47, 0.30) !important;
        border-radius: 12px !important;
        outline: none !important;
        box-shadow: none !important;
        clip: auto !important;
        clip-path: none !important;
        font-size: 15px !important;
        font-weight: 750 !important;
        line-height: normal !important;
        text-align: center !important;
        text-align-last: center !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        cursor: pointer !important;
    }

    .hk-catalog-page.hk-catalog-enhanced
        .hk-catalog-sort-form--desktop-native
        select.hk-catalog-desktop-native-sort:hover {
        border-color: var(--hk-gold) !important;
        background-color: rgba(199, 154, 43, 0.045) !important;
    }

    .hk-catalog-page.hk-catalog-enhanced
        .hk-catalog-sort-form--desktop-native
        select.hk-catalog-desktop-native-sort:focus {
        border-color: var(--hk-gold) !important;
        box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.17) !important;
    }
}
