/* Golden Seed Shop Filters */

.gsf-panel {
	max-width: 260px;
}

.gsf-group {
	margin: 0 0 30px;
}

.gsf-group-title {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #8a7a63;
	margin: 0 0 16px;
}

.gsf-options {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gsf-option {
	margin: 0 0 14px;
}

.gsf-option label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.3;
	color: #2f2f2f;
}

.gsf-option .gsf-check {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}

.gsf-option .gsf-box {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	border: 1px solid #9b9b9b;
	background: #fff;
	display: inline-block;
	position: relative;
	transition: border-color .15s ease, background-color .15s ease;
}

.gsf-option .gsf-check:focus-visible + .gsf-box {
	outline: 2px solid #1d7969;
	outline-offset: 2px;
}

.gsf-option .gsf-check:checked + .gsf-box {
	background: #1d7969;
	border-color: #1d7969;
}

.gsf-option .gsf-check:checked + .gsf-box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Sort control */
.gsf-sort {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #cfcfcf;
	padding: 12px 16px;
}

.gsf-sort-label {
	font-size: 13px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #9b9b9b;
}

.gsf-sort-select {
	border: 0;
	background: transparent;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4a4a4a;
	cursor: pointer;
}

.gsf-sort-select:focus {
	outline: none;
}

/* Grid state */
.gsf-loading {
	transition: opacity .2s ease;
}

/* Theme overrides */
.gsf-group .gsf-options {
	list-style: none;
	padding-left: 0;
}

.gsf-group .gsf-options label {
	font-family: "Work Sans", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 22px !important;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
}

.gsf-group .gsf-group-title {
	font-family: "Work Sans", sans-serif;
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.66px;
	color: #957B5E;
}

.gsf-no-results {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Category / subcategory indentation */
.gsf-option {
	--gsf-depth: 0;
}

.gsf-group .gsf-options .gsf-option label {
	padding-left: calc(var(--gsf-depth, 0) * 22px);
}

.gsf-option--child > label {
	opacity: .85;
}
