/* Explosion Volume Pricing - marco con estrellas */
.evp-wrap{
  margin: 8px 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.95));
  box-shadow: 0 2px 8px rgba(255, 50, 120, 0.15);
}
.evp-wrap::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff89c5, #ffce54, #ff89c5);
  z-index: -1;
}
.evp-volume-line{
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.evp-stars{
  display: inline-block;
  padding: 0 8px;
  font-size: 0.95em;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.1));
}
/* versión compacta en móviles */
@media (max-width: 480px){
  .evp-wrap{ padding: 8px 10px; border-radius: 10px; }
  .evp-wrap::before{ border-radius: 12px; }
  .evp-stars{ padding: 0 6px; }
}
