.bsje-switcher {
	position: fixed;
	right: 18px;
	top: 18px;
	z-index: 999999;
	width: min(340px, calc(100vw - 32px));
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 10px;
	background: rgba(10, 13, 18, 0.88);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
	color: #fff;
	font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
	backdrop-filter: blur(16px);
}

.bsje-switcher__title {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bsje-switcher__options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.bsje-switcher__button {
	display: grid;
	gap: 2px;
	min-height: 58px;
	padding: 9px 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	text-align: left;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.bsje-switcher__button:hover,
.bsje-switcher__button:focus-visible {
	border-color: rgba(214, 184, 119, 0.74);
	background: rgba(214, 184, 119, 0.16);
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

.bsje-switcher__button.is-active {
	border-color: #d6b877;
	background: #d6b877;
	color: #111;
}

.bsje-switcher__button span {
	display: block;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
}

.bsje-switcher__button small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.2;
	opacity: 0.78;
}

body.bsje-preview {
	padding-top: 0 !important;
}

body.admin-bar .bsje-switcher {
	top: 50px;
}

@media (max-width: 720px) {
	.bsje-switcher {
		left: 10px;
		right: 10px;
		top: auto;
		bottom: 10px;
		width: auto;
	}

	body.admin-bar .bsje-switcher {
		top: auto;
		bottom: 10px;
	}
}

