/* ═══════════════════════════════════════════════════════════════
   FRA Cookie Consent Banner — Styles
   Minimal bottom bar, matches FRA dark-mode footer aesthetic.
   Non-intrusive: sits below content, doesn't overlay or block.
   ═══════════════════════════════════════════════════════════════ */

#fra-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 15, 25, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(99, 102, 241, 0.25);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Manrope", sans-serif;
}

#fra-cookie-banner.fra-cb-visible {
  transform: translateY(0);
}

#fra-cookie-banner.fra-cb-hiding {
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.55, 0, 1, 0.45);
}

.fra-cb-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.875rem 1.5rem;
}

.fra-cb-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.fra-cb-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.fra-cb-btn {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1.25rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}

.fra-cb-btn--accept {
  background: #1779aa;
  color: #fff;
}

.fra-cb-btn--accept:hover {
  background: #126189;
}

.fra-cb-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fra-cb-btn--reject:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Mobile: stack vertically ── */
@media (max-width: 576px) {
  .fra-cb-inner {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .fra-cb-actions {
    width: 100%;
    justify-content: center;
  }

  .fra-cb-btn {
    flex: 1;
    padding: 0.5rem 1rem;
  }
}
