.recent-purchase {
    position: fixed;
    bottom: 20px;
    left: 16px;
    z-index: 998;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.4s ease;
    border-left: 4px solid #802d7c;
}

.recent-purchase--show {
    transform: translateX(0);
}

.recent-purchase__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #f3e8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-purchase__text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.recent-purchase__name {
    font-weight: 700;
    color: #802d7c;
}

.recent-purchase__time {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.recent-purchase__close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@media screen and (max-width: 780px) {
    .recent-purchase {
        left: 10px;
        right: 10px;
        bottom: 70px;
        max-width: none;
    }
}
