.sticky-cta-phone {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background-color: #2a2e31;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sticky-cta-phone:hover,
.sticky-cta-phone:focus-visible {
  color: #fff;
  background-color: var(--primary-color, #2a2e31);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.sticky-cta-phone:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.sticky-cta-phone i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .sticky-cta-phone {
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 50%;
  }

  .sticky-cta-phone__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
