/* Cookie consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17, 8, 0, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  color: #d4c8f0;
  font-size: .92rem;
  line-height: 1.6;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
}
.cookie-text a {
  color: #ff9933;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn-accept {
  background: #ff9933;
  color: #000;
}
.cookie-btn-accept:hover {
  box-shadow: 0 6px 18px rgba(255,153,51,.28);
}
.cookie-btn-reject {
  background: rgba(255,255,255,.08);
  color: #d4c8f0;
  border: 1px solid rgba(255,255,255,.12);
}
.cookie-btn-reject:hover {
  background: rgba(255,255,255,.14);
}
@media (max-width: 640px) {
  .cookie-shell {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
