.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  background: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 1.5rem;
  /*display: none;*/
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner__content {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.cookie-banner__text {
  flex: 1 1 auto;
  font-size: 0.95rem;
  line-height: 1.35;
}
.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.5rem;
}
.cookie-banner .btn {
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner .btn--primary {
  background: rgb( 195, 170 , 144);
  color: white;
}
.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .cookie-banner__content { flex-direction: column; align-items: stretch; }
  .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; padding: 1rem; }
  .cookie-banner__actions { justify-content: flex-end; }
}
