/* Frontend sorting bar styles */
.dz-shop-sort-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	direction: rtl;
	font-family: inherit;
	width: 100%;
}

.dz-sort-options-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dz-sort-icon {
	display: inline-flex;
	align-items: center;
	color: #007446;
	/* Brand green */
	margin-left: 8px;
}

.dz-sort-options-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 24px;
	align-items: center;
}

.dz-sort-option {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
}

.dz-sort-option span {
	color: #56585B !important;
	transition: color 0.2s ease;
}

.dz-sort-option:hover span {
	color: #007446 !important;
}

.dz-sort-option.active span {
	color: #007446 !important;
	font-weight: bold;
}

.dz-sort-count-wrap {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13.5px;
	color: #56585B;
	white-space: nowrap;
}

.dz-sort-count-number {
	font-weight: 700;
	color: #56585B;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
	.dz-shop-sort-bar {
		display: none !important;
	}

	/* Mobile sorting options inside drawer */
	.dz-mobile-sort-options-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.dz-mobile-sort-option {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px 20px;
		border-bottom: 1px solid #f2f2f2;
		cursor: pointer;
		font-size: 14px;
		color: #56585B;
		transition: background-color 0.2s;
		text-align: right;
	}

	.dz-mobile-sort-option:active {
		background-color: #f9f9f9;
	}

	.dz-mobile-sort-option.active {
		color: #007446;
		font-weight: bold;
	}

	.dz-mobile-sort-option .dz-option-checkmark {
		display: flex;
		align-items: center;
	}
}