/* ============================================================
   BALO COOKIE CONSENT — Zen Style
   ============================================================ */

#balo-cookie-banner {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 540px);
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#balo-cookie-banner.balo-cookie-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
}

.balo-cookie-box {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
}

body.balo-night .balo-cookie-box {
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
  border: 1px solid rgba(148,163,184,0.35);
}

.balo-cookie-box h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.balo-cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.balo-cookie-btn {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.balo-cookie-btn.accept {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  color: #fff;
}

.balo-cookie-btn.reject {
  background: rgba(148,163,184,0.25);
  color: #0f172a;
}

body.balo-night .balo-cookie-btn.reject {
  background: rgba(255,255,255,0.15);
  color: #f9fafb;
}

.balo-cookie-btn.custom {
  background: rgba(148,163,184,0.15);
}

.balo-cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}

.balo-cookie-modal-content {
  background: var(--modal-bg, #ffffff);
  padding: 25px;
  border-radius: 16px;
  width: min(90%, 420px);
}

body.balo-night .balo-cookie-modal-content {
  --modal-bg: #1e293b;
  color: #f1f5f9;
}

.balo-cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.balo-cookie-modal-buttons {
  display: flex;
  margin-top: 18px;
  gap: 10px;
}
