/* ===== Cookie-Consent Banner ===== */
#hh-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a18;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 1.5rem;
  animation: hh-consent-in 0.3s ease;
}
@keyframes hh-consent-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hh-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hh-consent__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.hh-consent__text a { color: #c9a84c; text-decoration: underline; }
.hh-consent__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.hh-consent__btn {
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.hh-consent__btn--accept { background: #c9a84c; color: #111; }
.hh-consent__btn--accept:hover { background: #dbb84e; }
.hh-consent__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.hh-consent__btn--decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
@media (max-width: 600px) {
  .hh-consent__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hh-consent__actions { width: 100%; }
  .hh-consent__btn { flex: 1; text-align: center; }
}
