:root {
	--hcf-navy: #0f3546;
	--hcf-orange: #dc8a27;
	--hcf-border: #d8d8d8;
	--hcf-text: #062f43;
	--hcf-muted: #6f7f88;
}

.hcf-notice {
	padding: 14px 16px;
	border-left: 4px solid var(--hcf-orange);
	background: #fff8ef;
	color: var(--hcf-text);
}

.hcf-filters {
	padding: 8px 0 40px 0;
	color: var(--hcf-text);
}

.hcf-filter-title,
.hcf-mobile-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--hcf-text);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hcf-filter-icon {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
}

.hcf-filter-group {
	margin-top: 36px;
	max-width: 324px;
}

.hcf-price-group {
	margin-top: 32px;
}

.hcf-filter-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 0 0 10px;
	border: 0;
	border-bottom: 1px solid var(--hcf-navy);
	background: transparent;
	color: #b55e12;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 0;
	box-shadow: none;
}

.hcf-filters button.hcf-filter-heading,
.hcf-filters button.hcf-filter-heading:hover,
.hcf-filters button.hcf-filter-heading:focus {
	min-height: 0;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	border-bottom: 1px solid var(--hcf-navy);
	border-radius: 0;
	background: transparent;
	color: #b55e12;
	padding: 0 0 10px;
	box-shadow: none;
	outline: none;
}

.hcf-filter-heading::before {
	content: "+";
	color: var(--hcf-orange);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.hcf-filter-group.is-open .hcf-filter-heading::before {
	content: "-";
}

.hcf-filter-options {
	display: none;
	gap: 12px;
	margin-top: 22px;
}

.hcf-filter-group.is-open .hcf-filter-options {
	display: grid;
}

.hcf-price-group .hcf-filter-options {
	margin-top: 28px;
}

.hcf-check {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hcf-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
}

.hcf-check.is-disabled {
	opacity: 0.42;
	cursor: not-allowed;
}

.hcf-check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hcf-check-box {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border: 2px solid var(--hcf-navy);
	border-radius: 8px;
	color: #fff;
}

.hcf-check input:checked + .hcf-check-box {
	background: var(--hcf-navy);
}

.hcf-check input:checked + .hcf-check-box::after {
	content: "\2713";
	font-size: 14px;
	font-weight: 900;
}

.hcf-price-range {
	position: relative;
	height: 18px;
	margin-top: 0;
	border: 0;
	box-shadow: none;
}

.hcf-price-range::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--hcf-navy);
	transform: translateY(-50%);
}

.hcf-price-range input[type="range"] {
	position: absolute;
	top: calc( 50% - 5px);
	left: 0;
	width: 100%;
	margin: 0;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: translateY(-50%);
}

.hcf-price-range input[type="range"]::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: var(--hcf-orange);
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.hcf-price-range input[type="range"]::-webkit-slider-runnable-track {
	height: 4px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hcf-price-range input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: var(--hcf-orange);
	pointer-events: auto;
	cursor: pointer;
}

.hcf-price-range input[type="range"]::-moz-range-track {
	height: 4px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hcf-price-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px;
	margin-top: 26px;
}

.hcf-price-field {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--hcf-text);
	font-size: 14px;
	font-weight: 600;
}

.hcf-price-field input {
	width: 100%;
	max-width: none;
	min-width: 0;
	height: 59px;
	border: 1px solid var(--hcf-border);
	padding: 0 10px;
	color: var(--hcf-text);
	font: inherit;
	box-sizing: border-box;
	text-align: left;
}

.hcf-price-field input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.hcf-price-field input[type="number"]::-webkit-outer-spin-button,
.hcf-price-field input[type="number"]::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.hcf-products-area {
	color: var(--hcf-text);
}

.hcf-toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
	margin-bottom: 46px;
	color: var(--hcf-text);
}

.hcf-count {
	margin-right: 30px;
	font-size: 20px;
	white-space: nowrap;
}

.hcf-toolbar label {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	font-size: 18px;
	white-space: nowrap;
}

.hcf-select {
	width: 174px;
	min-width: 174px;
	height: 52px;
	border: 1px solid var(--hcf-border);
	border-radius: 0;
	background: #fff;
	padding: 0 36px 0 20px;
	color: var(--hcf-text);
	font-size: 24px;
	line-height: 1;
}

.hcf-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 54px;
	row-gap: 86px;
	overflow: visible;
}

.hcf-product {
	position: relative;
	text-align: center;
	color: var(--hcf-text);
	content-visibility: auto;
	contain-intrinsic-size: 460px;
	overflow: visible;
}

.hcf-product[hidden] {
	display: none;
}

