.scc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 20px;
    z-index: 9998;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1160px; /* как в вашем HTML-шаблоне */
    width: 100%;
}

.scc-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.scc-text a {
    color: #b88d59;
    text-decoration: underline;
}

.scc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scc-btn {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    transition: background 0.2s;
}

.scc-btn-accept {
    background: #b88d59;
    color: #fff;
}
.scc-btn-accept:hover { background: #b88d59; }

.scc-btn-settings {
    background: transparent;
    color: #cccccc;
    border: 1px solid #555;
}
.scc-btn-settings:hover {
    color: #fff;
    border-color: #888;
}

/* Модальное окно */
.scc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.scc-modal.active {
    display: block;
}

.scc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.scc-modal-content {
    position: relative;
    margin: 40px auto;
    background: #fff;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scc-title {
    margin-top: 0;
    font-size: 18px;
}

.scc-categories {
    margin: 20px 0;
}

.scc-label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.scc-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .scc-banner { padding: 12px; }
    .scc-actions { justify-content: center; }
}
