.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.aiken-catalog-search,
.aiken-inquiry-form {
	box-sizing: border-box;
}

.aiken-search-form {
	display: grid;
	grid-template-columns: minmax(190px, 0.7fr) minmax(260px, 1.3fr) auto;
	gap: 0.75rem;
	max-width: 62rem;
	align-items: end;
}

.aiken-search-form__field {
	display: grid;
	grid-template-rows: auto 3.6rem;
	gap: 0.4rem;
	margin: 0;
}

.aiken-search-form > p {
	margin: 0;
}

.aiken-search-form__field > br {
	display: none;
}

.aiken-search-form__field label {
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.aiken-search-form input,
.aiken-search-form select,
.aiken-inquiry-form input,
.aiken-inquiry-form textarea,
.aiken-inquiry-form select {
	box-sizing: border-box;
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid currentColor;
	border-radius: 0;
	background: #fff;
	color: #172019;
	font: inherit;
}

.aiken-search-form input,
.aiken-search-form select,
.aiken-search-form button {
	height: 3.6rem;
}

.aiken-search-form button,
.aiken-inquiry-form button,
.aiken-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid #172019;
	background: #172019;
	color: #fff;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.aiken-search-form.is-loading button {
	cursor: wait;
	opacity: 0.58;
}

.aiken-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
}

.aiken-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid #dce3dd;
	background: #fff;
}

.aiken-product-card__media {
	display: grid;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #f4f7f4;
	place-items: center;
}

.aiken-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 260ms ease;
}

.aiken-product-card:hover .aiken-product-card__media img {
	transform: scale(1.035);
}

.aiken-product-card__placeholder {
	font-size: clamp(1.7rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	opacity: 0.18;
}

.aiken-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.aiken-product-card__category {
	margin: 0 0 0.5rem;
	color: #4f5e53;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.aiken-product-card h3 {
	margin: 0 0 0.9rem;
	font-size: 1.2rem;
	line-height: 1.25;
}

.aiken-product-card h3 a,
.aiken-product-card__link {
	color: inherit;
	text-decoration: none;
}

.aiken-product-card p {
	margin: 0.2rem 0;
	font-size: 0.9rem;
}

.aiken-product-card p span {
	color: #66736a;
}

.aiken-product-card__link {
	margin-top: auto;
	padding-top: 1rem;
	font-weight: 700;
}

.aiken-product-card__actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1rem;
}

.aiken-product-card__actions .aiken-product-card__link {
	margin: 0;
	padding: 0;
}

.aiken-add-rfq {
	padding: 0.5rem 0.65rem;
	border: 1px solid #172019;
	background: transparent;
	color: #172019;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 750;
	cursor: pointer;
}

.aiken-add-rfq:hover,
.aiken-add-rfq:focus-visible,
.aiken-add-rfq.is-added {
	border-color: #70f000;
	background: #70f000;
	outline: 0;
}

.aiken-search-results {
	margin-top: 2rem;
	scroll-margin-top: 96px;
}

#product-finder {
	scroll-margin-top: 96px;
}

.aiken-search-results__count {
	margin-bottom: 1rem;
	font-weight: 700;
}

.aiken-search-results__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.aiken-search-results__summary .aiken-search-results__count {
	margin: 0;
}

.aiken-search-reset,
.aiken-rfq-clear {
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 0.78rem;
	cursor: pointer;
}

.aiken-search-empty {
	max-width: 42rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid #dce3dd;
	background: #f4f7f4;
}

.aiken-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.5rem;
}

.aiken-form-grid p {
	margin: 0;
}

.aiken-form-grid label {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-weight: 650;
}

.aiken-form-grid__wide {
	grid-column: 1 / -1;
}

.aiken-category-picker__label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 650;
}

.aiken-category-picker {
	border: 1px solid #0d1710;
	background: #fff;
}

.aiken-category-picker summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 3rem;
	padding: 0.75rem 0.9rem;
	cursor: pointer;
	list-style: none;
}

.aiken-category-picker summary::-webkit-details-marker {
	display: none;
}

.aiken-category-picker summary::after {
	content: "+";
	flex: 0 0 auto;
	margin-left: 1rem;
	font-size: 1.2rem;
}

.aiken-category-picker[open] summary::after {
	content: "−";
}

.aiken-category-picker__panel {
	padding: 0.35rem 0.9rem 1rem;
	border-top: 1px solid #d7ded8;
}

.aiken-category-picker__options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.35rem 1rem;
	padding: 0.65rem 0;
}

.aiken-form-grid .aiken-category-picker__options label {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	margin: 0;
	padding: 0.35rem 0;
	font-weight: 500;
}

.aiken-category-picker__options input {
	width: auto;
	min-height: auto;
	margin-top: 0.2rem;
}

.aiken-form-grid .aiken-category-picker__custom {
	display: block;
	margin: 0.5rem 0 0;
}

.aiken-inquiry-form textarea {
	resize: vertical;
}

.aiken-inquiry-form button {
	margin-top: 1.25rem;
}

.aiken-consent label {
	font-size: 0.9rem;
	font-weight: 400;
}

.aiken-consent input {
	width: auto;
	min-height: auto;
}

@media (max-width: 640px) {
	.aiken-category-picker__options {
		grid-template-columns: 1fr;
	}
}

.aiken-honeypot {
	position: absolute;
	left: -9999px;
}

.aiken-form-notice {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 1rem;
	padding: 1rem;
	border-left: 4px solid currentColor;
}

.aiken-form-notice--success {
	background: #effbe7;
	color: #194b1d;
}

.aiken-form-notice--error {
	background: #fff0ef;
	color: #8a231b;
}

.aiken-product-rfq-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.aiken-product-rfq-direct {
	color: inherit;
	font-weight: 700;
}

.aiken-rfq-backdrop {
	position: fixed;
	z-index: 498;
	inset: 0;
	background: rgba(10, 18, 12, 0.54);
	backdrop-filter: blur(2px);
}

.aiken-rfq-drawer {
	position: fixed;
	z-index: 499;
	top: 0;
	right: 0;
	display: grid;
	width: min(460px, 100vw);
	height: 100dvh;
	grid-template-rows: auto 1fr auto;
	background: #fbfcf9;
	box-shadow: -18px 0 48px rgba(10, 18, 12, 0.22);
	transform: translateX(102%);
	transition: transform 260ms ease;
}

.aiken-rfq-drawer[aria-hidden="false"] {
	transform: translateX(0);
}

.aiken-rfq-drawer__header,
.aiken-rfq-drawer__footer {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.35rem;
	border-bottom: 1px solid #dce3dd;
}

.aiken-rfq-drawer__header p {
	margin: 0 0 0.3rem;
	color: #15522f;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.aiken-rfq-drawer__header h2 {
	margin: 0;
	font-size: clamp(1.45rem, 4vw, 2rem);
}

.aiken-rfq-drawer__close {
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	border: 1px solid #dce3dd;
	background: transparent;
	font-size: 1.6rem;
	cursor: pointer;
}

.aiken-rfq-drawer__body {
	overflow-y: auto;
	padding: 1.35rem;
}

.aiken-rfq-drawer__empty {
	max-width: 32rem;
	color: #66736a;
	line-height: 1.6;
}

.aiken-rfq-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aiken-rfq-list li {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	border-bottom: 1px solid #dce3dd;
}

.aiken-rfq-list li div {
	display: grid;
	gap: 0.25rem;
}

.aiken-rfq-list li span {
	color: #66736a;
	font-size: 0.78rem;
}

.aiken-rfq-list li button {
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	font: inherit;
	font-size: 0.72rem;
	cursor: pointer;
}

.aiken-rfq-drawer__footer {
	border-top: 1px solid #dce3dd;
	border-bottom: 0;
}

.aiken-rfq-continue {
	padding: 0.9rem 1.1rem;
	background: #70f000;
	color: #172019;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.aiken-rfq-continue.is-disabled {
	pointer-events: none;
	opacity: 0.45;
}

.aiken-rfq-list-trigger {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 121;
	display: inline-flex;
	gap: 0.65rem;
	align-items: center;
	padding: 0.72rem 0.85rem;
	border: 1px solid #172019;
	background: #172019;
	box-shadow: 0 10px 28px rgba(17, 23, 17, 0.2);
	color: #fff;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 750;
	text-transform: uppercase;
	cursor: pointer;
}

.aiken-rfq-list-trigger[hidden] {
	display: none !important;
}

.aiken-rfq-list-trigger strong {
	display: grid;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 50%;
	background: #70f000;
	color: #172019;
	place-items: center;
}

body.aiken-rfq-is-open {
	overflow: hidden;
}

@media (max-width: 760px) {
	.aiken-search-form {
		grid-template-columns: 1fr;
	}

	.aiken-search-form button {
		width: 100%;
	}

	.aiken-rfq-list-trigger {
		bottom: 72px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aiken-product-card__media img,
	.aiken-rfq-drawer {
		transition: none;
	}
}

.aiken-language-switcher {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.aiken-language-switcher__link {
	padding: 0.28rem 0.38rem;
	color: inherit;
	text-decoration: none;
	opacity: 0.6;
}

.aiken-language-switcher__link.is-current {
	background: #82ef00;
	color: #101510;
	opacity: 1;
}

.aiken-language-switcher.is-preview .aiken-language-switcher__link:not(.is-current) {
	cursor: not-allowed;
}

@media (max-width: 760px) {
	.aiken-product-grid,
	.aiken-form-grid {
		grid-template-columns: 1fr;
	}

	.aiken-search-form {
		grid-template-columns: 1fr;
	}

	.aiken-form-grid__wide {
		grid-column: auto;
	}
}
