.disotech-b2b-toggle {
	--disotech-b2b-pill-bg: #5c5c5c;
	--disotech-b2b-active-bg: #b99610;
	--disotech-b2b-active-bg-hover: #93780d;
	--disotech-b2b-active-text: #ffffff;
	--disotech-b2b-inactive-text: #9c9c9c;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 2px;
	border-radius: 999px;
	background: var(--disotech-b2b-pill-bg);
	vertical-align: middle;
}

.disotech-b2b-toggle button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 5px 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--disotech-b2b-inactive-text);
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.275rem;
	letter-spacing: 0;
	cursor: pointer;
	appearance: none;
	transition: background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.12s ease;
}

.disotech-b2b-toggle button:active {
	transform: scale(0.96);
}

.disotech-b2b-toggle button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.disotech-b2b-toggle button.is-active {
	background: var(--disotech-b2b-active-bg);
	color: var(--disotech-b2b-active-text);
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.14);
}

.disotech-b2b-toggle button.is-active:hover {
	background: var(--disotech-b2b-active-bg-hover);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
	.disotech-b2b-toggle button {
		transition: none;
	}

	.disotech-b2b-toggle button:active {
		transform: none;
	}
}

/* Checkout gate box (Slice 3 + inline AJAX verify). */
.disotech-b2b-checkout-gate {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid #e8b23a;
	border-radius: 4px;
}

.disotech-b2b-gate__heading {
	margin-top: 0;
}

.disotech-b2b-gate__verify {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.disotech-b2b-gate__verify label {
	flex: 1 1 100%;
}

.disotech-b2b-gate__verify .input-text {
	flex: 1 1 220px;
}

.disotech-b2b-gate__msg {
	flex: 1 1 100%;
	font-size: 13px;
}

.disotech-b2b-gate__msg.is-error {
	color: #b32d2e;
}

.disotech-b2b-gate__msg.is-pending {
	color: #555;
}

.disotech-b2b-gate__sep {
	margin: 12px 0;
	color: #777;
}

.disotech-b2b-checkout-gate[data-state="verified"] {
	border-color: #46b450;
}

.disotech-b2b-gate__confirmed {
	margin-top: 0;
	color: #2a7d2e;
}

/* B2C-view hint — the gate's quiet mirror: no border, no icons, calmer than the gate box. */
.disotech-b2b-b2c-hint {
	margin: 1em 0;
	padding: 0.65em 1em;
	border-radius: 4px;
	background: #f3f3f3;
	color: #555;
	font-size: 14px;
}

.disotech-b2b-b2c-hint a {
	color: #b99610;
	text-decoration: underline;
}

.disotech-b2b-b2c-hint a:hover {
	color: #93780d;
}
