.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 9999;
  animation: slideUp 0.5s ease;
  backdrop-filter: none; /* Usuwamy dla lepszej wydajności na mobile */
}

.cookie-banner p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

.cookie-banner a {
  color: #f39c12;
  text-decoration: underline;
}

.cookie-banner button {
  background: #f39c12;
  color: black;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-banner {
      flex-direction: column;
      padding: 12px;
  }
  
  .cookie-banner p {
      font-size: 13px;
      margin-bottom: 8px;
  }
  
  .cookie-banner button {
      padding: 7px 15px;
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cookie-banner p {
      font-size: 12px;
  }
}