/* Social proof toast */
.z-proof {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 360px;
    padding: 1rem 2.25rem 1rem 1rem;
    background: var(--color-bg-dark, #1a1128);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    opacity: 0;
    transform: translateY(-1rem);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.z-proof.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.z-proof__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.15rem 0.35rem;
}
.z-proof__close:hover {
    color: #fff;
}

.z-proof__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.z-proof__body {
    min-width: 0;
}

.z-proof__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.z-proof__time {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 480px) {
    .z-proof {
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
        top: 0.75rem;
    }
}
