/* taşıyıcı */
.wa-sticky-wrap{
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 999;
}

/* buton */
.wa-float-pro{
	width: 42px;        /* 52 × 0.8 */
	height: 42px;       /* 52 × 0.8 */
	border-radius: 50%;

	background: linear-gradient(
		145deg,
		#f3d98b 0%,
		#d4af37 45%,
		#a67c1b 100%
	);

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 22px;    /* 28 × 0.8 ≈ 22 */

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

/* ikon optik merkez */
.wa-float-pro i{
	line-height: 1;
	transform: translateY(1px);
}



/* sol taşıyıcı */
.phone-sticky-wrap-left{
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 999;
}

/* telefon butonu */
.phone-float-pro-left{
	width: 42px;
	height: 42px;
	border-radius: 50%;

	background: linear-gradient(
		145deg,
		#f3d98b 0%,
		#d4af37 45%,
		#a67c1b 100%
	);

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 21px; /* telefon ikonları optik olarak büyük görünür */

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

/* ikon optik merkez */
.phone-float-pro-left i{
	line-height: 1;
	transform: translateY(0.5px); /* phone için ideal */
}

/* hover premium */
.phone-float-pro-left:hover{
	transform: scale(1.1);
	box-shadow:
		0 12px 30px rgba(166,124,27,0.6),
		inset 0 2px 6px rgba(255,255,255,0.5);
}







