.service-return-float {
  position: fixed;
  inset-inline-start: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 15px 9px 10px;
  border: 1px solid rgba(210, 142, 82, 0.58);
  border-radius: 999px;
  background: rgba(8, 31, 49, 0.82);
  color: #fff;
  box-shadow: 0 14px 36px rgba(7, 28, 45, 0.24);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-return-float:hover,
.service-return-float:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(227, 163, 106, 0.9);
  background: rgba(8, 31, 49, 0.95);
  box-shadow: 0 18px 42px rgba(7, 28, 45, 0.3);
  color: #fff;
}

.service-return-float:focus-visible {
  outline: 3px solid rgba(210, 142, 82, 0.28);
  outline-offset: 3px;
}

.service-return-float__icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.service-return-float svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[dir="rtl"] .service-return-float svg {
  transform: scaleX(-1);
}

@media (max-width: 600px) {
  .service-return-float {
    inset-inline-start: 12px;
    bottom: 12px;
    min-height: 44px;
    gap: 8px;
    padding: 7px 12px 7px 8px;
    font-size: 0.7rem;
  }

  .service-return-float__icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-return-float {
    transition: none;
  }
}
