#avee-buy-toast{ position: fixed; left: 16px; bottom: 16px; z-index: 9999; pointer-events: none; }
.avee-toast{
  display:flex; gap:12px; align-items:center;
  background:#fff; border:1px solid #e7e7ef; box-shadow:0 8px 30px rgba(0,0,0,.08);
  border-radius:12px; padding:10px 12px; min-width:260px; max-width:360px;
  pointer-events:auto; transform: translateY(18px); opacity:0;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
}
.avee-toast.is-in{ transform: translateY(0); opacity:1; }
.avee-toast.is-out{ transform: translateY(18px); opacity:0; }
.avee-toast .thumb{ width:56px; height:56px; flex:0 0 56px; border-radius:8px; overflow:hidden; background:#f7f7fb; display:flex; align-items:center; justify-content:center; }
.avee-toast .thumb img{ width:100%; height:100%; object-fit:cover; }
.avee-toast .txt{ font-size:13px; color:#111; line-height:1.25; }
.avee-toast .txt .line1{ font-weight:700; margin-bottom:3px; }
.avee-toast .txt .line2{ color:#555; font-size:13px; }
.avee-toast .meta{ font-size:12px; color:#6b7280; margin-left:auto; white-space:nowrap; padding-left:8px; }
@media (max-width:768px){ #avee-buy-toast{ left:12px; right:12px; bottom:12px; } .avee-toast{ width:100%; max-width:none; }    #avee-buy-toast { display:none !important; } }
