/* Quanome cookie consent banner — matches the site's dark / yellow theme. */
.qcc {
  --qcc-bg: #0d0d0d;
  --qcc-fg: #fff;
  --qcc-muted: #a8a8a8;
  --qcc-accent: #f5d400;
  --qcc-line: #222;
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.qcc-modal {
  top: 0;
  align-items: center;
  background: rgba(0, 0, 0, .6);
}
.qcc-box {
  background: var(--qcc-bg);
  color: var(--qcc-fg);
  border: 1px solid var(--qcc-line);
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
}
.qcc-prefs { max-width: 540px; max-height: 86vh; overflow-y: auto; }
.qcc-title { margin: 0 0 8px; font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.qcc-text { margin: 0 0 18px; color: var(--qcc-muted); font-size: 14px; line-height: 1.6; }
.qcc-text a { color: var(--qcc-accent); text-decoration: none; }
.qcc-text a:hover { text-decoration: underline; }

.qcc-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.qcc-btn {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--qcc-line);
  background: transparent;
  color: var(--qcc-fg);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.qcc-btn:hover { border-color: #444; }
.qcc-btn-primary { background: var(--qcc-accent); color: #000; border-color: var(--qcc-accent); }
.qcc-btn-primary:hover { background: #ffe21f; border-color: #ffe21f; }
.qcc-btn-ghost { color: var(--qcc-muted); border-color: transparent; }
.qcc-btn-ghost:hover { color: var(--qcc-fg); border-color: var(--qcc-line); }

.qcc-list { margin: 0 0 18px; border-top: 1px solid var(--qcc-line); }
.qcc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--qcc-line);
  cursor: pointer;
}
.qcc-item-static { cursor: default; }
.qcc-item-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.qcc-item-label { font-size: 15px; font-weight: 700; }
.qcc-item-desc { font-size: 13px; color: var(--qcc-muted); line-height: 1.5; }
.qcc-locked { font-size: 12px; color: var(--qcc-accent); font-weight: 700; padding-top: 2px; }
.qcc-toggle { width: 18px; height: 18px; accent-color: var(--qcc-accent); margin-top: 2px; cursor: pointer; }

@media (max-width: 480px) {
  .qcc-btn { flex-basis: 100%; }
}
