/* =====================================================
  EverClean Solutions Floating Widgets
===================================================== */

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  right: 30px;
  bottom: 118px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 998;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  transition: 0.35s;
}
.whatsapp-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 99999;
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner button {
  background: #0077B6;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .whatsapp-btn {
    right: 20px;
    bottom: 90px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 10px;
    width: min(100% - 32px, 358px);
  }
}
