.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 1, 23, 0.98), rgba(0, 1, 23, 0.95));
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gray);
}

.cookie-banner.active {
  display: block;
  animation: cookieSlideUp 0.4s ease-out;
}

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

.cookie-banner-inner {
  max-width: 1272px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
  max-width: 600px;
}

.cookie-banner-text a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn-primary {
  padding: 12px 28px;
  font-size: 14px;
}

.cookie-banner-actions .btn-outline {
  padding: 10px 28px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
