.wpcp-cookie-popup {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    max-width: 920px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #1f2937;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    font-size: 15px;
    line-height: 1.5;
}

.wpcp-cookie-popup[hidden] {
    display: none;
}

.wpcp-cookie-popup__text {
    flex: 1;
}

.wpcp-cookie-popup__link {
    color: #ffffff;
    text-decoration: underline;
    margin-left: 8px;
}

.wpcp-cookie-popup__button {
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    background: #ffffff;
    color: #1f2937;
    font-weight: 700;
    white-space: nowrap;
}

.wpcp-cookie-popup__button:hover,
.wpcp-cookie-popup__button:focus {
    opacity: 0.9;
}

@media (max-width: 640px) {
    .wpcp-cookie-popup {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .wpcp-cookie-popup__button {
        width: 100%;
    }
}
