.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 30%;
  background: #b6b4b4;
  color: #070707;
  font-size: clamp(0.3rem, 2vw, 0.9rem);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}
.cookie-banner.hidden {
  display: none !important;
}
.cookie-banner button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  font-size: clamp(0.3rem, 2vw, 0.8rem);
}