/**
 * Lille Løv Filter
 *
 * Bevisst nøytral. Arver farger, skrift og knappestil fra Woodmart der det er mulig,
 * slik at filteret ikke skal se ut som et fremmedelement i butikken.
 */

.llf {
	font-size: 14px;
}

.llf-group {
	margin-bottom: 22px;
}

.llf-title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
	opacity: .75;
}

.llf-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.llf-item {
	margin: 0;
}

.llf-item--extra {
	display: none;
}

.llf-group.is-expanded .llf-item--extra {
	display: block;
}

.llf-link {
	display: inline-block;
	padding: 5px 11px;
	border: 1px solid currentColor;
	border-radius: 3px;
	line-height: 1.35;
	text-decoration: none;
	opacity: .62;
	transition: opacity .12s ease;
}

.llf-link:hover,
.llf-link:focus-visible {
	opacity: 1;
}

.llf-link.is-active {
	opacity: 1;
	font-weight: 600;
	border-width: 2px;
	padding: 4px 10px; /* Kompenserer for tykkere ramme, så knappen ikke hopper. */
	background: rgba(0, 0, 0, .05);
}

.llf-more {
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
	opacity: .7;
}

.llf-more:hover {
	opacity: 1;
}

.llf-active {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.llf-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(0, 0, 0, .06);
	text-decoration: none;
	font-size: 13px;
}

.llf-chip span {
	opacity: .55;
}

.llf-chip:hover span {
	opacity: 1;
}

.llf-clear {
	margin-left: auto;
	font-size: 13px;
	text-decoration: underline;
	opacity: .7;
}

.llf-clear:hover {
	opacity: 1;
}

.llf.is-loading {
	opacity: .5;
	pointer-events: none;
}
