/* Purchase toast — brand ink pill, bottom-left, above mobile bars. */
.pmsp-toast {
    position: fixed;
    left: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 13px 14px 13px 16px;
    background: #1F1A12;
    color: #FFFBF1;
    border-radius: 16px;
    box-shadow: 0 20px 44px -18px rgba(31,26,18,.55);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
}
.pmsp-toast.is-in { opacity: 1; transform: none; pointer-events: auto; }
.pmsp-toast__dot {
    flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%;
    background: #F08A1F;
    box-shadow: 0 0 0 4px rgba(240,138,31,.22);
}
.pmsp-toast__label {
    display: block;
    font-size: 9.5px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,251,241,.55);
    margin-bottom: 2px;
}
.pmsp-toast__text { font-size: 13.5px; line-height: 1.45; }
.pmsp-toast__close {
    flex: 0 0 auto;
    width: 26px; height: 26px; padding: 0; min-width: 0; min-height: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 0; border-radius: 50%;
    color: rgba(255,251,241,.6); font-size: 17px; line-height: 1; cursor: pointer;
}
.pmsp-toast__close:hover { color: #FFFBF1; }
/* Viewed-today line on product pages */
.pmsp-views {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 10px 0 0;
    font-size: 13px; color: #5C4F3D;
}
.pmsp-views__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #1a7a2e;
    box-shadow: 0 0 0 3px rgba(26,122,46,.18);
}
@media (max-width: 760px) {
    .pmsp-toast { bottom: calc(96px + env(safe-area-inset-bottom, 0px)); } /* clear the purchase bar */
}
