/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.95),
    rgba(72, 61, 139, 0.95)
  );
  backdrop-filter: blur(10px);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: rgb(255, 215, 0);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 25px;
  border-radius: 25px;
  border: 2px solid;
  font-family: "Great Vibes", cursive;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: rgb(255, 215, 0);
  border-color: rgb(255, 215, 0);
  color: rgb(72, 61, 139);
}

.cookie-btn-accept:hover {
  background: rgb(255, 235, 100);
  transform: scale(1.05);
}

.cookie-btn-refuse {
  background: transparent;
  border-color: rgb(238, 168, 255);
  color: rgb(238, 168, 255);
}

.cookie-btn-refuse:hover {
  background: rgba(238, 168, 255, 0.1);
  transform: scale(1.05);
}
