/* ─── BANNER COOKIES ─────────────────────────────── */
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 1.4rem 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#cookieBanner.visible { display: block; }

.cookie-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.6;
  min-width: 220px;
}
.cookie-text a { color: var(--blue-bright); text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  background: linear-gradient(90deg, var(--violet), var(--blue));
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.85; }

.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.75); }
