:root {
	--sfcb-button-size: 56px;
	--sfcb-icon-size: 22px;
	--sfcb-spacing: 12px;
	--sfcb-radius: 18px;
	--sfcb-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
	--sfcb-z-index: 9999;
}

.sfcb-container {
	position: fixed;
	z-index: var(--sfcb-z-index);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
	max-width: min(92vw, 360px);
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.sfcb-container.sfcb-requires-trigger:not(.is-visible) {
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 8px, 0);
}

.sfcb-desktop-bottom_right,
.sfcb-desktop-right {
	right: calc(max(16px, env(safe-area-inset-right)) - var(--sfcb-desktop-offset-x, 0px));
}

.sfcb-desktop-bottom_left,
.sfcb-desktop-left {
	left: calc(max(16px, env(safe-area-inset-left)) + var(--sfcb-desktop-offset-x, 0px));
	align-items: flex-start;
}

.sfcb-desktop-bottom_right,
.sfcb-desktop-bottom_left {
	bottom: calc(max(16px, env(safe-area-inset-bottom)) - var(--sfcb-desktop-offset-y, 0px));
}

.sfcb-desktop-right,
.sfcb-desktop-left {
	top: calc(50% + var(--sfcb-desktop-offset-y, 0px));
	transform: translate3d(0, -50%, 0);
}

.sfcb-card-panel,
.sfcb-buttons {
	display: flex;
	flex-direction: column;
	gap: var(--sfcb-spacing);
}

.sfcb-layout-horizontal .sfcb-buttons {
	flex-direction: row;
	flex-wrap: wrap;
}

.sfcb-card-panel {
	width: min(100%, 320px);
	padding: 16px 18px;
	border-radius: calc(var(--sfcb-radius) + 8px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
	backdrop-filter: blur(16px);
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
	border: 1px solid rgba(226, 232, 240, 0.95);
}

.sfcb-card-toggle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
	color: #0f172a;
}

.sfcb-card-toggle__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

.sfcb-card-toggle__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sfcb-form-eyebrow-color, #64748b);
}

.sfcb-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #0f172a;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.sfcb-card-badge.is-online {
	background: rgba(34, 197, 94, 0.12);
	color: #166534;
}

.sfcb-card-badge.is-offline {
	background: rgba(245, 158, 11, 0.14);
	color: #9a3412;
}

.sfcb-card-badge .sfcb-status__dot {
	width: 7px;
	height: 7px;
	box-shadow: none;
}

.sfcb-card-toggle__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--sfcb-form-title-color, #0f172a);
}

.sfcb-card-content {
	display: none;
	margin-top: 12px;
}

.sfcb-form-flyout {
	display: none;
}

.sfcb-form-flyout[hidden] {
	display: none !important;
}

.sfcb-container.is-expanded .sfcb-form-flyout:not([hidden]) {
	display: block;
}

.sfcb-container.is-expanded .sfcb-card-content,
.sfcb-expand-on-hover:hover .sfcb-card-content,
.sfcb-expand-on-hover:focus-within .sfcb-card-content {
	display: block;
}

.sfcb-card-content__message {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.5;
	color: #334155;
}

.sfcb-has-form.sfcb-container {
	width: auto;
	max-width: calc(100vw - max(16px, env(safe-area-inset-left)) - max(16px, env(safe-area-inset-right)));
	overflow: visible;
	gap: 10px;
}

.sfcb-contact-header {
	width: auto;
	max-width: 100%;
	padding: 12px 14px;
	align-self: flex-end;
}

.sfcb-desktop-bottom_left .sfcb-contact-header,
.sfcb-desktop-left .sfcb-contact-header {
	align-self: flex-start;
}

.sfcb-contact-header .sfcb-contact-trigger {
	width: 100%;
}

.sfcb-widget-row {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 12px;
	max-width: 100%;
	min-width: 0;
}

/* Left-side widget: form opens to the right of the buttons. */
.sfcb-has-form.sfcb-desktop-bottom_left .sfcb-widget-row,
.sfcb-has-form.sfcb-desktop-left .sfcb-widget-row {
	flex-direction: row-reverse;
}

