#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--earth-dark, #5C4420);
  border-top: 1px solid rgba(196, 168, 130, .35);
  padding: 20px clamp(16px, 4vw, 32px);
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
}
#cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner-text {
  flex: 1 1 420px;
  margin: 0;
  color: var(--stone-light, #EDE4D3);
  font-size: 14px;
  line-height: 1.6;
}
.cookie-banner-text a {
  color: var(--stone, #C4A882);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-text a:hover {
  color: var(--stone-light, #EDE4D3);
}
.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}
@media (max-width: 560px) {
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
  }
}
