/* Контейнер кнопки */
.yButton.bottom.right {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 24px !important;
  border-radius: 40px !important;
  background: #e4247f !important;
  box-shadow: 0 6px 20px rgba(228, 36, 127, 0.35) !important;
  font-family: inherit;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  bottom: 24px !important;
  right: 24px !important;
}

.yButton.bottom.right:hover {
  background: #c81b6d !important;
  box-shadow: 0 8px 26px rgba(228, 36, 127, 0.45) !important;
  transform: translateY(-2px);
}

.yButton.bottom.right:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(228, 36, 127, 0.3) !important;
}

/* Убираем синюю подложку виджета — фон теперь на самой кнопке */
.yButton .yButtonBackground {
  background-color: transparent !important;
  background: none !important;
  border-radius: 40px !important;
  opacity: 1 !important;
}

/* Текст */
.yButton .yButtonText {
  position: relative;
  z-index: 2;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .2px;
  line-height: 1 !important;
}

/* Иконка */
.yButton .yButtonIcon {
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* Мобильные */
@media screen and (max-width: 640px) {
  .yButton.bottom.right {
    padding: 12px 20px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  .yButton .yButtonText {
    font-size: 14px !important;
  }
}