@media (max-width: 782px) {
	.sfcb-has-form.sfcb-mobile-bottom_left .sfcb-widget-row,
	.sfcb-has-form.sfcb-mobile-left .sfcb-widget-row {
		flex-direction: row-reverse;
	}
}

.sfcb-has-form .sfcb-buttons {
	flex: 0 0 auto;
	flex-shrink: 0;
}

.sfcb-has-form .sfcb-form-flyout {
	flex: 0 0 auto;
	width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 120px));
	max-width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 120px));
	min-width: 0;
	max-height: min(85vh, 720px);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.sfcb-preset-modern .sfcb-contact-header,
.sfcb-preset-modern .sfcb-form-flyout,
.sfcb-preset-modern .sfcb-buttons {
	overflow: visible;
}

.sfcb-form-content__inner {
	width: 100%;
	min-width: 0;
	font-size: calc(14px * var(--sfcb-form-font-scale, 0.88));
	line-height: 1.45;
	color: var(--sfcb-form-label-color, #334155);
}

.sfcb-has-form .sfcb-form-content__inner :where(
	label,
	legend,
	.wpforms-field-label,
	.wpcf7-form-control-wrap,
	.gfield_label,
	.ff-el-form-check-label
) {
	font-size: 0.92em;
	color: var(--sfcb-form-label-color, #334155);
}

.sfcb-has-form .sfcb-form-content__inner :where(input, select, textarea, button) {
	font-size: 1em;
}

.sfcb-has-form .sfcb-form-content__inner .wpforms-field {
	margin-bottom: 10px;
}

.sfcb-form-content__inner :where(.wpcf7, .wpforms-container, .wpforms-container-full, .gform_wrapper, .fluentform, .ff-default, form) {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.sfcb-form-content__inner :where(
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="hidden"]),
	select,
	textarea
) {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.sfcb-form-content__inner :where(input[type="submit"], input[type="button"], button[type="submit"]) {
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
}

/* WPForms */
.sfcb-form-content__inner .wpforms-field-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.sfcb-form-content__inner .wpforms-field-row::before,
.sfcb-form-content__inner .wpforms-field-row::after {
	display: none;
}

.sfcb-form-content__inner :where(.wpforms-one-half, .wpforms-one-third, .wpforms-two-thirds, .wpforms-three-sixths) {
	width: 100% !important;
	max-width: 100%;
	float: none !important;
	clear: both;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.sfcb-form-content__inner .wpforms-field {
	width: 100%;
	padding: 0;
	margin: 0 0 12px;
}

.sfcb-form-content__inner .wpforms-field-label {
	display: block;
	margin-bottom: 6px;
	color: var(--sfcb-form-label-color, #334155);
}

.sfcb-form-content__inner .wpforms-field-sublabel {
	display: block;
	margin-top: 6px;
	font-size: 12px;
}

/* Contact Form 7 */
.sfcb-form-content__inner .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.sfcb-form-content__inner .wpcf7-form-control {
	width: 100%;
	box-sizing: border-box;
}

.sfcb-form-content__inner .wpcf7-response-output {
	margin: 12px 0 0;
}

/* Gravity Forms */
.sfcb-form-content__inner .gform_fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
}

.sfcb-form-content__inner .gfield {
	width: 100%;
	grid-column: 1 / -1;
}

.sfcb-form-content__inner .ginput_complex {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sfcb-form-content__inner .ginput_complex span {
	width: 100%;
}

/* Fluent Forms */
.sfcb-form-content__inner .ff-t-container,
.sfcb-form-content__inner .ff-t-cell {
	display: block;
	width: 100%;
}

.sfcb-form-content__inner .ff-el-group {
	margin-bottom: 12px;
}

.sfcb-form-content__inner .ff-el-input--content {
	width: 100%;
}

.sfcb-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	color: #0f172a;
}

.sfcb-status__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.sfcb-status.is-offline .sfcb-status__dot {
	background: #f59e0b;
	box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.16);
}

.sfcb-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: var(--sfcb-button-size);
	min-height: var(--sfcb-button-size);
	padding: 0 18px;
	border-radius: var(--sfcb-radius);
	background: var(--sfcb-btn-bg, #111827);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.22s ease, background-color 0.22s ease, width 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sfcb-button:link,
.sfcb-button:visited,
.sfcb-button:active {
	color: #ffffff;
	text-decoration: none;
}

.sfcb-button::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: calc(var(--sfcb-radius) - 1px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	z-index: -1;
}

.sfcb-button:hover,
.sfcb-button:focus-visible {
	background: var(--sfcb-btn-hover, #0f172a);
	color: #ffffff;
	outline: none;
	border-color: rgba(255, 255, 255, 0.22);
}

.sfcb-button:focus-visible {
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 22px 40px rgba(15, 23, 42, 0.22);
}

.sfcb-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--sfcb-icon-size);
	height: var(--sfcb-icon-size);
	flex: 0 0 var(--sfcb-icon-size);
	line-height: 0;
}

.sfcb-button__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	overflow: visible;
	display: block;
}

.sfcb-button__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sfcb-button--whatsapp .sfcb-button__icon svg {
	width: 92%;
	height: 92%;
}

.sfcb-button__label {
	max-width: 0;
	opacity: 0;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 650;
	letter-spacing: -0.01em;
	transition: opacity 0.2s ease, max-width 0.2s ease;
}

.sfcb-expand-on-hover .sfcb-button:hover,
.sfcb-expand-on-hover .sfcb-button:focus-visible,
.sfcb-layout-horizontal .sfcb-button {
	width: auto;
}

.sfcb-expand-on-hover .sfcb-button:hover .sfcb-button__label,
.sfcb-expand-on-hover .sfcb-button:focus-visible .sfcb-button__label,
.sfcb-layout-horizontal .sfcb-button .sfcb-button__label,
.sfcb-button.sfcb-button--show-label .sfcb-button__label {
	max-width: 180px;
	opacity: 1;
}

.sfcb-button.sfcb-button--show-label {
	width: auto;
}

.sfcb-tooltip {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	padding: 7px 10px;
	border-radius: 10px;
	background: rgba(15, 23, 42, 0.92);
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.sfcb-button:hover .sfcb-tooltip,
.sfcb-button:focus-visible .sfcb-tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(-4px);
}

.sfcb-desktop-bottom_left .sfcb-tooltip,
.sfcb-desktop-left .sfcb-tooltip {
	left: calc(100% + 10px);
	right: auto;
}

.sfcb-tooltips-disabled .sfcb-tooltip {
	display: none;
}

.sfcb-hover-lift .sfcb-button:hover,
.sfcb-hover-lift .sfcb-button:focus-visible {
	transform: translateY(-4px);
}

.sfcb-hover-grow .sfcb-button:hover,
.sfcb-hover-grow .sfcb-button:focus-visible {
	transform: scale(1.04);
}

.sfcb-hover-pulse .sfcb-button:hover,
.sfcb-hover-pulse .sfcb-button:focus-visible {
	animation: sfcbPulse 1.2s ease-in-out infinite;
}

.sfcb-has-pulse .sfcb-button:first-child::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 2px solid rgba(255, 255, 255, 0.35);
	animation: sfcbRing 2.4s ease-out infinite;
}

