.toast-container{position:fixed;bottom:2rem;right:2rem;z-index:9000;display:flex;flex-direction:column;gap:.75rem;pointer-events:none;width:min(380px,calc(100vw - 2rem))}.toast{position:relative;display:flex;align-items:flex-start;gap:.85rem;padding:1rem 1.1rem 1.3rem;background:#0d0d0d;border:1px solid rgba(201,168,76,.2);border-left:2px solid var(--toast-accent, #C9A84C);overflow:hidden;pointer-events:all;animation:toast-in .42s cubic-bezier(.16,1,.3,1) forwards}.toast--out{animation:toast-out .35s cubic-bezier(.4,0,1,1) forwards}.toast--success{--toast-accent: #C9A84C;--toast-icon-bg: rgba(201, 168, 76, .1);--toast-icon-color: #C9A84C}.toast--error{--toast-accent: #c0392b;--toast-icon-bg: rgba(192, 57, 43, .1);--toast-icon-color: #e74c3c}.toast--info{--toast-accent: rgba(201, 168, 76, .5);--toast-icon-bg: rgba(201, 168, 76, .07);--toast-icon-color: rgba(201, 168, 76, .7)}.toast__icon{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:var(--toast-icon-bg);color:var(--toast-icon-color);display:flex;align-items:center;justify-content:center;margin-top:.05rem}.toast__body{flex:1;display:flex;flex-direction:column;gap:.2rem;min-width:0}.toast__title{font-family:var(--font-display, "Playfair Display SC", Georgia, serif);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--white, #F5F0E8);line-height:1.3}.toast__msg{font-family:var(--font-body, "Cormorant Garant", Georgia, serif);font-style:italic;font-size:.88rem;color:#f5f0e88c;line-height:1.5}.toast__close{flex-shrink:0;background:none;border:none;padding:.15rem;color:#f5f0e840;cursor:pointer;transition:color .2s;margin-top:.1rem}.toast__close:hover{color:#f5f0e8b3}.toast__bar{position:absolute;bottom:0;left:0;height:2px;width:100%;background:var(--toast-accent);opacity:.5;transform-origin:left;animation:toast-bar linear forwards}@keyframes toast-in{0%{opacity:0;transform:translate(110%) scale(.95)}to{opacity:1;transform:translate(0) scale(1)}}@keyframes toast-out{0%{opacity:1;transform:translate(0) scale(1);max-height:120px;margin-bottom:0}to{opacity:0;transform:translate(80%) scale(.96);max-height:0;margin-bottom:-.75rem}}@keyframes toast-bar{0%{transform:scaleX(1)}to{transform:scaleX(0)}}@media (max-width: 480px){.toast-container{bottom:1rem;right:1rem;left:1rem;width:auto}}
