.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem 2rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  z-index: 1000;
}

.cookie-banner p {
  flex: 1 1 auto;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
}

.cookie-banner a {
  color: #e0e0e0;
  text-decoration: underline;
}

.cookie-banner button {
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-banner button:hover {
  background: #ddd;
}

.cookie-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-size {
  height: 20px;
}

.logo-color {
  filter: brightness(100%);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner button {
    width: 100%;
  }

  .logo-size {
    height: 16px;
  }
}
