/* ===================== COOKIE BANNER STYLES (V4) ===================== */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #212121;
  color: white;
  padding: 2.5rem 2rem 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  z-index: 9999;
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.7;
  font-family: sans-serif;
  overflow: visible;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#cookie-banner.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

#cookie-banner .cookie-img {
  position: absolute;
  top: -50px;
  left: -55px;
  width: 90px;
  height: auto;
  z-index: 2;
}

#cookie-banner .cookie-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 16px;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

#cookie-banner .cookie-close:hover {
  color: #fff;
}

#cookie-banner p {
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
}

#cookie-banner p strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.3rem;
}

#cookie-banner .cookie-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#cookie-banner .cookie-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#cookie-accept {
  background-color: #e9e88b;
  color: #2a2a2a;
}

#cookie-accept:hover {
  background-color: #f0d96b;
}

#cookie-deny {
  background-color: #444;
  color: #eee;
}

#cookie-banner .cookie-link {
  color: #f0d96b;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive (mobile) */
@media (max-width: 600px) {
  #cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
    width: 90vw;
    max-width: none;
    padding: 2rem 1.5rem;
  }

  #cookie-banner .cookie-buttons {
    flex-direction: column;
  }

  #cookie-banner .cookie-img {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
  }

  #cookie-banner .cookie-close {
    top: 5px;
    right: 10px;
  }
}
