.footer-nav a {
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-graphite);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2000;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-actions .button {
  flex: 1;
}

@media (min-width: 640px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex: unset;
  }
}
