.fixed-cart-button {
  position: fixed;
  bottom: 20px; /* Расстояние от низа */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: #000; /* Цвет фона кнопки */
  color: #fff; /* Цвет текста */
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.fixed-cart-button:hover {
  background-color: #333;
}


@media (max-width: 768px) {
  .fixed-cart-button {
    bottom: 10px;
    padding: 12px 20px;
    font-size: 16px;
  }
}