  .cs-consent {
    --accent: #f87c14;
    --bg: #1c1c1c;
    --card: #fff;
    --text: #2f3e49;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    z-index: 99999;
  }

  .cs-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98));
    color: var(--text);
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(16,24,32,0.28);
    display: flex;
    gap: 18px;
    padding: 18px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid rgba(16,24,32,0.04);
    z-index: 99999;
  }

  .cs-left { flex: 1 1 600px; min-width: 220px; }
  .cs-title { font-family: "Playfair Display", Georgia, serif; font-size: 20px; margin: 0 0 6px; color: rgba(47,62,73,0.98); }
  .cs-desc { margin: 0 0 10px; color: rgba(47,62,73,0.8); line-height: 1.5; font-size: 14px; }

  .cs-actions { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
  .cs-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .cs-btn-accept { background: var(--accent); color: white; }
  .cs-btn-reject { background: #f2f3f4; color: var(--text); border: 1px solid rgba(16,24,32,0.04); }
  .cs-btn-manage { background: transparent; color: var(--text); text-decoration: underline; font-weight: 500; padding: 8px 10px; box-shadow: none; }

  .cs-right { width: 140px; display:flex; align-items:center; justify-content:center; gap:8px; flex-direction:column; }
  .cs-link { color: var(--accent); text-decoration: none; font-weight:600; font-size:13px; }

  .cs-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(92px + 16px);
    margin: 0 auto;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(16,24,32,0.28);
    padding: 20px;
    display:none;
    z-index: 99999;
    border: 1px solid rgba(16,24,32,0.04);
    box-sizing: border-box;
  }

  .cs-panel h4 { margin: 0 0 8px; font-family: "Playfair Display", Georgia, serif; color: rgba(47,62,73,0.98); }
  .cs-panel p { margin: 0 0 12px; color: rgba(47,62,73,0.78); line-height: 1.5; font-size: 14px; }

  .cs-row { display:flex; justify-content:space-between; align-items:center; gap:18px; padding: 12px 0; border-top: 1px dashed rgba(16,24,32,0.04); }
  .cs-row:first-of-type { border-top: none; padding-top: 6px; }

  .cs-toggle {
    width: 46px; height: 28px; border-radius: 999px; background: #e9edf0; position: relative; cursor: pointer;
    border: 0; padding: 2px; box-sizing: border-box;
  }
  .cs-toggle .knob {
    position: absolute; width: 20px; height: 20px; border-radius: 50%; background: white; top: 50%; left: 4px; transform: translateY(-50%); transition: left .18s ease, background .18s ease;
    box-shadow: 0 4px 10px rgba(16,24,32,0.12);
  }
  .cs-toggle.on { background: var(--accent); }
  .cs-toggle.on .knob { left: 22px; }

  .cs-panel-actions { display:flex; justify-content:flex-end; gap:12px; margin-top: 14px; }

  @media (max-width: 840px) {
    .cs-banner { flex-direction: column; bottom: 14px; right: 14px; left: 14px; padding: 14px; }
    .cs-right { width:100%; display:flex; flex-direction:row; justify-content:space-between; align-items:center; }
    .cs-panel { left: 12px; right: 12px; bottom: calc(86px + 12px); }
    .cs-row { gap: 12px; }
  }