/* Контейнер кнопок — справа по центру */
.bonum-float {
  position: fixed;
  right: 30px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  /*gap: 12px;*/
  z-index: 9999;
}

/* Общие стили кнопки */
.bonum-btn {
  position: relative;
  width: 50px;
  height: 50px;
  /*border-radius: 50%;*/
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover для всех кнопок */
.bonum-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-color:#8f9190;
}

/* Active — при клике */
.bonum-btn:active {
  transform: scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Общие стили иконок */
.bonum-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Email иконка */
.bonum-btn.mail::before {
  background-image: url("/button/em.svg");
  filter: invert(1);
}

/* WhatsApp иконка */
.bonum-btn.wa::before {
  background-image: url("/button/wa.svg");
  filter: invert(1);
}

/* Telegram иконка */
.bonum-btn.tg::before {
  background-image: url("/button/tg.svg");
  filter: invert(1);
}
/* Telegram иконка */
.bonum-btn.max::before {
  background-image: url("/button/max.svg");
  filter: invert(1);
}

/* Кнопка Купить в лизинг */
.bonum-btn.lizing {
  background: #0f2a5c; /* темно-синий */
}

.bonum-btn.lizing::before {
  background-image: url("/button/rub.svg");
  filter: invert(1);
  /*content: "₽";
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;*/
}

/* Текст при hover — все кнопки */
.bonum-text {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Лизинг текст — синий фон */
.bonum-btn.lizing .bonum-text {
  background: #0f2a5c;
  color: #fff;
}

/* Hover для текста */
.bonum-btn:hover .bonum-text {
  opacity: 1;
  transform: translateX(0);
}