.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 600px;
  background: #ffffff;
  color: #333;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: sans-serif;
  z-index: 9999;

  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  visibility: hidden;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #007bff;
  text-decoration: underline;
}

.cookie-banner button {
  padding: 8px 16px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.cookie-banner button:hover {
  background: #005fcc;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
  }
  .cookie-banner button {
    width: 100%;
  }
}
