.bsp-root {
    position: fixed;
    bottom: 22px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    pointer-events: none;
}

.bsp-root--bottom-left {
    left: 22px;
}

.bsp-root--bottom-right {
    right: 22px;
}

.bsp-toast {
    pointer-events: auto;
    width: 340px;
    max-width: calc(100vw - 44px);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20, 30, 60, 0.18), 0 2px 8px rgba(20, 30, 60, 0.08);
    overflow: hidden;
    border: 1px solid #1C61E722;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.bsp-toast.bsp-toast--visible {
    transform: translateY(0);
    opacity: 1;
}

.bsp-toast__header {
    background: #1C61E7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.bsp-toast__header-left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bsp-toast__header-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.bsp-toast__close {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bsp-toast__close:hover {
    background: rgba(255, 255, 255, 0.32);
}

.bsp-toast__body {
    display: flex;
    gap: 12px;
    padding: 14px;
}

.bsp-toast__image {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eef1f7;
    background: #f4f6fb;
}

.bsp-toast__content {
    flex: 1;
    min-width: 0;
}

.bsp-toast__city {
    font-weight: 700;
    font-size: 13.5px;
    color: #1C61E7;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.bsp-toast__name {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.bsp-toast__product {
    font-size: 13px;
    color: #4a5568;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

.bsp-toast__meta {
    font-size: 12px;
    color: #8a94a6;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bsp-toast__meta-check {
    color: #1C61E7;
    font-weight: 700;
}

.bsp-toast__verified {
    color: #1C61E7;
}

@media (max-width: 480px) {
    .bsp-toast {
        width: calc(100vw - 32px);
    }
    .bsp-root--bottom-left,
    .bsp-root--bottom-right {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}
