/* =========================================================================
   LAVUMALL - assets/css/index/index-toast.css
   首頁共用 Toast
   ========================================================================= */

.toast { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(100px); background-color: rgba(29, 29, 31, 0.95); backdrop-filter: blur(10px); color: white; padding: 12px 28px; border-radius: 30px; font-size: 14px; font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.15); opacity: 0; z-index: 1001; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }