/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: none;
  }
.cookie-banner.visible {
  display: block;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 10px;
  }
.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 20px;
  }
.cookie-button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s;
  }
.cookie-button.accept {
  background: var(--orange);
  color: white;
  }
.cookie-button.decline {
  background: transparent;
  color: white;
  border: 2px solid white;
  }