/* Стили для cookie-алерта */
.cookie-alert {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(40, 40, 40, 0.98);
  color: #fff;
  padding: 0;
  font-family: inherit;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  animation: slideUp 0.5s;
}
.cookie-alert__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-alert__text {
  font-size: 1rem;
  line-height: 1.5;
  flex: 1 1 auto;
}
.cookie-alert__btn {
  background: #ffd600;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-alert__btn:hover {
  background: #ffe066;
}
@media (max-width: 600px) {
  .cookie-alert__content {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 8px;
  }
  .cookie-alert__btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