.sfcb-container.sfcb-requires-trigger:not(.is-visible).sfcb-entrance-slide-in.sfcb-desktop-right,
.sfcb-container.sfcb-requires-trigger:not(.is-visible).sfcb-entrance-slide-in.sfcb-desktop-bottom_right {
	transform: translate3d(18px, 0, 0);
}

.sfcb-container.sfcb-requires-trigger:not(.is-visible).sfcb-entrance-slide-in.sfcb-desktop-left,
.sfcb-container.sfcb-requires-trigger:not(.is-visible).sfcb-entrance-slide-in.sfcb-desktop-bottom_left {
	transform: translate3d(-18px, 0, 0);
}

.sfcb-container.sfcb-requires-trigger:not(.is-visible).sfcb-entrance-slide-up {
	transform: translate3d(0, 18px, 0);
}

.sfcb-preset-minimal .sfcb-button {
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
}

.sfcb-preset-modern .sfcb-card-panel,
.sfcb-preset-modern .sfcb-buttons {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.44) 45%, rgba(255, 255, 255, 0.28) 100%);
	backdrop-filter: blur(24px) saturate(170%);
	-webkit-backdrop-filter: blur(24px) saturate(170%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.58), inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.sfcb-preset-modern.sfcb-modern-panel-custom .sfcb-card-panel,
.sfcb-preset-modern.sfcb-modern-panel-custom .sfcb-buttons {
	background: var(--sfcb-modern-panel-bg, rgba(255, 255, 255, 0.82));
}

.sfcb-dark-mode.sfcb-preset-modern.sfcb-modern-panel-custom .sfcb-card-panel,
.sfcb-dark-mode.sfcb-preset-modern.sfcb-modern-panel-custom .sfcb-buttons {
	background: var(--sfcb-modern-panel-bg, rgba(15, 23, 42, 0.82));
}

.sfcb-preset-modern .sfcb-card-panel::before,
.sfcb-preset-modern .sfcb-buttons::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.14) 34%, rgba(255, 255, 255, 0) 62%);
	pointer-events: none;
}

.sfcb-preset-modern .sfcb-card-panel::after,
.sfcb-preset-modern .sfcb-buttons::after {
	content: "";
	position: absolute;
	inset: -35% auto auto -15%;
	width: 70%;
	height: 70%;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 28%, rgba(255, 255, 255, 0) 68%);
	filter: blur(8px);
	pointer-events: none;
}

.sfcb-preset-modern .sfcb-buttons {
	align-self: flex-end;
	width: max-content;
	padding: 8px;
	border-radius: calc(var(--sfcb-radius) + 18px);
	gap: 8px;
}

.sfcb-preset-modern .sfcb-button {
	border-radius: calc(var(--sfcb-radius) + 8px);
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0) 100%),
		var(--sfcb-btn-bg, #111827);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.sfcb-preset-modern .sfcb-button:hover,
.sfcb-preset-modern .sfcb-button:focus-visible {
	transform: translateY(-5px) scale(1.025);
	box-shadow: 0 24px 40px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.sfcb-preset-modern .sfcb-button__icon {
	width: var(--sfcb-icon-size);
	height: var(--sfcb-icon-size);
	flex-basis: var(--sfcb-icon-size);
}

.sfcb-preset-modern .sfcb-card-panel {
	align-self: flex-end;
	width: min(100%, 250px);
	padding: 14px 14px 12px;
	border-radius: calc(var(--sfcb-radius) + 10px);
}

.sfcb-preset-modern.sfcb-has-form .sfcb-contact-header {
	width: max-content;
	max-width: min(100%, 280px);
}

.sfcb-preset-modern.sfcb-has-form .sfcb-form-flyout {
	width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 120px));
	max-width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 120px));
}

.sfcb-preset-modern .sfcb-card-toggle__eyebrow {
	font-size: 10px;
}

.sfcb-preset-modern .sfcb-card-toggle__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.sfcb-preset-modern .sfcb-card-content {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.sfcb-preset-modern .sfcb-card-content__message {
	font-size: 12px;
	line-height: 1.5;
	color: #475569;
}

.sfcb-preset-modern .sfcb-card-badge {
	padding: 5px 8px;
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.48);
	font-size: 10px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.sfcb-preset-modern.sfcb-layout-vertical .sfcb-button {
	width: calc(var(--sfcb-button-size) - 6px);
	min-height: calc(var(--sfcb-button-size) - 6px);
	padding-inline: 15px;
}

.sfcb-preset-modern.sfcb-layout-vertical.sfcb-expand-on-hover .sfcb-button:hover,
.sfcb-preset-modern.sfcb-layout-vertical.sfcb-expand-on-hover .sfcb-button:focus-visible {
	width: auto;
}

.sfcb-preset-modern .sfcb-button__label {
	font-size: 13px;
}

.sfcb-preset-modern.sfcb-expand-on-hover .sfcb-button:hover .sfcb-button__label,
.sfcb-preset-modern.sfcb-expand-on-hover .sfcb-button:focus-visible .sfcb-button__label,
.sfcb-preset-modern.sfcb-layout-horizontal .sfcb-button .sfcb-button__label,
.sfcb-preset-modern .sfcb-button.sfcb-button--show-label .sfcb-button__label {
	max-width: 140px;
}

.sfcb-preset-modern.sfcb-layout-vertical .sfcb-button.sfcb-button--show-label {
	width: auto;
}

.sfcb-preset-rounded .sfcb-button {
	border-radius: 999px;
	padding-inline: 22px;
}

.sfcb-dark-mode .sfcb-card-panel {
	background: rgba(15, 23, 42, 0.88);
	border-color: rgba(148, 163, 184, 0.14);
}

.sfcb-dark-mode.sfcb-preset-modern .sfcb-card-panel,
.sfcb-dark-mode.sfcb-preset-modern .sfcb-buttons {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 41, 59, 0.56) 44%, rgba(51, 65, 85, 0.42) 100%);
	border-color: rgba(148, 163, 184, 0.2);
}

