/* ==================================================
   COOKIE BANNER – STABLE & SIMPLE (FINAL)
================================================== */

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 99999;

  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(8px);

  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

#cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* CONTENT */
.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 64px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;

  font-family: 'Inter', sans-serif;
}

/* TEXT */
.cookie-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #f0f0f0;
  max-width: 900px;
}

.cookie-content a {
  color: #ffffff;
  text-decoration: underline;
}

/* BUTTONS */
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-buttons button {
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  color: #ffffff;
}

/* ACCEPT */
#cookie-accept {
  background: #ffffff;
  color: #000000;
}

/* REJECT */
#cookie-reject {
  border-color: rgba(255,255,255,0.45);
}

/* MOBILE */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  
}
