.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #0b1424;
  color: #e8ecf4;
  padding: 16px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  border-top: 2px solid #f5b042;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-banner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner a {
  color: #f5b042;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.cookie-banner .btn-accept {
  background: #f5b042;
  color: #0b1424;
}
.cookie-banner .btn-reject {
  background: transparent;
  color: #e8ecf4;
  border: 1px solid #3b4a6b;
}