.hcf-product.hcf-filter-fade-in {
	animation: hcfFilterFadeIn 280ms ease both;
}

@keyframes hcfFilterFadeIn {
	from {
		opacity: 0.35;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hcf-product-image {
	display: block;
	aspect-ratio: 1.35;
	margin-bottom: 34px;
	overflow: visible;
}

.hcf-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform-origin: center center;
	transition: transform 220ms ease;
	will-change: transform;
}

.hcf-product-image:hover img {
	transform: scale(1.08);
}

.hcf-product-title {
	margin: 0 auto 18px;
	max-width: 360px;
	color: var(--hcf-text);
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hcf-product-title a {
	color: inherit;
	text-decoration: none;
}

.hcf-product-rating {
	min-height: 30px;
	margin-bottom: 6px;
	color: var(--hcf-orange);
	font-size: 28px;
	line-height: 1;
	letter-spacing: 4px;
}

.hcf-product-rating .star-rating {
	float: none;
	display: inline-block;
	color: var(--hcf-orange);
	font-size: 18px;
	letter-spacing: 0;
}

.hcf-product-price {
	margin-bottom: 26px;
	color: var(--hcf-text);
	font-size: 24px;
	line-height: 1.2;
}

.hcf-product .button,
.hcf-product-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	min-width: 260px;
	border: 0;
	border-radius: 999px;
	background: var(--hcf-navy);
	color: #fff;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: none;
	text-decoration: none;
	box-shadow: 0 7px 16px rgba(15, 53, 70, 0.28);
}

.hcf-add-to-cart-button {
	text-transform: uppercase;
}

.hcf-product .button:hover,
.hcf-product-button:hover {
	background: #092838;
	color: #fff;
}

.hcf-product .button.loading {
	position: relative;
	color: transparent;
	pointer-events: none;
}

.hcf-product .button.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: hcfButtonSpin 700ms linear infinite;
}

@keyframes hcfButtonSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hcf-product .button.loading::after {
		animation: none;
	}
}

.hcf-learn-more {
	display: inline-block;
	margin-top: 12px;
	color: var(--hcf-text);
	font-size: 24px;
	line-height: 1.2;
	text-decoration: underline;
}

.hcf-mobile-filter-toggle,
.hcf-filter-close,
.hcf-overlay {
	display: none;
}

@media (max-width: 900px) {
	.hcf-mobile-filter-toggle {
		display: inline-flex;
		margin: 36px 0 26px;
		border: 0;
		background: transparent;
		padding: 0;
		cursor: pointer;
	}

	.hcf-filters {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 10001;
		width: min(86vw, 430px);
		overflow-y: auto;
		transform: translateX(-105%);
		transition: transform 220ms ease;
		border-right: 0;
		background: #fff;
		padding: 58px 48px 48px;
	}

	.hcf-filter-group {
		max-width: none;
	}

	.hcf-filters.is-open {
		transform: translateX(0);
	}

	.hcf-filter-close {
		display: grid;
		place-items: center;
		position: absolute;
		top: 28px;
		right: 26px;
		width: 34px;
		height: 34px;
		border: 0;
		background: transparent;
		color: var(--hcf-navy);
		font-size: 34px;
		font-weight: 900;
		line-height: 1;
		cursor: pointer;
	}

	.hcf-overlay {
		position: fixed;
		inset: 0;
		z-index: 10000;
		background: rgba(0, 0, 0, 0.72);
	}

	.hcf-overlay.is-open {
		display: block;
	}

	body.hcf-drawer-open {
		overflow: hidden;
	}

	.hcf-toolbar {
		justify-content: center;
		flex-wrap: wrap;
		gap: 18px;
		margin-bottom: 48px;
	}

	.hcf-count {
		width: 100%;
		margin: 0;
		text-align: center;
		font-size: 20px;
	}

	.hcf-toolbar label {
		display: none;
	}

	.hcf-select {
		min-width: 0;
		width: calc(50% - 9px);
		height: 52px;
		font-size: 24px;
	}

	.hcf-grid {
		grid-template-columns: 1fr;
		row-gap: 54px;
	}

	.hcf-product {
		border-top: 1px solid var(--hcf-border);
		padding-top: 24px;
		content-visibility: visible;
		contain-intrinsic-size: auto;
	}

	.hcf-product-title {
		font-size: 22px;
	}

	.hcf-product .button,
	.hcf-product-button {
		min-width: min(260px, 100%);
	}
}

@media (max-width: 480px) {
	.hcf-filters {
		width: min(92vw, 430px);
		padding: 56px 34px 42px;
	}

	.hcf-select {
		font-size: 22px;
		padding-left: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hcf-product.hcf-filter-fade-in {
		animation: none;
	}
}
