#cookie-banner {
    display: none; /* domyślnie ukryty */
}

@keyframes pop{0%{transform:scale(.85);opacity:0}100%{transform:scale(1);opacity:1}}

/* --- Przyciemnione tło + wyśrodkowanie --- */
.cookie-modal{
    position:fixed; inset:0;
    background:rgba(0,0,0,.45);
    display:flex; align-items:center; justify-content:center;
    z-index:4000;
}

/* --- Pudełko z treścią --- */
.cookie-box{
    max-width:460px; width:90%;
    background:#fff; color:#333; border-radius:8px;
    padding:24px 28px; text-align:center;
    box-shadow:0 6px 30px rgba(0,0,0,.3);
    animation:pop .3s ease-out;
}

@keyframes pop{
    0%{transform:scale(.85);opacity:0}
    100%{transform:scale(1);opacity:1}
}

.cookie-box h5{margin-bottom:.5rem}
.cookie-box p{font-size:.9rem;margin-bottom:1.2rem}

.cookie-actions{
    display:flex; align-items:center; justify-content:center; gap:16px;
}

/* --- Przyciski --- */
.btn-accept{
    padding:10px 26px;
    background:#ff5722; color:#fff; font-weight:700;
    border:0; border-radius:6px; cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,.25);
    transition:transform .15s;
}
.btn-accept:hover{transform:translateY(-1px)}

.link-reject{
    font-size:.85rem; color:#666; text-decoration:underline; cursor:pointer
}
.link-reject:hover{color:#333}
