:root {
--accent: #fe5b2c !important;
--primary: #18333b !important;
--secondary: #67797e !important;
--primary-font: Unna, sans-serif;
--secondary-font: Roboto, sans-serif;
}

.cs_whatsapp_fab {
  position: fixed;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  width: 56px;
  height: 56px;
  background-color: #25d366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cs_whatsapp_fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cs_whatsapp_icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}