/* Shared language switch - styled to match blurt.pl / Blurt Plugin orange buttons */
.bp-lang-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 10;
}
.bp-lang-label {
	font-size: 13px;
	font-weight: 700;
	color: inherit;
}
.bp-lang-switch,
#lang,
#lang-switch {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgba(255, 122, 0, 0.35) !important;
	border-radius: 999px !important;
	padding: 9px 38px 9px 14px !important;
	min-height: 40px;
	background-color: #ffffff !important;
	background-image:
		linear-gradient(45deg, transparent 50%, #f97316 50%),
		linear-gradient(135deg, #f97316 50%, transparent 50%),
		linear-gradient(to right, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.25));
	background-position:
		calc(100% - 18px) 17px,
		calc(100% - 13px) 17px,
		calc(100% - 32px) 50%;
	background-size: 5px 5px, 5px 5px, 1px 22px;
	background-repeat: no-repeat;
	color: #132033 !important;
	font-weight: 800 !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	cursor: pointer;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.bp-lang-switch:hover,
#lang:hover,
#lang-switch:hover {
	border-color: #f97316 !important;
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12), 0 10px 24px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}
.bp-lang-switch:focus,
#lang:focus,
#lang-switch:focus {
	outline: none;
	border-color: #f97316 !important;
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.bp-topbar {
	width: min(1140px, calc(100% - 32px));
	margin: 18px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.bp-topbar-card {
	background: rgba(255,255,255,0.78);
	border: 1px solid #d9e2ef;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(15,23,42,0.08);
	padding: 10px 14px;
}
@media (max-width: 600px) {
	.bp-lang-label { display: none; }
	.bp-lang-switch, #lang, #lang-switch { min-height: 38px; font-size: 13px !important; }
}
