/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 21, 38, 0.98) 0%,
    rgba(2, 8, 23, 0.98) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(99, 120, 170, 0.25);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  padding: 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-content {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.cookie-consent-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.cookie-btn-essential {
  background: rgba(99, 120, 170, 0.12);
  border: 1px solid rgba(99, 120, 170, 0.3);
  color: var(--text-secondary);
}
.cookie-btn-essential:hover {
  background: rgba(99, 120, 170, 0.2);
  border-color: rgba(99, 120, 170, 0.5);
}

.cookie-link {
  font-size: 0.82rem;
  color: var(--blue-300);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.cookie-link:hover {
  color: var(--blue-200);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 1.2rem;
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
  .cookie-link {
    text-align: center;
  }
}