/* Toast-уведомления */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--stroke);
  color: var(--white);
  border-radius: 4px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  position: relative;
  border-left: 4px solid #ccc;
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--hiding {
  opacity: 0;
  transform: translateY(-10px);
}

.toast__content {
  flex-grow: 1;
  font-size: 12px;
  line-height: 140%;
}

.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.toast__close {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0 4px;
  margin-left: auto;
  align-self: flex-start;
}

.toast__close:hover {
  color: #333;
}

/* Типы уведомлений */
.toast--success {
  border-left-color: #28a745;
}

.toast--success .toast__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328a745'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

.toast--error {
  border-left-color: #dc3545;
}

.toast--error .toast__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc3545'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}

.toast--warning {
  border-left-color: #ffc107;
}

.toast--warning .toast__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffc107'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.toast--info {
  border-left-color: var(--blue);
}

.toast--info .toast__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2317a2b8'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* Адаптивность для toast-уведомлений */
@media (max-width: 480px) {
  .toast-container {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
  }

  .toast {
    padding: 10px;
  }
}

/* Анимация "бум" для лайков */
@keyframes like-boom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.boom {
  animation: like-boom 0.7s ease-in-out;
}