.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    padding: 18px;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner__text {
    max-width: 650px;
}

.cookie-banner__text p {
    margin: 6px 0;
}

.cookie-banner__text a {
    color: #0077b6;
    font-weight: 700;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner__actions button {
    border: 1px solid #0077b6;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}

.cookie-banner__actions button:first-child {
    background: #fff;
    color: #0077b6;
}

.cookie-banner__actions button:last-child {
    background: #0077b6;
    color: #fff;
}

.cookie-preferences-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9998;
    border: 1px solid #0077b6;
    border-radius: 6px;
    padding: 9px 12px;
    background: #fff;
    color: #0077b6;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.cookie-banner + .cookie-preferences-button {
    display: none;
}

@media (max-width: 720px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        bottom: 72px;
    }

    .cookie-banner__actions,
    .cookie-banner__actions button {
        width: 100%;
    }
}
