/* Fixed WhatsApp floating button styles */
.whatsapp-float {
  position: fixed;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-decoration: none;
  padding: 0 20px;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.whatsapp-float i {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.whatsapp-text {
  font-size: 16px;
  font-weight: bold;
  margin-left: 10px;
  font-family: 'Satoshi-Medium', sans-serif;
  white-space: nowrap;
}

/* Slightly smaller on small devices */
@media (max-width: 600px) {
  .whatsapp-float {
    height: 52px;
    bottom: 16px;
    right: 16px;
    font-size: 22px;
    padding: 0 15px;
  }
  .whatsapp-float i { font-size: 22px; }
  
  .whatsapp-text {
    font-size: 14px;
  }
}

/* Ensure it doesn't overlap important UI like cookie banners */
.whatsapp-float { pointer-events: auto; }
