/* ===== Куки-баннер ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-top: 2px solid var(--accent-cyan);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-banner__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-banner__text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.cookie-banner__text p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-blue);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
