/* Products Per Page Selector */
.lte-products-per-page {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.lte-per-page-label {
	font-size: 14px;
	color: #666;
	margin-right: 4px;
}

.lte-per-page-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 32px;
	padding: 0 12px;
	font-size: 14px;
	color: #333;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lte-per-page-option:hover {
	color: #000;
	border-color: #999;
	background: #f5f5f5;
}

.lte-per-page-option.active {
	color: #fff;
	background: #333;
	border-color: #333;
	font-weight: 600;
	pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.lte-wc-order {
		flex-wrap: wrap;
	}
	
	.lte-products-per-page {
		width: 100%;
		justify-content: center;
		margin-top: 15px;
		margin-left: 0;
	}
}

/* Ensure ordering wrapper is flex */
.lte-wc-order {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 15px;
}
