/* Cookie consent banner — self-contained (no dependency on page :root vars) */
.fid-cc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: none;
  background: #16161f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  padding: 1rem 1.25rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #c7c7d1;
  font-size: 0.9rem;
  line-height: 1.5;
}
.fid-cc.show { display: block; }
.fid-cc__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fid-cc__text { flex: 1 1 360px; }
.fid-cc__text a { color: #ff5670; text-decoration: underline; }
.fid-cc__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fid-cc__btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.fid-cc__btn--accept { background: #d4213d; color: #fff; }
.fid-cc__btn--accept:hover { background: #b01a31; }
.fid-cc__btn--reject { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.fid-cc__btn--reject:hover { border-color: #fff; }
@media (max-width: 600px) {
  .fid-cc__actions { width: 100%; }
  .fid-cc__btn { flex: 1 1 auto; text-align: center; }
}
