/* Compact verified-purchase toast */
  .toast{position:fixed;left:1rem;bottom:1rem;z-index:60;
    display:flex;align-items:center;gap:.5rem;
    background:rgba(17,17,17,.9);backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.12);
    padding:.55rem .75rem;border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    transform:translateY(120%);opacity:0;
    transition:transform .35s ease,opacity .35s ease}
  .toast.show{transform:translateY(0);opacity:1}
  .toast .icon{font-size:1rem;line-height:1}
  .toast .label{font-weight:700}
  .toast .meta{color:#a3a3a3}
  @media (max-width:640px){.toast{left:.75rem;right:auto;font-size:.9rem}