.cms-cookie-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2000;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
    color: #263238;
    font-family: Arial, sans-serif;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 107, 0.22);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
}

.cms-cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.cms-cookie-banner a {
    color: #00796b;
    font-weight: 700;
    text-decoration: underline;
}

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

.cms-cookie-banner button {
    min-width: 110px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.cms-cookie-banner button:focus-visible {
    outline: 3px solid rgba(0, 188, 212, 0.45);
    outline-offset: 2px;
}

.cms-cookie-banner__reject {
    color: #263238;
    background: #edf4f4;
}

.cms-cookie-banner__reject:hover {
    background: #dce9e9;
}

.cms-cookie-banner__accept {
    color: #ffffff;
    background: #00796b;
}

.cms-cookie-banner__accept:hover {
    background: #005f55;
}

body.cms-cookie-banner-open #whatsapp-bubble {
    bottom: 118px;
}

@media (max-width: 680px) {
    .cms-cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .cms-cookie-banner__actions {
        justify-content: stretch;
    }

    .cms-cookie-banner button {
        flex: 1 1 130px;
    }

    body.cms-cookie-banner-open #whatsapp-bubble {
        bottom: 220px;
    }
}
