    :root {
        --ewf-sp-position-spacing: 20px;
    }
    
    /* Posisi Vertikal */
    .ewf-sp-pos-v-top {
        top: var(--ewf-sp-position-spacing);
        bottom: auto;
    }
    .ewf-sp-pos-v-bottom {
        bottom: var(--ewf-sp-position-spacing);
        top: auto;
    }
    
    /* Posisi Horizontal */
    .ewf-sp-pos-h-left {
        left: var(--ewf-sp-position-spacing);
        right: auto;
    }
    .ewf-sp-pos-h-right {
        right: var(--ewf-sp-position-spacing);
        left: auto;
    }
    
    
    .ewf-social-proof-widget-container {
        position: fixed;
       
        z-index: 999;
        width: 100%;
        max-width: 320px;
        display: none;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    }
    
    .ewf-sp-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        visibility: hidden;
    }
    
    .ewf-sp-card.visible {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    
    .ewf-sp-image {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .ewf-sp-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .ewf-sp-author {
        font-weight: 600;
        font-size: 16px;
        color: #1a1a1a;
        line-height: 1.2;
    }
    
    .ewf-sp-custom-text {
        font-size: 14px;
        color: #888;
        margin-top: 2px;
    }
    
    .ewf-sp-title {
        font-size: 18px;
        margin-top: 6px;
        line-height: 1.3;
    }
    .ewf-sp-title-prefix {
        font-weight: 400;
        color: #555;
    }
    .ewf-sp-title-main {
        font-weight: 700;
        color: #000;
    }
    
    
    .ewf-sp-verified {
        display: inline-flex; 
        align-items: flex-start;
        gap: 5px;
        margin-top: 12px;
        padding: 4px 8px; 
        border-radius: 16px; 
        background-color: #e8f0fe; 
        border: 1px solid #d2e3fc; 
        font-size: 11px;
        font-weight: 500;
        color: #1967d2; 
    }
    
    .ewf-sp-verified-icon {
        width: 14px;
        height: 14px;
        fill: currentColor; 
        margin-top: 1px; 
    }
    
    .ewf-sp-verified-text {
         line-height: 1.3; 
    }
    
    .ewf-sp-verified-text strong {
        font-weight: 700;
        color: #185abc; 
    }

/* --- Penyesuaian Mobile Minimalis --- */

@media (max-width: 767px) {

    .ewf-sp-card {
        padding: 10px 12px;
        
      
        gap: 5px;
        
        align-items: center; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .ewf-sp-image {
        width: 60px;
        height: 60px;
        border-radius: 6px; /* Sesuaikan radius */
    }

    .ewf-sp-author {
       
        font-size: 12px;
    }

    .ewf-sp-custom-text {
        font-size: 8px;
    }

    .ewf-sp-title {
        /* Kecilkan font */
        font-size: 12px; 
        
        /* Kurangi jarak atas */
        margin-top: 2px; 
    }

    .ewf-sp-verified {
       
        margin-top: 4px;
        
       
        padding: 3px 6px;
        
       
        font-size: 8px;
    }
    
    .ewf-sp-verified-icon {
      
        width: 10px;
        height: 10px;
    }
}