/* Frontend CSS for BizRankUp Woo Contact Buttons */

.bru-wcb-floating-container {
	position: fixed;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.bru-wcb-float-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bru-wcb-float-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 14px rgba(0,0,0,0.4);
	color: #fff;
}

.bru-wcb-float-btn svg {
	width: 24px;
	height: 24px;
}

.bru-wcb-whatsapp { background-color: #25D366; }
.bru-wcb-messenger { background-color: #0084FF; }
.bru-wcb-call { background-color: #34B7F1; }

.bru-wcb-product-buttons-container {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	flex: 1 1 100%;
	clear: both;
}

.bru-wcb-placement-woocommerce-before-add-to-cart-button {
	order: -10;
}

.bru-wcb-product-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 5px;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.bru-wcb-product-btn:hover {
	opacity: 0.9;
}

.bru-wcb-product-btn svg {
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

.bru-wcb-product-whatsapp { background-color: #25D366; }
.bru-wcb-product-messenger { background-color: #0084FF; }
.bru-wcb-product-call { background-color: #34B7F1; }
