.cookie-banner {
    position: fixed;
    z-index: 9999;
    max-width: 420px;
    background: #222;
    color: #fff;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.cookie-banner.bottom-right { bottom: 1rem; right: 1rem; }
.cookie-banner.bottom-left  { bottom: 1rem; left: 1rem; }
.cookie-banner.bottom-center{ bottom: 1rem; left: 50%; transform: translateX(-50%); }

.cookie-banner__buttons {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.cookie-banner__btn--accept {
    background: #4caf50;
    color: #fff;
}

.cookie-banner__btn--decline {
    background: #777;
    color: #fff;
}