.sfcb-dark-mode .sfcb-card-toggle,
.sfcb-dark-mode .sfcb-card-content__message,
.sfcb-dark-mode .sfcb-status {
	color: #f8fafc;
}

.sfcb-dark-mode .sfcb-card-toggle__eyebrow {
	color: var(--sfcb-form-eyebrow-color, rgba(226, 232, 240, 0.8));
}

.sfcb-dark-mode .sfcb-card-toggle__title {
	color: var(--sfcb-form-title-color, #f8fafc);
}

.sfcb-dark-mode .sfcb-card-badge {
	background: rgba(148, 163, 184, 0.14);
	color: #e2e8f0;
}

.sfcb-dark-mode .sfcb-card-badge.is-online {
	background: rgba(34, 197, 94, 0.2);
	color: #bbf7d0;
}

.sfcb-dark-mode .sfcb-card-badge.is-offline {
	background: rgba(245, 158, 11, 0.22);
	color: #fde68a;
}

.sfcb-dark-mode.sfcb-preset-modern .sfcb-card-content {
	border-top-color: rgba(148, 163, 184, 0.14);
}

.sfcb-dark-mode.sfcb-preset-modern .sfcb-button {
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 16px 32px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sfcb-dark-mode.sfcb-preset-modern .sfcb-card-badge {
	border-color: rgba(255, 255, 255, 0.12);
}

@keyframes sfcbPulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

@keyframes sfcbRing {
	0% {
		opacity: 0.6;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.3);
	}
}

@media (max-width: 782px) {
	.sfcb-mobile-right,
	.sfcb-mobile-bottom_right {
		right: calc(max(12px, env(safe-area-inset-right)) - var(--sfcb-mobile-offset-x, 0px));
		left: auto;
	}

	.sfcb-mobile-left,
	.sfcb-mobile-bottom_left {
		left: calc(max(12px, env(safe-area-inset-left)) + var(--sfcb-mobile-offset-x, 0px));
		right: auto;
		align-items: flex-start;
	}

	.sfcb-mobile-bottom_right,
	.sfcb-mobile-bottom_left {
		top: auto;
		bottom: calc(max(12px, env(safe-area-inset-bottom)) - var(--sfcb-mobile-offset-y, 0px));
		transform: translate3d(0, 0, 0);
	}

	.sfcb-mobile-right,
	.sfcb-mobile-left {
		top: auto;
		bottom: calc(max(12px, env(safe-area-inset-bottom)) - var(--sfcb-mobile-offset-y, 0px));
		transform: translate3d(0, 0, 0);
	}

	.sfcb-card-panel {
		width: min(100%, 300px);
		padding: 14px 16px;
	}

	.sfcb-layout-horizontal .sfcb-buttons {
		justify-content: flex-end;
	}

	.sfcb-preset-modern .sfcb-buttons {
		padding: 9px;
	}

	.sfcb-preset-modern .sfcb-card-panel {
		width: min(100%, 235px);
	}

	.sfcb-has-form .sfcb-widget-row {
		flex-wrap: nowrap;
		align-items: flex-end;
	}

	.sfcb-has-form.sfcb-mobile-bottom_left .sfcb-widget-row,
	.sfcb-has-form.sfcb-mobile-left .sfcb-widget-row,
	.sfcb-has-form.sfcb-desktop-bottom_left .sfcb-widget-row,
	.sfcb-has-form.sfcb-desktop-left .sfcb-widget-row {
		flex-direction: row-reverse;
	}

	.sfcb-has-form .sfcb-widget-row .sfcb-form-flyout {
		flex: 0 0 auto;
		min-width: 0;
	}

	/* Parent transform breaks viewport-fixed positioning; reset when form can open. */
	.sfcb-has-form.sfcb-container.is-expanded {
		transform: none !important;
	}

	.sfcb-has-form.sfcb-container.is-expanded .sfcb-form-flyout:not([hidden]) {
		--sfcb-mobile-form-bottom: max(80px, calc(env(safe-area-inset-bottom) + 72px));
		--sfcb-mobile-form-top: max(12px, env(safe-area-inset-top));
		position: fixed;
		left: max(12px, env(safe-area-inset-left));
		right: max(12px, env(safe-area-inset-right));
		top: var(--sfcb-mobile-form-top);
		bottom: var(--sfcb-mobile-form-bottom);
		width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 24px));
		max-width: min(var(--sfcb-form-panel-width, 300px), calc(100vw - 24px));
		height: auto;
		max-height: none;
		min-width: 0;
		min-height: 0;
		margin-inline: auto;
		transform: none;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		padding: 12px 14px 10px;
		z-index: calc(var(--sfcb-z-index) + 2);
	}

	.sfcb-has-form.sfcb-container.is-expanded .sfcb-form-flyout:not([hidden]) .sfcb-form-content__inner {
		flex: 1 1 auto;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 16px;
	}

	.sfcb-has-form.sfcb-container.is-expanded .sfcb-form-flyout:not([hidden]) :where(
		input[type="submit"],
		button[type="submit"],
		.wpforms-submit,
		.wpcf7-submit
	) {
		margin-bottom: 4px;
	}

	.sfcb-has-form .sfcb-contact-header {
		max-width: calc(var(--sfcb-button-size) + 32px);
	}

	.sfcb-has-form.sfcb-mobile-bottom_left .sfcb-contact-header,
	.sfcb-has-form.sfcb-mobile-left .sfcb-contact-header,
	.sfcb-has-form.sfcb-desktop-bottom_left .sfcb-contact-header,
	.sfcb-has-form.sfcb-desktop-left .sfcb-contact-header {
		align-self: flex-start;
	}

	/* Mobile: icon-only buttons (no WhatsApp/Telegram text labels). */
	.sfcb-button,
	.sfcb-expand-on-hover .sfcb-button,
	.sfcb-expand-on-hover .sfcb-button:hover,
	.sfcb-expand-on-hover .sfcb-button:focus-visible,
	.sfcb-layout-horizontal .sfcb-button,
	.sfcb-preset-modern.sfcb-layout-vertical .sfcb-button,
	.sfcb-preset-modern.sfcb-layout-vertical.sfcb-expand-on-hover .sfcb-button:hover,
	.sfcb-preset-modern.sfcb-layout-vertical.sfcb-expand-on-hover .sfcb-button:focus-visible {
		width: var(--sfcb-button-size);
		min-width: var(--sfcb-button-size);
		max-width: var(--sfcb-button-size);
		padding: 0;
	}

	.sfcb-button__label,
	.sfcb-expand-on-hover .sfcb-button .sfcb-button__label,
	.sfcb-expand-on-hover .sfcb-button:hover .sfcb-button__label,
	.sfcb-expand-on-hover .sfcb-button:focus-visible .sfcb-button__label,
	.sfcb-layout-horizontal .sfcb-button .sfcb-button__label,
	.sfcb-preset-modern.sfcb-layout-horizontal .sfcb-button .sfcb-button__label,
	.sfcb-preset-modern.sfcb-expand-on-hover .sfcb-button:hover .sfcb-button__label,
	.sfcb-preset-modern.sfcb-expand-on-hover .sfcb-button:focus-visible .sfcb-button__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
		max-width: 0;
		opacity: 0;
	}

	.sfcb-tooltip {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sfcb-container,
	.sfcb-button,
	.sfcb-button__label,
	.sfcb-tooltip,
	.sfcb-has-pulse .sfcb-button:first-child::after {
		animation: none !important;
		transition: none !important;
	}
}
