
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: calc(100% - 40px);
  background: rgba(62, 98, 97, 0.95);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  z-index: 1050;
  display: none; align-items: center; gap: 12px;
}
.cookie-banner a {
  color: #d1ecf1;
  text-decoration: underline;
}
.cookie-banner button {
  background: #fff;
  color: rgb(62, 98, 97);
  border: none;
  border-radius: 999px;
  padding: 2px 10px !important;
  font-size: 0.85rem;
  line-height: 1.1;
  font-weight: 600;
  cursor: pointer;
  margin-left: 16px;
}
.cookie-banner button:hover {
  background: rgb(181, 215, 228);
}
@media (max-width: 576px) {
  .cookie-banner {
    bottom: 10px;
    padding: 14px;
  }
  .cookie-banner button {
    width: 100%;
    margin: 12px 0 0;
  }
}
