/**
 * Country Selector Component Styles
 * 
 * Responsive dropdown selector for country selection on Peri shop main page.
 * Positioned between header and hero section.
 */

.solera-country-selector-wrapper {
	width: 100%;
	padding: 12px 20px;
	background-color: #f8f8f8;
	z-index: 100;
	display: flex;
	justify-content: center;
}

.solera-country-selector {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.solera-country-selector__label {
	font-weight: 500;
	font-size: 14px;
	color: #333;
	white-space: nowrap;
	margin: 0;
}

.solera-country-selector__select {
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	font-size: 14px;
	font-family: inherit;
	color: #333;
	cursor: pointer;
	min-width: 200px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 20px;
	padding-right: 32px;
}

.solera-country-selector__select:hover {
	border-color: #999;
	background-color: #fafafa;
}

.solera-country-selector__select:focus {
	outline: none;
	border-color: #0066cc;
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.solera-country-selector__select:disabled {
	background-color: #f0f0f0;
	border-color: #ddd;
	color: #999;
	cursor: not-allowed;
	opacity: 0.7;
}

.solera-country-selector__select:disabled:hover {
	background-color: #f0f0f0;
	border-color: #ddd;
}

.solera-country-selector__error {
	position: absolute;
	bottom: -24px;
	right: 0;
	background-color: #fee;
	color: #c00;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-width: 250px;
	z-index: 1000;
}

.solera-country-selector__error.visible {
	display: block !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.solera-country-selector-wrapper {
		padding: 12px 12px;
	}

	.solera-country-selector {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.solera-country-selector__select {
		width: 100%;
		min-width: unset;
	}

	.solera-country-selector__label {
		width: 100%;
	}
}
