/* COMMON STYLE */
.swfb-whatsapp {
  position: fixed;
  width: 48px;
  height: 48px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.swfb-whatsapp:hover {
  transform: scale(1.08);
}

.swfb-whatsapp img {
  width: 26px;
  height: 26px;
}

@media (max-width: 767px) {
  .swfb-whatsapp {
    right: 12px;
    top: 70%;   /* center se thoda niche */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }
}


/* 🖥️ DESKTOP – Right Bottom (Above Scroll-to-Top) */
@media (min-width: 768px) {
  .swfb-whatsapp {
    right: 35px;
    bottom: 130px; /* scroll-to-top ke upar */
    top: auto;
    transform: none;
  }
}
