/* CH Compliance Suite - Cookie Consent Banner */
#ch-consent-banner { position:fixed; z-index:999999; left:0; right:0; bottom:0; font-family:Arial,sans-serif; }
.ch-consent-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.4); z-index:999998; }
.ch-consent-container { position:relative; z-index:999999; background:#2c1810; color:#fff; padding:20px 30px; max-width:900px; margin:0 auto; border-radius:12px 12px 0 0; box-shadow:0 -4px 20px rgba(0,0,0,0.3); border-top:3px solid #d4a054; }
.ch-consent-header h3 { margin:0 0 8px; font-size:18px; color:#f5e6d0; }
.ch-consent-header p { margin:0 0 15px; font-size:13px; color:#c4a882; line-height:1.5; }
.ch-consent-categories { margin:15px 0; max-height:300px; overflow-y:auto; }
.ch-consent-cat { background:rgba(212,160,84,0.1); padding:12px 15px; border-radius:8px; margin-bottom:8px; border:1px solid rgba(212,160,84,0.2); }
.ch-consent-cat label { font-size:14px; cursor:pointer; display:flex; align-items:center; gap:8px; color:#f5e6d0; }
.ch-consent-cat label input { width:18px; height:18px; accent-color:#d4a054; }
.ch-consent-cat p { margin:5px 0 0 26px; font-size:12px; color:#a08060; }

/* Chocolate Chip Cookie Buttons */
.ch-consent-buttons { display:flex; gap:10px; flex-wrap:wrap; margin:15px 0 10px; }
.ch-btn { padding:12px 24px; border:none; border-radius:20px; font-size:14px; font-weight:bold; cursor:pointer; transition:all 0.3s; position:relative; }
.ch-btn:hover { transform:scale(1.03); }
.ch-btn-accept {
    background: linear-gradient(145deg, #d4a054, #c4893a);
    color: #2c1810;
    box-shadow: 0 3px 8px rgba(212,160,84,0.4);
    border: 2px solid #e8c07a;
}
.ch-btn-accept:hover { background: linear-gradient(145deg, #e8c07a, #d4a054); box-shadow: 0 4px 12px rgba(212,160,84,0.6); }
.ch-btn-reject {
    background: transparent;
    color: #c4a882;
    border: 2px solid #6b4c30;
}
.ch-btn-reject:hover { border-color:#a08060; color:#f5e6d0; }
.ch-btn-customize {
    background: transparent;
    color: #d4a054;
    border: 2px solid #d4a054;
}
.ch-btn-customize:hover { background:rgba(212,160,84,0.1); }
.ch-btn-save {
    background: linear-gradient(145deg, #5a8f3c, #4a7a30);
    color: #fff;
    border: 2px solid #7ab85a;
    box-shadow: 0 3px 8px rgba(90,143,60,0.4);
}
.ch-btn-save:hover { background: linear-gradient(145deg, #7ab85a, #5a8f3c); }

.ch-consent-links { font-size:11px; color:#6b4c30; }
.ch-consent-links a { color:#d4a054; text-decoration:none; }
.ch-consent-links a:hover { text-decoration:underline; color:#e8c07a; }
@media (max-width:600px) {
    .ch-consent-container { padding:15px; border-radius:0; }
    .ch-consent-buttons { flex-direction:column; }
    .ch-btn { width:100%; text-align:center; }
}
