.onr-floating-calls {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  direction: rtl;
  font-family: Arial, Tahoma, sans-serif;
}

.onr-call-button {
  min-width: 186px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 28px rgba(2,40,90,.28);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.onr-call-button:hover,
.onr-call-button:focus {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2,40,90,.36);
}

.onr-call-button--hotline {
  background: linear-gradient(135deg, #0b5fa7 0%, #02285A 58%, #011b3d 100%);
}

.onr-call-button--mobile {
  background: linear-gradient(135deg, #2d8a21 0%, #1B6C19 55%, #0e4c18 100%);
}

.onr-call-button__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.onr-call-button__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.onr-call-button__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}

.onr-call-button__content small {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 700;
  opacity: .9;
}

.onr-call-button__content strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .2px;
  direction: ltr;
  text-align: right;
}

@media (max-width: 600px) {
  .onr-floating-calls {
    left: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .onr-call-button {
    min-width: 160px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .onr-call-button__icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .onr-call-button__icon svg {
    width: 18px;
    height: 18px;
  }

  .onr-call-button__content small {
    font-size: 10px;
  }

  .onr-call-button__content strong {
    font-size: 16px;
  }
}
