.salesproof {
    position: fixed;
    left: 20px;
    right: auto;   /* penting: matiin kanan */
    bottom: var(--sp-bottom, 24px); /* Default 24px kalau variabel kosong */
    max-width: 320px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: system-ui, -apple-system, sans-serif;
    opacity: 1;
    transform: translateY(0);
    transition: all .45s cubic-bezier(.4,0,.2,1);
    z-index: 9999;
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}



.salesproof.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.salesproof .icon {
    font-size: 22px;
    flex-shrink: 0;
}

.salesproof .text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.salesproof .text span {
    display: block;
    font-size: 13px;
    color: #555;
}

/* mobile naik biar gak nabrak navbar */
@media (max-width: 768px) {
    .salesproof {
        bottom: var(--sp-bottom, 20px); 
        left: 12px;
        max-width: calc(100% - 24px);
        
    }
    
.salesproof .text strong {
    font-size: 13px;
}

.salesproof .text span {
    font-size: 12px;
}

}
