.floating-button {
position: fixed;
bottom: 25px; right: 25px;
display: flex;
align-items: center;
background: #f5c332;
padding: 12px 15px; border-radius: 50px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
z-index: 9999;
transition: all 0.3s ease;
}
.floating-button a {
display: flex;
align-items: center;
text-decoration: none;
}
.floating-text {
color: #fff;
font-size: 17px; font-weight: bold;
margin-right: 12px; white-space: nowrap;
}
.floating-icon img {
width: 38px; height: 38px;
border-radius: 50%;
}
.floating-button:hover {
transform: scale(1.05);
} @media (max-width: 768px) {
.floating-button {
padding: 10px 12px;
bottom: 20px; right: 20px;
}
.floating-text {
font-size: 16px; }
.floating-icon img {
width: 35px;
height: 35px;
}
}
@media (max-width: 480px) {
.floating-button {
padding: 8px 10px;
bottom: 20px; right: 15px;
}
.floating-text {
font-size: 14px; margin-right: 10px;
}
.floating-icon img {
width: 30px; height: 30px;
}
}