/* WhatsApp Button Styles */
.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: #128c7e;
}

.btn-whatsapp .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp .btn-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Simple WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float .btn-whatsapp {
  width: auto;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 11px;
  background: #25d366;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-float .btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .btn-whatsapp .btn-icon {
  font-size: 14px;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Simple hover effect - no animation needed */

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float .btn-whatsapp {
    padding: 6px 10px;
    font-size: 10px;
  }

  .whatsapp-float .btn-whatsapp .btn-icon {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float .btn-whatsapp {
    padding: 5px 8px;
    font-size: 9px;
  }

  .whatsapp-float .btn-whatsapp .btn-icon {
    font-size: 10px;
  }
}
