/* Çerez bilgilendirme banner'ı (informational-only) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #1c1c1c;
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
}
.cookie-banner a {
  color: #8fd694;
  text-decoration: underline;
}
.cookie-banner button {
  background: #2f7d3a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  flex: 0 0 auto;
}
.cookie-banner button:hover {
  background: #256330;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
