.sbcp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #111827;
    color: #f9fafb;
    padding: 16px;
    font-size: 14px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.sbcp-cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sbcp-cookie-text {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.sbcp-cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.sbcp-cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sbcp-btn {
    border: 0;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.sbcp-btn-primary {
    background: #10b981;
    color: #111827;
}

.sbcp-btn-secondary {
    background: transparent;
    border: 1px solid #4b5563;
    color: #e5e7eb;
}

@media (max-width: 640px) {
    .sbcp-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sbcp-cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
