/* ═══════════════════════════════════════════
   COOKIE-BANNER.CSS
   ═══════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(18, 14, 9, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 200, 122, 0.15);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text { font-size: 0.8rem; color: rgba(245, 237, 216, 0.6); max-width: 600px; line-height: 1.5; }
.cookie-text a { color: var(--sand); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-accept {
  background: var(--fire); color: white; padding: 10px 22px;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; transition: background var(--transition-fast);
}
.cookie-accept:hover { background: var(--ember); }

.cookie-decline {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(245, 237, 216, 0.5); padding: 10px 22px;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all var(--transition-fast);
}
.cookie-decline:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--cream); }