/* ── Cookie Consent Banner ── */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy, #0b2b45);
  border-top: 3px solid var(--green, #00c896);
  padding: 1rem 1.5rem;
  display: none;           /* shown by JS only when no prior consent */
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

#cookie-consent-banner .cookie-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}

#cookie-consent-banner .cookie-text a {
  color: var(--green, #00c896);
  text-decoration: underline;
}

#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

#cookie-consent-banner .btn-cookie {
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

#cookie-consent-banner .btn-cookie:hover {
  opacity: 0.85;
}

#cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

#cookie-accept {
  background: var(--green, #00c896);
  color: #000;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  #cookie-consent-banner .cookie-actions {
    width: 100%;
    margin-top: 0.5rem;
  }
  #cookie-consent-banner .btn-cookie {
    flex: 1;
    text-align: center;
  }
}