/**
 * Geo language bar — Apple-style top bar (hairalicious.com only).
 */

.hl-geo-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	box-sizing: border-box;
	width: 100%;
	min-height: 48px;
	padding: 12px 56px; /* right padding leaves room for the close button */
	background: #f5f5f7;
	color: #1d1d1f;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	border-bottom: 1px solid #d2d2d7;
}

.hl-geo-bar[hidden] {
	display: none;
}

.hl-geo-bar__text {
	max-width: 980px;
}

.hl-geo-bar__link {
	color: #06c;
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}

.hl-geo-bar__link:hover {
	text-decoration: underline;
}

.hl-geo-bar__close {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: #6e6e73;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hl-geo-bar__close:hover {
	background: #e3e3e6;
	color: #1d1d1f;
}

@media (max-width: 600px) {
	.hl-geo-bar {
		font-size: 13px;
		padding: 10px 48px;
	}

	.hl-geo-bar__close {
		right: 10px;
	}
}
