
/* / Стили плавающей кноки */

.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-button {
  background: #fff;
  color: #000;
  padding: 10px;
  border: solid;
  border-radius: 8px;
  opacity: 0.7;
  border-color: #ff4747;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.floating-button:hover {
  transform: scale(1.05);
}

.floating-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

.floating-menu.active {
  display: flex;
}

.menu-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: #ff0000;
  color: white;
  transform: scale(1.1);
}

.menu-item i {
  font-size: 20px;
}
