/* Cookie Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(104, 41, 106, 0.3);
  animation: cookieSlideUp 0.4s ease;
}

.cookie-bar.active {
  display: flex;
}

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

.cookie-bar__text {
  flex: 1;
  max-width: 800px;
}

.cookie-bar__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.375rem;
}

.cookie-bar__desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-bar__btn {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #4e1f50, #68296a, #8a3d8c);
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}

.cookie-bar__btn:hover {
  box-shadow: 0 4px 16px rgba(104, 41, 106, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .cookie-bar__btn {
    width: 100%;
    text-align: center;
  }
}
