.cc-hidden { display: none !important; }
    .cc-banner {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 9995;
        padding: 16px; background: #ffffff; border-top: 1px solid #e2e8f0;
        box-shadow: 0 -10px 40px -10px rgba(15, 23, 42, .25);
    }
    .cc-banner-inner {
        max-width: 1180px; margin: 0 auto;
        display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
    }
    .cc-banner-text { flex: 1 1 420px; min-width: 260px; color: #334155; font-size: 14px; line-height: 1.55; }
    .cc-banner-text strong { display: block; font-size: 15px; font-weight: 900; color: #0f172a; margin-bottom: 4px; }
    .cc-banner-text a { color: #e11d48; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
    .cc-banner-actions { display: flex; flex-wrap: wrap; gap: 8px; flex: 0 0 auto; }
    .cc-btn {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 10px 18px; border-radius: 10px; border: 0; cursor: pointer;
        font-weight: 800; font-size: 14px; line-height: 1;
        transition: all .15s ease; white-space: nowrap;
    }
    .cc-btn-primary { background: #e11d48; color: #fff; }
    .cc-btn-primary:hover { background: #be123c; }
    .cc-btn-outline { background: transparent; color: #0f172a; border: 1.5px solid #cbd5e1; }
    .cc-btn-outline:hover { background: #f8fafc; border-color: #94a3b8; }
    .cc-btn-secondary { background: #f1f5f9; color: #0f172a; }
    .cc-btn-secondary:hover { background: #e2e8f0; }

    .cc-modal-overlay {
        position: fixed; inset: 0; z-index: 9996;
        background: rgba(15, 23, 42, .55);
        display: flex; align-items: center; justify-content: center; padding: 16px;
    }
    .cc-modal {
        background: #fff; border-radius: 16px; width: 100%; max-width: 520px;
        max-height: 85vh; display: flex; flex-direction: column;
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .35); overflow: hidden;
    }
    .cc-modal-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 18px 20px; border-bottom: 1px solid #f1f5f9;
    }
    .cc-modal-title { font-size: 17px; font-weight: 900; color: #0f172a; }
    .cc-modal-close { background: transparent; border: 0; cursor: pointer; color: #64748b; padding: 6px; line-height: 0; }
    .cc-modal-body { padding: 16px 20px 8px; overflow-y: auto; }
    .cc-modal-subtitle { font-size: 13px; color: #64748b; margin-bottom: 16px; line-height: 1.5; }

    .cc-category {
        padding: 14px 16px; border: 1px solid #e2e8f0; border-radius: 12px;
        margin-bottom: 10px;
    }
    .cc-category-head {
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        margin-bottom: 6px;
    }
    .cc-category-title { font-weight: 900; color: #0f172a; font-size: 14px; }
    .cc-category-desc { font-size: 13px; color: #64748b; line-height: 1.5; }
    .cc-category-badge { font-size: 11px; font-weight: 800; color: #059669; background: #d1fae5; padding: 3px 8px; border-radius: 20px; white-space: nowrap; }
    .cc-category-none { font-size: 12px; font-style: italic; color: #94a3b8; margin-top: 6px; }

    /* Toggle switch */
    .cc-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
    .cc-switch input { opacity: 0; width: 0; height: 0; }
    .cc-switch-slider {
        position: absolute; inset: 0; background: #cbd5e1; border-radius: 20px;
        cursor: pointer; transition: .2s;
    }
    .cc-switch-slider::before {
        content: ""; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px;
        background: #fff; border-radius: 50%; transition: .2s;
    }
    .cc-switch input:checked + .cc-switch-slider { background: #e11d48; }
    .cc-switch input:checked + .cc-switch-slider::before { transform: translateX(18px); }
    .cc-switch input:disabled + .cc-switch-slider { background: #10b981; opacity: 0.7; cursor: not-allowed; }
    .cc-switch input:disabled + .cc-switch-slider::before { transform: translateX(18px); }

    .cc-modal-foot {
        display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end;
        padding: 14px 20px; border-top: 1px solid #f1f5f9; background: #fafafa;
    }

    @media (max-width: 640px) {
        .cc-banner-actions { width: 100%; }
        .cc-btn { flex: 1 1 auto; }
    }
