:root{
  --wjcp-green: #25D366; /* WhatsApp green */
  --wjcp-white: #ffffff;
  --wjcp-shadow: rgba(0,0,0,0.2);
}
#wjcp-popup{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: var(--wjcp-green);
  color: var(--wjcp-white);
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--wjcp-shadow);
  padding: 12px 14px;
  display: none; /* JS will show if not allowed */
  z-index: 999999;
  width: min(94vw, 720px);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.wjcp-row{
  display: flex;
  align-items: center;
  gap: 10px;
}
.wjcp-text{
  font-size: 16px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.wjcp-close{
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--wjcp-white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.wjcp-actions{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}
.wjcp-btn{
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.wjcp-allow{
  background: var(--wjcp-white);
  color: var(--wjcp-green);
}
.wjcp-later{
  background: rgba(255,255,255,0.18);
  color: var(--wjcp-white);
}
.wjcp-emoji{font-size:18px}
@media (max-width: 520px){
  #wjcp-popup{ padding: 12px; bottom: 12px; }
  .wjcp-text{ font-size: 15px; }
  .wjcp-actions{ justify-content: stretch; }
  .wjcp-btn{ flex: 1 1 auto; }
}
