.sp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #111;
    color: #fff;
    padding: 18px 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.sp-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.sp-cookie-text p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.sp-cookie-text a {
    color: #fff;
    text-decoration: underline;
}

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

.sp-cookie-actions button {
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 10px 18px;
    cursor: pointer;
}

#sp-cookie-reject {
    background: transparent;
    color: #fff;
}

#sp-cookie-accept {
    background: #fff;
    color: #111;
}

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

    .sp-cookie-actions {
        width: 100%;
    }

    .sp-cookie-actions button {
        flex: 1;
    }
}