/* ── Cookie Consent Banner ─────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 960px;
  z-index: 9999;
  background: #ffffff;
  border: 2px solid #8b3dff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(139, 61, 255, 0.08);
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  animation: cookie-slide-up 0.3s ease-out;
}

@keyframes cookie-slide-up {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

.cookie-banner__content {
  width: 100%;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #313131;
}

.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
  color: #596068;
  margin: 0;
}

.cookie-banner__link {
  color: #8b3dff;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: #6d2ee0;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: #8b3dff;
  color: #ffffff;
}

.cookie-banner__btn--primary:hover {
  background: #6d2ee0;
  box-shadow: 0 4px 16px rgba(139, 61, 255, 0.3);
}

.cookie-banner__btn--secondary {
  background: #f3f6fb;
  color: #596068;
}

.cookie-banner__btn--secondary:hover {
  background: #e8e8f0;
}

@media (max-width: 600px) {
  #cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
