/* Sonner-style toasts for the store website (vanilla). */
.blink-sonner {
    position: fixed;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: min(22.5rem, calc(100vw - 1.5rem));
    pointer-events: none;
    inset: 1rem 1rem auto auto;
}
@media (max-width: 640px) {
    .blink-sonner {
        inset: 0.85rem auto auto 50%;
        transform: translateX(-50%);
        width: min(22.5rem, calc(100vw - 1.25rem));
    }
}
.blink-sonner__toast {
    pointer-events: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.7rem;
    width: 100%;
    padding: 0.85rem 0.9rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border, rgba(15, 23, 42, 0.08));
    background: var(--card, #fff);
    color: var(--foreground, #0f172a);
    box-shadow:
        0 1px 1px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.12);
    font-family: "Geist", "Inter", system-ui, sans-serif;
    animation: blinkSonnerIn 0.22s cubic-bezier(0.21, 1.02, 0.73, 1);
}
.blink-sonner__toast.is-leaving {
    animation: blinkSonnerOut 0.16s ease forwards;
}
.blink-sonner__icon {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 1.25rem;
}
.blink-sonner__icon svg {
    width: 100%;
    height: 100%;
}
.blink-sonner__body {
    min-width: 0;
}
.blink-sonner__title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 650;
    line-height: 1.35;
}
.blink-sonner__desc {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--muted-foreground, #64748b);
}
.blink-sonner__close {
    border: 0;
    background: transparent;
    color: inherit;
    opacity: 0.45;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
}
.blink-sonner__close:hover {
    opacity: 0.85;
}
.blink-sonner__toast--success .blink-sonner__icon { color: #16a34a; }
.blink-sonner__toast--error .blink-sonner__icon { color: #dc2626; }
.blink-sonner__toast--warning .blink-sonner__icon { color: #d97706; }
.blink-sonner__toast--info .blink-sonner__icon { color: #2563eb; }
@keyframes blinkSonnerIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes blinkSonnerOut {
    to { opacity: 0; transform: translateY(-6px) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
    .blink-sonner__toast,
    .blink-sonner__toast.is-leaving {
        animation: none;
    }
}
