.wcmg-sp-container {
    position: fixed;
    z-index: 99998;
    pointer-events: none;
}
.wcmg-sp--bottom-left  { bottom: 24px; left: 24px; }
.wcmg-sp--bottom-right { bottom: 24px; right: 24px; }

.wcmg-sp-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
    padding: 12px 14px;
    max-width: 300px;
    min-width: 240px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease;
    position: relative;
}
.wcmg-sp-toast--visible {
    opacity: 1;
    transform: translateY(0);
}
.wcmg-sp-toast__img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.wcmg-sp-toast__body { flex: 1; min-width: 0; }
.wcmg-sp-toast__meta {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}
.wcmg-sp-toast__product {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wcmg-sp-toast__time {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}
.wcmg-sp-toast__close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #bbb;
    line-height: 1;
    padding: 0;
}
.wcmg-sp-toast__close:hover { color: #555; }
