/* FinoraQ — Cookie-Consent Banner Styles */
#fq-consent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: rgba(28, 36, 48, 0.96);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.20);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fq-consent-slide-up 280ms ease-out;
}
@keyframes fq-consent-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.fq-consent-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.fq-consent-text {
  flex: 1 1 360px;
  min-width: 260px;
}
.fq-consent-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.fq-consent-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.fq-consent-text a {
  color: #b6e0cb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fq-consent-text a:hover { color: #fff; }
.fq-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.fq-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.12s, background 0.12s, color 0.12s;
}
.fq-btn:hover { transform: translateY(-1px); }
.fq-btn-primary {
  background: #6D9C88;
  color: #fff;
}
.fq-btn-primary:hover { background: #588a76; }
.fq-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.fq-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
@media (max-width: 640px) {
  .fq-consent-box { padding: 16px 18px; gap: 16px; }
  .fq-consent-actions { width: 100%; }
  .fq-btn { flex: 1; padding: 11px 14px; }
}
