/* B2B Cookie Pro CSS - Modern Finsweet Style */
.ccc-banner, .ccc-overlay, .ccc-toast, .ccc-fab {
    box-sizing: border-box !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Banner */
.ccc-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 2147483647;
    transform: translateY(110%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 0;
}
.ccc-banner.show { transform: translateY(0); }

.ccc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 900px) {
    .ccc-container { flex-direction: column; text-align: center; gap: 20px; }
}

.ccc-title { margin: 0 0 5px; font-size: 18px; font-weight: 700; color: #111; }
.ccc-text { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
.ccc-text a { color: var(--ccc-p); text-decoration: underline; font-weight: 600; }

.ccc-actions { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 600px) { .ccc-actions { flex-direction: column; width: 100%; } }

.ccc-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    min-width: 140px;
}

.ccc-btn-primary { background: var(--ccc-p); color: #fff; }
.ccc-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.ccc-btn-secondary { background: #f0f2f5; color: #444; border-color: #e2e8f0; }
.ccc-btn-secondary:hover { background: #e2e8f0; }

.ccc-btn-link { background: transparent; color: #718096; border: 1px solid #ddd; }

/* Modal */
.ccc-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2147483647;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.ccc-overlay.show { opacity: 1; visibility: visible; }

.ccc-modal {
    background: #fff; width: 95%; max-width: 600px; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; overflow: hidden;
}

.ccc-modal-header { padding: 20px 30px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.ccc-modal-header h2 { margin: 0; font-size: 20px; }
.ccc-modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; }

.ccc-modal-body { padding: 30px; overflow-y: auto; max-height: 60vh; }
.ccc-section { margin-bottom: 25px; }
.ccc-section-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }

/* Toggles */
.ccc-toggle {
    width: 48px; height: 26px; border-radius: 13px; background: #e2e8f0;
    position: relative; cursor: pointer; transition: 0.3s;
}
.ccc-toggle span {
    width: 20px; height: 20px; background: #fff; border-radius: 50%;
    position: absolute; top: 3px; left: 3px; transition: 0.3s;
}
.ccc-toggle.active { background: var(--ccc-p); }
.ccc-toggle.active span { transform: translateX(22px); }
.ccc-toggle.disabled { opacity: 0.6; cursor: not-allowed; }

.ccc-modal-footer { padding: 20px 30px; border-top: 1px solid #eee; display: flex; justify-content: flex-end; gap: 12px; }

/* FAB */
.ccc-fab {
    position: fixed; bottom: 25px; right: 25px; width: 50px; height: 50px;
    background: var(--ccc-p); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 2147483646; font-size: 22px;
}

.ccc-footer-link { padding: 15px; text-align: center; font-size: 12px; }
.ccc-footer-link a { color: #718096; text-decoration: underline; }
