.blog-floating-buttons {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.blog-floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  padding: 12px;
}
.blog-floating-btn:hover {
  transform: scale(1.1);
}
.blog-floating-btn--zalo {
  background: #ffb600;
  padding: 12px;
}
.blog-floating-btn--zalo span {
  color: #ffb600;
  padding: 12px;
  font-weight: 700;
  font-size: 0.625rem;
  background-color: #fff;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-floating-btn--messenger {
  background: #ffb600;
  color: white;
}
.blog-floating-btn--messenger span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-floating-btn--messenger span img {
  color: #ffb600;
  border-radius: 50px;
  background-color: #fff;
}
.blog-floating-btn--phone {
  background: #ffb600;
  color: white;
}
.blog-floating-btn--phone i {
  color: #ffb600;
  border-radius: 50px;
  padding: 8px;
  background-color: #fff;
}
