.vk-desktop-cart {
  position: fixed;
  left: 28px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #e3000f;
  border-radius: 50%;
  background: #e3000f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(227, 0, 15, 0.22);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.vk-desktop-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(227, 0, 15, 0.28);
}

.vk-desktop-cart:active {
  transform: translateY(0) scale(0.96);
}

.vk-desktop-cart.is-visible {
  display: flex;
}

.vk-desktop-cart__icon {
  width: 22px;
  height: 22px;
}

.vk-desktop-cart__badge {
  position: absolute;
  top: -8px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3000f;
  border-radius: 999px;
  background: #fff;
  color: #e3000f;
  font-family: Onest, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .vk-desktop-cart {
    display: none !important;
  }
}
