/* ── Cookie Consent Banner ─────────────────────────────────────── */
#ej-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0f172a;
  color: #e2e8f0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border-top: 3px solid #1A56DB;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#ej-cookie-banner.ej-banner--visible {
  transform: translateY(0);
}

.ej-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ej-banner__text {
  flex: 1;
  min-width: 240px;
}

.ej-banner__text strong {
  display: block;
  color: #f8fafc;
  font-size: 15px;
  margin-bottom: 4px;
}

.ej-banner__text a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ej-banner__text a:hover {
  color: #bfdbfe;
}

.ej-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ej-btn-accept {
  background: #1A56DB;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}

.ej-btn-accept:hover {
  background: #1d4ed8;
}

.ej-btn-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.ej-btn-decline:hover {
  border-color: #64748b;
  color: #cbd5e1;
}

@media (max-width: 600px) {
  .ej-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .ej-banner__actions {
    justify-content: stretch;
  }
  .ej-btn-accept,
  .ej-btn-decline {
    flex: 1;
    text-align: center;
  }
}
