/* Zotta Outlet filter — shop-style toolbar */

.zso-panel {
	--zso-border: rgba(0, 0, 0, 0.1);
	--zso-muted: rgba(0, 0, 0, 0.55);
	--zso-bg: #fff;
	--zso-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
	margin: 0 0 28px;
	padding: 22px 24px 20px;
	background: var(--zso-bg);
	border: 1px solid var(--zso-border);
	border-radius: 14px;
	box-shadow: var(--zso-shadow);
}

.zso-panel--sticky {
	position: sticky;
	top: calc(var(--gz-header-height, 0px) + 12px);
	z-index: 20;
}

.zso-panel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px 24px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--zso-border);
}

.zso-panel__head-text {
	flex: 1 1 280px;
	min-width: 0;
}

.zso-panel__title {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--gz-heading-color, #111);
}

.zso-panel__intro {
	margin: 0;
	max-width: 52rem;
}

.zso-panel__intro-lead,
.zso-panel__intro-filters {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--zso-muted);
}

.zso-panel__intro-filters {
	margin-top: 8px;
	font-size: 13px;
	opacity: 0.95;
}

.zso-panel__reset {
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--gz-heading-color, #111);
	opacity: 0.75;
	white-space: nowrap;
}

.zso-panel__reset:hover {
	opacity: 1;
}

.zso-panel__body {
	display: grid;
	grid-template-columns: minmax(200px, 1.35fr) minmax(180px, 1fr) minmax(220px, 1.25fr);
	gap: 18px 20px;
	align-items: end;
}

.zso-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.zso-field--grow {
	grid-column: span 1;
}

.zso-field--prices .zso-price-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px 10px;
	width: 100%;
}

.zso-field--prices .zso-input--price {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	max-width: none;
}

.zso-price-sep {
	flex-shrink: 0;
	padding: 0 2px;
	color: var(--zso-muted);
	font-size: 14px;
	line-height: 1;
}

.zso-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--zso-muted);
}

.zso-select,
.zso-input {
	width: 100%;
	max-width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--zso-border);
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	line-height: 1.25;
	color: var(--gz-heading-color, #111);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.zso-select:focus,
.zso-input:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.zso-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gz-heading-color, #222);
	cursor: pointer;
	margin: 0;
}

.zso-check input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--gz-primary-color, #111);
}

.zso-panel__hint {
	margin: 16px 0 0;
	padding-top: 12px;
	border-top: 1px dashed var(--zso-border);
	font-size: 12px;
	line-height: 1.45;
	color: var(--zso-muted);
}

.zso-split-spacer {
	height: 4px;
}

.zso-products-result {
	margin-top: 4px;
}

.zso-pagination ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 8px;
	padding: 0;
	margin: 20px 0 0;
}

.zso-pagination a,
.zso-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	background: #fff;
	color: var(--gz-heading-color, #111);
	text-decoration: none;
}

.zso-pagination .current {
	background: var(--gz-primary-color, #111);
	color: #fff;
	border-color: transparent;
}

@media (max-width: 991px) {
	.zso-panel__body {
		grid-template-columns: 1fr 1fr;
	}

}

@media (max-width: 640px) {
	.zso-panel {
		padding: 18px 16px 16px;
	}

	.zso-panel__body {
		grid-template-columns: 1fr;
	}

	.zso-field--prices .zso-input--price {
		min-width: 72px;
	}
}
