/* =========================================================
   ROLLERPIAC V2 – BUTTON SYSTEM
   Csak tudatosan jelölt V2 gombokra
========================================================= */

/* =========================
   BASE V2 BUTTON
========================= */
.et_pb_button.rp-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);

  padding: 13px 18px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;

  transition: all 0.25s ease;
  text-align: center;
}

/* =========================
   PRIMARY – Rollerpiac Green
========================= */
.et_pb_button.rp-btn-primary {
  background: rgba(41,255,38,0.20);
  border-color: rgba(41,255,38,0.72);
  color: #eaffea !important;
}

.et_pb_button.rp-btn-primary:hover {
  background: rgba(41,255,38,0.28);
  box-shadow: 0 0 14px rgba(41,255,38,0.55);
}

/* =========================
   SECONDARY – Neutral glass
========================= */
.et_pb_button.rp-btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92) !important;
}

.et_pb_button.rp-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

/* =========================
   DIVI ICON CLEANUP (V2 ONLY)
========================= */
.et_pb_button.rp-btn:after {
  display: none !important;
}