.wcsb-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	display: none; 
	gap: 10px;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.wcsb-btn {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 12px 14px;
	border: 0;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	transition: transform .12s ease, filter .12s ease;
}

.wcsb-btn:active {
	transform: scale(0.97);
}

.wcsb-btn--form {
	background: var(--wcsb-green, #072B31);
	color: #fff;
}

.wcsb-btn--call {
	background: var(--wcsb-gold, #CBA052);
	color: var(--wcsb-green, #072B31);
}

.wcsb-ico {
	flex: none;
}

@media (max-width: 768px) {
	.wcsb-bar {
		display: flex;
	}
	
	body {
		padding-bottom: 74px;
	}
}

.wcsb-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(7, 43, 49, 0.55);
	opacity: 0;
	transition: opacity .2s ease;
}

.wcsb-overlay.is-open {
	opacity: 1;
}

.wcsb-popup {
	position: fixed;
	z-index: 10000;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 100%);
	width: 100%;
	max-width: 520px;
	max-height: 88vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 18px 18px 0 0;
	box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.25);
	transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.wcsb-popup.is-open {
	transform: translate(-50%, 0);
}

@media (min-width: 600px) {
	.wcsb-popup {
		bottom: auto;
		top: 50%;
		border-radius: 18px;
		transform: translate(-50%, -45%) scale(.96);
		opacity: 0;
	}
	.wcsb-popup.is-open {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
}

.wcsb-popup__inner {
	padding: 22px 20px calc(24px + env(safe-area-inset-bottom, 0px));
}

.wcsb-popup__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	color: var(--wcsb-green, #072B31);
	cursor: pointer;
}

.wcsb-popup__title {
	margin: 0 30px 16px 0;
	color: var(--wcsb-green, #072B31);
	font-size: 22px;
	font-weight: 800;
}

.wcsb-popup__form .wpcf7-submit {
	background: var(--wcsb-gold, #CBA052);
	color: var(--wcsb-green, #072B31);
	border: 0;
	border-radius: 999px;
	padding: 12px 22px;
	font-weight: 700;
	cursor: pointer;
}

.wcsb-no-scroll {
	overflow: hidden;
}
