/**
 * HSS Sort — v1.0
 * Deliberately minimal — this is a single <select>, not a whole widget —
 * and matches the configurator's own select styling (hss-configurator.css)
 * for visual parity rather than inventing a third look for what's
 * functionally the same kind of control.
 */
.hss-sort-wrap {
	display: inline-block;
	max-width: 260px;
}

.hss-sort-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 5px 28px 5px 10px;
	border: 0px;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23475467' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
	font-size: 16px;
	font-family: "Hyundai Sans Text", Sans-serif;
	color: #1A1B1F;
	cursor: pointer;
}

.hss-sort-select:focus {
	outline: none;
	border-color: #00AAD2;
	box-shadow: 0 0 0 3px rgba(0, 170, 210, 0.15);
}
