/* ── Cookie Consent Banner ─────────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f5f5f5;
  font-family: 'Soehne buch', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

#cookie-banner p {
  margin: 0;
  opacity: 0.75;
  max-width: 680px;
}

#cookie-banner a {
  color: #f5f5f5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#cookie-banner a:hover {
  opacity: 0.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  cursor: pointer;
  font-family: 'Soehne buch', sans-serif;
  font-size: 13px;
  border: none;
  padding: 8px 20px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.8;
}

.cookie-btn--accept {
  background: #f5f5f5;
  color: #1a1a1a;
}

.cookie-btn--reject {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(245, 245, 245, 0.3);
}

@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
