/* ===== Price Alert Toasts ===== */
#price-toast-container{position:fixed;top:12px;right:12px;z-index:10000;display:flex;flex-direction:column;gap:8px;pointer-events:none}
.price-toast{pointer-events:auto;display:flex;align-items:center;gap:10px;background:#1a1d27;border-left:4px solid #22c55e;border-radius:6px;padding:10px 14px;min-width:260px;max-width:340px;box-shadow:0 4px 20px rgba(0,0,0,.5);cursor:pointer;animation:price-toast-in .3s ease-out forwards;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}
.price-toast.out{animation:price-toast-out .3s ease-in forwards}
.price-toast.ath{border-left-color:#f59500;background:linear-gradient(135deg,#1a1d27 60%,#2a1f10)}
.price-toast.weeklyHigh{border-left-color:#22c55e}
.price-toast.weeklyLow{border-left-color:#ef4444}
.price-toast-icon{font-size:22px;flex-shrink:0}
.price-toast-body{flex:1;min-width:0}
.price-toast-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#e1e4ed}
.price-toast.ath .price-toast-label{color:#f59500}
.price-toast.weeklyLow .price-toast-label{color:#ef4444}
.price-toast-price{font-size:16px;font-weight:700;color:#fff;margin-top:2px}
.price-toast-dismiss{background:none;border:none;color:#8b90a5;font-size:16px;cursor:pointer;padding:0 2px;line-height:1;flex-shrink:0}
.price-toast-dismiss:hover{color:#fff}
@keyframes price-toast-in{from{opacity:0;transform:translateX(60px)}to{opacity:1;transform:translateX(0)}}
@keyframes price-toast-out{from{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(60px)}}
