.monei-product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  margin:32px 0;
}
.monei-product-card{
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background:#fff;
  border:1px solid #E4E7ED;
  border-radius:16px;
  padding:28px;
  display:flex;
  flex-direction:column;
  box-shadow:0 8px 30px rgba(11,15,26,0.04);
}
.monei-product-name{
  font-size:19px;
  color:#0B0F1A;
  margin:0 0 8px;
}
.monei-product-desc{
  font-size:14px;
  color:#5B6478;
  margin:0 0 18px;
  flex-grow:1;
}
.monei-product-price{
  font-size:28px;
  font-weight:800;
  color:#0B0F1A;
  margin-bottom:20px;
}
.monei-buy-btn{
  background:#00D9A3;
  color:#0B0F1A;
  border:none;
  border-radius:999px;
  padding:14px 20px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  width:100%;
  transition: background 0.15s ease, transform 0.15s ease;
}
.monei-buy-btn:hover{ background:#6EEFC4; transform:translateY(-2px); }

.monei-paid-banner{
  background:#E9FBF5;
  color:#0B7A57;
  border:1px solid #B7EFDC;
  border-radius:10px;
  padding:14px 16px;
  font-size:14px;
  margin-bottom:18px;
}
