#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  max-width: 1386px;
  width: 95%;
  transform: translateX(-50%) translateY(100%);
  border-radius: 15px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

#cookie-banner.show {
  transform: translateX(-50%) translateY(-150px);
}

#cookie-banner button {
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
  color: #000 !important;
}

#cookie-banner button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
