.animation-delay-200 {
	animation-delay: 0.2s;
}

.animation-delay-400 {
	animation-delay: 0.4s;
}

.sbg-icon {
	display: inline-block;
	vertical-align: middle;
	color: inherit;
}

.sbg-mobile-nav {
	display: none;
}

.sbg-mobile-nav.is-open {
	display: block;
}

.sbg-accordion-content {
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbg-accordion-content[data-state="closed"] {
	max-height: 0;
	overflow: hidden;
}

.sbg-accordion-content[data-state="open"] {
	max-height: 500px;
	overflow: hidden;
}

.sbg-contact-success {
	display: none;
}

.sbg-contact-wrap.is-submitted .sbg-contact-form {
	display: none;
}

.sbg-contact-wrap.is-submitted .sbg-contact-success {
	display: block;
}

.sbg-is-empty {
	display: none !important;
}

.sbg-toast-region {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	pointer-events: none;
}

.sbg-toast {
	pointer-events: auto;
	min-width: 240px;
	max-width: 360px;
	border-radius: 0.5rem;
	border: 1px solid hsl(var(--border));
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.35);
	padding: 0.875rem 1rem;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.sbg-toast__title {
	font-weight: 600;
	margin-bottom: 0.15rem;
}

.sbg-toast__message {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.sbg-toast--destructive {
	border-color: hsl(var(--destructive) / 0.35);
	background: hsl(var(--destructive));
	color: hsl(var(--destructive-foreground));
}

.sbg-toast--destructive .sbg-toast__message {
	color: hsl(var(--destructive-foreground) / 0.9);
}
