/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #111827;
  padding: 18px 20px;
  border: 1px solid rgba(16, 55, 184, 0.14);
  border-radius: 18px;
  z-index: 9998;
  box-shadow: 0 18px 45px rgba(10, 31, 107, 0.18);
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
  animation: slideUp 0.4s ease-out;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #0A1F6B;
}

.cookie-consent-text p {
  margin: 0;
  color: #4B5563;
  font-size: 0.92rem;
}

.cookie-consent-link {
  color: #1037B8;
  font-weight: 600;
  text-decoration: none;
}

.cookie-consent-link:hover {
  color: #0A1F6B;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.cookie-consent-banner .btn-sm {
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

#cookie-decline {
  background-color: #FFFFFF;
  border-color: rgba(16, 55, 184, 0.22);
  color: #1037B8;
}

#cookie-decline:hover {
  background-color: #F8FAFC;
  border-color: rgba(16, 55, 184, 0.32);
  transform: translateY(-1px);
}

#cookie-accept {
  background-color: #1037B8;
  color: #FFFFFF;
  border-color: #1037B8;
  box-shadow: 0 8px 18px rgba(16, 55, 184, 0.25);
}

#cookie-accept:hover {
  background-color: #0A1F6B;
  border-color: #0A1F6B;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(10, 31, 107, 0.28);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-consent-text {
    min-width: auto;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .btn-sm {
    flex: 1;
    min-width: 0;
  }
}
