.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  padding: 16px;
  z-index: 9999;
  display: none; /* Скрыт по умолчанию */
  font-family: Arial, sans-serif;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .cookie-content { flex-direction: row; }
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.btn {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #000;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
