.cookie-banner{
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: none;        /* JS ustawi flex */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

  text-align: center;

  /* background: rgba(0,0,0,.85); */
  /* backdrop-filter: blur(10px); */

  padding: 24px;
  /* color:; */

  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:600; 
}

.cookie-banner p{
  max-width: 520px;
  font-size: 18px;
}

@media (max-width: 900px){

  .cookie-banner{
    padding: 32px 18px;
    gap: 18px;
  }

  .cookie-banner p{
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }

  #accept-cookies{
    width: 100%;
    max-width: 320px;
  }

}