/* ════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ════════════════════════════════════════════ */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(16, 24, 40, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 1.25rem 2.5rem;
  font-family: 'Abhaya Libre', serif;
  color: rgba(255, 255, 255, 0.8);
  animation: ccb-slide-up 0.4s ease-out;
}
@keyframes ccb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.ccb-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ccb-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.ccb-text a {
  color: #C9A96E;
  text-decoration: underline;
}
.ccb-text a:hover {
  color: #D4BA88;
}
.ccb-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.ccb-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.ccb-btn-accept {
  background: #C9A96E;
  color: #101828;
  font-weight: 600;
}
.ccb-btn-accept:hover {
  background: #D4BA88;
}
.ccb-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ccb-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.ccb-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ccb-btn-settings:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.ccb-details {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ccb-group {
  margin-bottom: 0.85rem;
}
.ccb-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: #fff;
  cursor: pointer;
}
.ccb-group label strong {
  font-weight: 600;
}
.ccb-group label input[type="checkbox"] {
  accent-color: #C9A96E;
  width: 16px;
  height: 16px;
}
.ccb-group span {
  display: block;
  margin-left: 1.65rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-top: 0.2rem;
}
.ccb-detail-actions {
  margin-top: 1rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 1rem 1.25rem;
  }
  .ccb-text {
    font-size: 0.82rem;
  }
  .ccb-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .ccb-btn {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
  }
}
