.w-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.w-sticky-cta__actions {
  position: relative;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 0 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.w-sticky-cta__action,
.w-sticky-cta__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-cofee);
  box-shadow: 0 16px 30px rgba(49, 31, 15, 0.24);
}

.w-sticky-cta__action {
  position: relative;
  z-index: 1;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.3s ease;
}

.w-sticky-cta__toggle {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.w-sticky-cta__action:hover,
.w-sticky-cta__toggle:hover {
  background: var(--color-green);
  color: #ffffff;
}

.w-sticky-cta__icon {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.w-sticky-cta__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.w-sticky-cta.is-open .w-sticky-cta__actions {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.w-sticky-cta.is-open .w-sticky-cta__action {
  opacity: 1;
  transform: scale(1);
}

.w-sticky-cta.is-open .w-sticky-cta__icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.w-sticky-cta.is-open .w-sticky-cta__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@media (max-width: 767px) {
  .w-sticky-cta {
    right: 16px;
    bottom: 92px;
  }

  .w-sticky-cta__actions {
    width: 64px;
    gap: 12px;
    padding: 16px 0 12px;
  }

  .w-sticky-cta__action,
  .w-sticky-cta__toggle {
    width: 48px;
    height: 48px;
  }
}
