/* =====================================================================
   Flowbridge Consulting — Cookie Consent Banner
   ===================================================================== */

#fc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 3px solid #1c3a5e;
  box-shadow: 0 -4px 20px rgba(28, 58, 94, 0.14);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#fc-cookie-banner.fc-cookie-banner--show {
  transform: translateY(0);
  opacity: 1;
}

#fc-cookie-banner.fc-cookie-banner--hide {
  transform: translateY(100%);
  opacity: 0;
}

.fc-cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.fc-cookie-text {
  flex: 1;
  min-width: 260px;
}

.fc-cookie-text strong {
  display: block;
  color: #1c3a5e;
  font-family: 'Segoe UI Semibold', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fc-cookie-text p {
  color: #5a6878;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

.fc-cookie-text a {
  color: #2f7fb8;
  text-decoration: underline;
}

.fc-cookie-text a:hover {
  color: #1c3a5e;
}

.fc-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.fc-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.fc-btn-primary {
  background: #1c3a5e;
  color: #ffffff;
  border-color: #1c3a5e;
}

.fc-btn-primary:hover {
  background: #2f7fb8;
  border-color: #2f7fb8;
}

.fc-btn-secondary {
  background: transparent;
  color: #1c3a5e;
  border-color: #1c3a5e;
}

.fc-btn-secondary:hover {
  background: #eaf4fb;
}

@media (max-width: 600px) {
  .fc-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .fc-cookie-actions {
    width: 100%;
  }

  .fc-btn {
    flex: 1;
    text-align: center;
  }
}
