/* ========================================
   Simple Trustpilot Reviews Bar
   ======================================== */

.trustpilot-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.trustpilot-rating {
    font-weight: 700;
    color: #111827;
}

.trustpilot-stars {
    display: flex;
    gap: 3px;
}

.trustpilot-stars svg {
    width: 20px;
    height: 20px;
    fill: #00b67a;
}

.trustpilot-count {
    color: #6b7280;
}

.trustpilot-count strong {
    font-weight: 600;
    color: #111827;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.trustpilot-logo span {
    font-weight: 600;
    color: #111827;
}

.trustpilot-logo svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .trustpilot-bar {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 13px;
        padding: 10px 16px;
        text-align: center;
    }
    
    .trustpilot-stars svg {
        width: 16px;
        height: 16px;
    }
    
    .trustpilot-logo {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .trustpilot-bar {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .trustpilot-stars {
        gap: 2px;
    }
    
    .trustpilot-stars svg {
        width: 14px;
        height: 14px;
    }
}