/* =========================================
   GDPR Consent Banner
   ========================================= */

.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  color: #f0f0f0;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.gdpr-banner.gdpr-banner--hidden {
  transform: translateY(110%);
}

.gdpr-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.gdpr-banner__text {
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1 1 300px;
}

.gdpr-banner__text a {
  color: #a5b4fc;
  text-decoration: underline;
}

.gdpr-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gdpr-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.gdpr-btn:hover { opacity: 0.85; }

.gdpr-btn--accept {
  background: #4f46e5;
  color: #fff;
}

.gdpr-btn--decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
