.cc-banner {
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 25px;
    padding: 18px 25px;
    background: #1c1c1c;
    color: #f2f2f2;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

.cc-banner * {
    box-sizing: border-box;
}

.cc-banner p {
    margin: 0;
    max-width: 700px;
    color: #f2f2f2;
}

.cc-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.cc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cc-btn {
    border: none;
    border-radius: 3px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.cc-btn-primary {
    background: #f42f2c;
    color: #ffffff;
}

.cc-btn-secondary {
    background: transparent;
    color: #f2f2f2;
    border: 1px solid #777;
}

@media (max-width: 576px) {
    .cc-banner {
        justify-content: flex-start;
        padding: 16px;
    }

    .cc-actions {
        width: 100%;
    }

    .cc-btn {
        flex: 1;
    }
}
