.surahi-filters {
	font-family: inherit;
	max-width: 280px;
	color: #111;
}

.surahi-filters .sf-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.surahi-filters .sf-header h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.surahi-filters .sf-reset {
	font-size: 13px;
	text-decoration: underline;
	color: #111;
}

.surahi-filters .sf-group {
	margin-bottom: 26px;
}

.surahi-filters .sf-group h4 {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 12px;
}

.surahi-filters .sf-price-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.surahi-filters .sf-price-input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 20px;
	border: 1px solid #e2e2e2;
	background: #f4f4f4;
	color: #999;
	font-size: 13px;
}

.surahi-filters .sf-price-row span {
	color: #999;
	font-size: 13px;
}

.surahi-filters .sf-check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	color: #444;
}

.surahi-filters .sf-check input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid #d5d5d5;
	border-radius: 3px;
	margin: 0;
	position: relative;
	cursor: pointer;
	flex: 0 0 16px;
}

.surahi-filters .sf-check input[type="checkbox"]:checked {
	background: #111;
	border-color: #111;
}

.surahi-filters .sf-check input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.surahi-filters .sf-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.surahi-filters .sf-swatch {
	position: relative;
	cursor: pointer;
}

.surahi-filters .sf-swatch input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.surahi-filters .sf-swatch-dot {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.surahi-filters .sf-swatch.is-selected .sf-swatch-dot {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.surahi-filters .sf-apply {
	width: 100%;
	padding: 12px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 24px;
	font-size: 14px;
	cursor: pointer;
}

/* Radio (Stock) */
.surahi-filters .sf-check input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid #d5d5d5;
	border-radius: 50%;
	margin: 0;
	position: relative;
	cursor: pointer;
	flex: 0 0 16px;
}

.surahi-filters .sf-check input[type="radio"]:checked {
	border-color: #111;
}

.surahi-filters .sf-check input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #111;
}

/* Product grid */
.surahi-product-grid {
	position: relative;
	transition: opacity 0.15s ease;
}

.surahi-product-grid.is-loading,
.surahi-loading {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.surahi-results-count {
	font-size: 13px;
	color: #777;
	margin-bottom: 16px;
}

.surahi-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 30px;
}

.surahi-pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #e2e2e2;
	color: #444;
	text-decoration: none;
	font-size: 13px;
}

.surahi-pagination a.current {
	background: #111;
	border-color: #111;
	color: #fff;
}

.surahi-no-products {
	padding: 30px 0;
	text-align: center;
	color: #777;
}

