.gc-whatsapp-bubble {
  align-items: center;
  animation: gc-whatsapp-arrive .42s ease-out both, gc-whatsapp-pulse 1.8s ease-in-out .8s 2;
  background: #237a4b;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  bottom: max(20px, env(safe-area-inset-bottom));
  box-shadow: 0 10px 28px rgba(29, 23, 21, .25);
  color: #fff !important;
  display: inline-flex;
  font-family: Tajawal, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  left: max(20px, env(safe-area-inset-left));
  line-height: 1;
  min-height: 54px;
  padding: 8px 10px 8px 18px;
  position: fixed;
  text-decoration: none !important;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
  z-index: 9998;
}

.gc-whatsapp-bubble:hover {
  background: #1c6840;
  box-shadow: 0 13px 32px rgba(29, 23, 21, .3);
  color: #fff !important;
  transform: translateY(-2px);
}

.gc-whatsapp-bubble:focus-visible {
  outline: 3px solid #f2c230;
  outline-offset: 4px;
}

.gc-whatsapp-icon {
  align-items: center;
  background: rgba(255, 255, 255, .13);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
}

.gc-whatsapp-icon svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.gc-whatsapp-label {
  white-space: nowrap;
}

@keyframes gc-whatsapp-arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gc-whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(29, 23, 21, .25); }
  50% { box-shadow: 0 10px 28px rgba(29, 23, 21, .25), 0 0 0 8px rgba(35, 122, 75, .14); }
}

@media (max-width: 600px) {
  .gc-whatsapp-bubble {
    border-radius: 50%;
    bottom: max(14px, env(safe-area-inset-bottom));
    height: 54px;
    left: max(14px, env(safe-area-inset-left));
    min-height: 54px;
    padding: 8px;
    width: 54px;
  }

  .gc-whatsapp-icon {
    background: transparent;
    flex-basis: 36px;
    height: 36px;
  }

  .gc-whatsapp-icon svg {
    height: 26px;
    width: 26px;
  }

  .gc-whatsapp-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-whatsapp-bubble {
    animation: none;
    transition: none;
  }
}

