.dr1007floatingbuttons {
	/* Container scope if needed */
}

.dr1007floatingbuttons body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background: #fff8f0; /* Light creamy background */
	min-height: 100vh;
	position: relative;
}

.dr1007floatingbuttons h1 {
	text-align: center;
	padding-top: 100px;
	color: #333;
}

.dr1007floatingbuttons p {
	max-width: 600px;
	margin: 20px auto;
	text-align: center;
	color: #666;
	font-size: 18px;
}

.dr1007floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.dr1007floatingbuttons .fab-btn {
	width: 58px;
	height: 58px;
	border-radius: 16px; /* Rounded square */
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 22px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.dr1007floatingbuttons .fab-btn:hover {
	transform: translateY(-4px) scale(1.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Button Colors - food theme */
.dr1007floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(145deg, #b5e61d, #7bbf00); /* Fresh green like herbs */
}

.dr1007floatingbuttons .fab-btn.phone {
	background: linear-gradient(145deg, #ff7043, #ff3d00); /* Spicy red-orange like chili */
}

.dr1007floatingbuttons .fab-btn.top {
	background: linear-gradient(145deg, #ffd54f, #ffb300); /* Golden like turmeric or mango */
}

/* Mobile responsive adjustments */
@media screen and (max-width: 480px) {
	.dr1007floatingbuttons .floating-buttons {
		bottom: 15px;
		right: 15px;
		gap: 12px;
	}

	.dr1007floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
		border-radius: 14px;
	}
}