.wd-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #101010;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.5;
}

.wd-cookie-banner[hidden] {
    display: none;
}

.wd-cookie-banner p {
    margin: 0;
    max-width: 640px;
}

.wd-cookie-banner a {
    color: #f26722;
    text-decoration: underline;
}

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

.wd-cookie-actions button {
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #f26722;
}

#wd-cookie-accept {
    background: #f26722;
    color: #fff;
}

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

@media (max-width: 640px) {
    .wd-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .wd-cookie-actions {
        justify-content: center;
    }
}
