.new-landing-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  padding: 12px;
  gap: 0;
  max-width: 48px;
  min-height: 48px;
  overflow: hidden;
  font-family: 'Proxima Nova Advanced', 'Proxima Nova', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: max-width 0.3s ease-in-out, padding 0.3s ease-in-out, gap 0.3s ease-in-out, background-color 0.2s ease;
}

.new-landing-whatsapp-fab:hover {
  max-width: 250px;
  padding: 12px 20px;
  gap: 8px;
}

.new-landing-whatsapp-fab:active {
  background-color: #282828;
}

/* All inner elements are transparent to pointer events so clicks always
   target the <button> itself. This keeps CALM's default click tracker
   firing even when the user clicks on the icon/text after the FAB
   expands on hover. */
.new-landing-whatsapp-fab span,
.new-landing-whatsapp-fab svg {
  pointer-events: none;
}

.new-landing-whatsapp-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.new-landing-whatsapp-fab__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.new-landing-whatsapp-fab__text {
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.15s ease-in-out;
}

.new-landing-whatsapp-fab:hover .new-landing-whatsapp-fab__text {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .new-landing-whatsapp-fab {
    bottom: 16px;
    right: 16px;
  }
}
