.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483647;
    display: none;
    padding: 16px;
    font-family: Arial, sans-serif;
}

.cookie-consent.cookie-consent--visible {
    display: block;
}

.cookie-consent__box {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    color: #222;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(0,0,0,.25);
    padding: 20px;
    border: 1px solid #ddd;
}

.cookie-consent__box h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.cookie-consent__box p {
    margin: 0;
    line-height: 1.5;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

.cookie-btn {
    border: 0;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 15px;
    cursor: pointer;
}

.cookie-btn--primary {
    background: #111;
    color: #fff;
}

.cookie-btn--secondary {
    background: #e9e9e9;
    color: #111;
}

@media (max-width: 640px) {
    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}


