/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #0e1a2e;
  border-top: 2px solid rgba(184,148,90,0.4);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

#cookie-banner p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(247,243,236,0.75);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

#cookie-banner p a {
  color: #b8945a;
  text-decoration: underline;
}

#cookie-banner p a:hover {
  color: #d4af7a;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#cookie-accept {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #b8945a;
  color: #0e1a2e;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-accept:hover { background: #d4af7a; }

#cookie-reject {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(247,243,236,0.6);
  border: 1px solid rgba(247,243,236,0.2);
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

#cookie-reject:hover {
  border-color: rgba(247,243,236,0.5);
  color: rgba(247,243,236,0.9);
}

@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  #cookie-accept, #cookie-reject { flex: 1; text-align: center; }
}
