/* EVM Listing Action Buttons - styling */
.evm-action-buttons{ display:flex; gap:10px; margin:10px 0 18px; align-items:center; }
.evm-action-btn{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:8px; background:rgba(198,27,27,0.95); color:#fff; text-decoration:none; border:0; box-shadow:0 3px 0 rgba(0,0,0,0.06); transition:transform .08s linear,opacity .12s; font-size:18px; }
.evm-action-btn i{ font-size:18px; line-height:1; }
.evm-action-btn:hover{ transform:translateY(-2px); opacity:0.95; }

/* WhatsApp green override */
.evm-action-btn.evm-wa{ background:#25D366 !important; color:#fff !important; }

/* Share button dark style */
.evm-action-btn.evm-share{ background:#111 !important; }

/* Review button gold */
.evm-action-btn.evm-review{ background:#f5b400 !important; color:#111 !important; }

/* smaller on phones */
@media(max-width:720px){ 
  .evm-action-buttons{ gap:8px; } 
  .evm-action-btn{ width:40px; height:40px; font-size:16px; } 
}
