.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card, #fff);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border, #e8e4dc);
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 1002;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: max-content;
    max-width: 95vw;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.cookie-btns {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        border-radius: 20px;
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
}
