/* Cookie consent banner */
.hoe-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy, #191A38);
  color: #fff;
  padding: 1.25rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.hoe-cookie-banner--hidden {
  transform: translateY(100%);
}
.hoe-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hoe-cookie-banner__text {
  flex: 1;
  min-width: 280px;
}
.hoe-cookie-banner__text strong {
  font-family: var(--font-display, 'AbhayaLibre_400Regular', Georgia, serif);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}
.hoe-cookie-banner__text p {
  font-family: var(--font-body, 'Lora_400Regular', Georgia, serif);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,0.75);
}
.hoe-cookie-banner__text a {
  color: var(--gold, #BF9F5A);
  text-decoration: underline;
}
.hoe-cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.hoe-cookie-banner__btn {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-ui, Helvetica, Arial, sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.hoe-cookie-banner__btn:hover { opacity: 0.88; }
.hoe-cookie-banner__btn--accept {
  background: var(--gold, #BF9F5A);
  color: #fff;
}
.hoe-cookie-banner__btn--necessary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
