#cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: #fffefa;
  color: #20221f;
  border: 1px solid #dedbd0;
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(31, 34, 30, 0.18);
}
#cookie-banner[hidden] { display: none; }
#cookie-banner .cb-text {
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
}
#cookie-banner a {
  color: #4d5c38;
  text-decoration: underline;
}
#cookie-banner .cb-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
#cookie-banner button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dedbd0;
  border-radius: 4px;
  background: #fbfaf6;
  color: #20221f;
  cursor: pointer;
  font-weight: 700;
}
#cookie-banner button.primary {
  background: #75835a;
  border-color: #75835a;
  color: white;
}
@media (max-width: 720px) {
  #cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  #cookie-banner .cb-actions {
    width: 100%;
    margin-left: 0;
  }
  #cookie-banner button {
    flex: 1 1 150px;
  }
}
