.compiny-toast-stack {
	position: fixed;
	inset: 0;
	z-index: 200000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px;
	box-sizing: border-box;
	pointer-events: none;
	background: transparent;
	transition: background 0.2s ease;
}

.compiny-toast-stack.is-active {
	pointer-events: auto;
	background: rgba(30, 23, 21, 0.4);
}

.compiny-toast {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: min(380px, 100%);
	padding: 16px 18px;
	border-radius: 12px;
	background: #f5f0eb;
	border: 1px solid rgba(81, 62, 55, 0.12);
	box-shadow: 0 20px 48px rgba(30, 23, 21, 0.28);
	color: #513e37;
	font-family: Golos, serif;
	font-size: 15px;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(10px) scale(0.98);
	transition: opacity 0.28s ease, transform 0.28s ease;
	pointer-events: auto;
}

.compiny-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.compiny-toast--success {
	border-left: 4px solid #2d6a4f;
}

.compiny-toast--error {
	border-left: 4px solid #c0392b;
}

.compiny-toast__message {
	flex: 1 1 auto;
	text-align: left;
}

.compiny-toast__close {
	flex: 0 0 auto;
	border: none;
	background: transparent;
	color: #655e5b;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	margin: -2px 0 0;
	width: 24px;
	height: 24px;
}

.compiny-toast__close:hover {
	color: #513e37;
}
