.eve-contact-bubble {
  --eve-contact-green: #34c759;
  --eve-contact-green-dark: #1f9d45;
  --eve-contact-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  position: fixed;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: inherit;
  pointer-events: none;
}

.eve-contact-bubble--bottom-right {
  right: 18px;
  bottom: 18px;
  align-items: flex-end;
}

.eve-contact-bubble--bottom-left {
  left: 18px;
  bottom: 18px;
  align-items: flex-start;
}

.eve-contact-bubble--top-right {
  right: 18px;
  top: 18px;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.eve-contact-bubble--top-left {
  left: 18px;
  top: 18px;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.eve-contact-bubble__button {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #5fed7c 0%, var(--eve-contact-green) 52%, var(--eve-contact-green-dark) 100%);
  color: #fff;
  box-shadow: var(--eve-contact-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.eve-contact-bubble__button:hover,
.eve-contact-bubble__button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 22px 52px rgba(52, 199, 89, 0.34);
  outline: none;
}

.eve-contact-bubble__button svg,
.eve-contact-bubble__action svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eve-contact-bubble__panel {
  display: grid;
  gap: 8px;
  min-width: 158px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(17, 17, 18, 0.92);
  box-shadow: var(--eve-contact-shadow);
  backdrop-filter: blur(14px);
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.eve-contact-bubble--bottom-left .eve-contact-bubble__panel,
.eve-contact-bubble--top-left .eve-contact-bubble__panel {
  transform-origin: bottom left;
}

.eve-contact-bubble--top-left .eve-contact-bubble__panel,
.eve-contact-bubble--top-right .eve-contact-bubble__panel {
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
}

.eve-contact-bubble--top-left .eve-contact-bubble__panel {
  transform-origin: top left;
}

.eve-contact-bubble.is-open .eve-contact-bubble__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.eve-contact-bubble__action {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  transition: background 150ms ease, transform 150ms ease;
}

.eve-contact-bubble__action:hover,
.eve-contact-bubble__action:focus-visible {
  color: #fff;
  background: var(--eve-contact-green);
  transform: translateX(1px);
  outline: none;
}

@media (max-width: 680px) {
  .eve-contact-bubble--bottom-right,
  .eve-contact-bubble--top-right {
    right: 14px;
  }

  .eve-contact-bubble--bottom-left,
  .eve-contact-bubble--top-left {
    left: 14px;
  }

  .eve-contact-bubble--bottom-right,
  .eve-contact-bubble--bottom-left {
    bottom: 14px;
  }

  .eve-contact-bubble--top-right,
  .eve-contact-bubble--top-left {
    top: 14px;
  }

  .eve-contact-bubble__button {
    width: 58px;
    height: 58px;
  }
}
