/* ========== BPHC | OPC Trust Bar (colourful) ========== */
#bpco-opc-trustbar {
  /* brand variables (JS se override honge) */
  --bphc-accent: #6d28d9;     /* default purple */
  --bphc-accent-2: #2563eb;   /* default blue   */

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 8px 8px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #eef2f5;
  margin-top: 2px;
  margin-bottom: 50px;
}

#bpco-opc-trustbar .bphc-trust-left {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #1f2937;
  font-size: 11px;
  line-height: 1;
}

/* colourful round badge behind the lock */
#bpco-opc-trustbar .bphc-lock {
  position: relative;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
}
#bpco-opc-trustbar .bphc-lock-badge {
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--bphc-accent), var(--bphc-accent-2));
  box-shadow: 0 1px 2px rgba(0,0,0,.12) inset, 0 1px 1.5px rgba(0,0,0,.06);
}
#bpco-opc-trustbar .bphc-lock-svg {
  position: relative;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

/* brand pill on the right */
#bpco-opc-trustbar .bphc-powered-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--bphc-accent), var(--bphc-accent-2));
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

@media (max-width: 640px) {
  #bpco-opc-trustbar { flex-wrap:nowrap; }
  #bpco-opc-trustbar .bphc-trust-right {display:flex; justify-content: flex-end;}
}
